Author Topic: Accepting Requests [Locked]  (Read 43279 times)

A good example of a tycoon from roblox would've been any "brick tycoon"

Basically a brick drops a projectile onto a conveyer belt which leads to a brick that detects the projectile, deletes it and increases the number of money you have. You then spend money on upgrades such as projectiles spawning faster, more often or more than one at a time, the conveyer belt moving the projectile faster, having the projectile increase your money more and whatnot.

Also there was this one server where you would have a team in a factory, and you're tasked with creating, loading and shipping hats.

One team loads the conveyer belt with raw materials, which get turned into hats. The hats are then moved on down to a bin where another team is tasked with loading the hats onto a vehicle, and then driving it to a delivery point, and dumping the hats there. Then, as the hats are produced, the factory gets "dirtier" (aka spots of dirt, darkened windows, clogs in the machines), halting progress by slowing down the process of making the hats, or making the players receive less money per hat.

Both things would be cool in blockland, but I can imagine them being easily evented.
This sounds interesting
I guess I could make some thing like this, however It might be different than you expect.

Oh like BLIDs?
Create a mod that assigns every player a unique phone number with persistence and players can chat and leave messages for each other using those numbers.

http://forum.returntoblockland.com/dlm/viewFile.php?id=3626

Not exactly what you what you what but could be based off.

lol roblox tycoons in blockland.

that wouldn't be bad actually

lol roblox tycoons in blockland.

that wouldn't be bad actually
That is what we have been saying

This sounds interesting
I guess I could make some thing like this, however It might be different than you expect.
Smiple build factory tycoon of screenshot.

You see the red wall ? When I touch this red wall to become owner.

Scuessfully! I am own this factory tycoon!

I buy the fence and gate, so that keep Noob stay out my place.


Smiple build factory tycoon of screenshot.
[IMG ]http://i90.photobucket.com/albums/k256/EmperorWinter/Blockland_00123_zpscd1a5970.png[/img]
You see the red wall ? When I touch this red wall to become owner.
[IMG ]http://i90.photobucket.com/albums/k256/EmperorWinter/Blockland_00124_zps9f4f6d8f.png[/img]
Scuessfully! I am own this factory tycoon!
[IMG ]http://i90.photobucket.com/albums/k256/EmperorWinter/Blockland_00125_zps0c495742.png[/img]
I buy the fence and gate, so that keep Noob stay out my place.

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?


Idea:
Box.
It's a box! Hide in it!
(You hide in the box, if someone clicks the box it opens and lets them get inside it. Kind of like a door)




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?

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!

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!

Isn't tumble broken????

lol roblox tycoons in blockland.

that wouldn't be bad actually
i might even be able to do that with simple editing

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?
pretty sure its just a concept

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: [Select]
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" );