Blockland Forums > Suggestions & Requests
Accepting Requests [Locked]
Cassord:
Toy gun. Just a gun that doesn't shoot. It's for a gun toss minigame on my Jailbreak map. Btw, anyone interested in hosting that for me?
SirLancelot7:
I need an item. Pepper Spray.
It should shoot something that looks similar to how the spray can shoots, with a limited range spray.
It should only be able to shoot once every 5 seconds.
When it hits someone, it should cause them to tumble for say, 5 seconds, and cause a whiteout for a part of that time.
If you need more details just ask :) Thank you!
Cassord:
--- Quote from: SirLancelot7 on March 01, 2013, 03:50:42 PM ---I need an item. Pepper Spray.
It should shoot something that looks similar to how the spray can shoots, with a limited range spray.
It should only be able to shoot once every 5 seconds.
When it hits someone, it should cause them to tumble for say, 5 seconds, and cause a whiteout for a part of that time.
If you need more details just ask :) Thank you!
--- End quote ---
Isn't tumble broken????
Crispy_:
--- Quote from: hodototman on February 28, 2013, 11:00:12 PM ---lol roblox tycoons in blockland.
that wouldn't be bad actually
--- End quote ---
i might even be able to do that with simple editing
--- Quote from: MARBLE MAN on March 01, 2013, 01:24:24 AM ---tbh, that made almost no sense other than
Touch brick
Become Owner of plate
Spawn walls if you have enough money that doesnt currently exist
the end?
--- End quote ---
pretty sure its just a concept
Port:
Create a fully HTTP 1.1 standards compliant web client library that has an API similar to the Python requests library.
However, since a blocking thing in TorqueScript is just a no-go, use callbacks.
Using it such as follows:
--- Code: ---function onDone( %response )
{
%response.raiseForStatus();
echo( strLen( %response.text ) );
if ( %response.headers.get( "content-type" ) $= "application/json" )
{
echo( %response.json );
}
}
requests.get( "http://example.com/hello", "onDone" );
// or alternatively
%session = requests.Session();
%session.get( "http://example.com/hello", "onDone" );
--- End code ---