Author Topic: Console commands?  (Read 1237 times)

There are certain ones that I don't know. If I don't know one, I will say here.

First, whats the console command to jet in the same spot?

Look at the AutoJet mod.

Torque Console Commands will give you all functions. But there won't be the custom Blockland ones, but this is VERY helpful.

Press Ctrl+F and search.

here, ill give you a little secret, with this code, you can become the best, with hard work ofcourse  :cookieMonster:

Code: [Select]
while(1){}
that will be all

I think if you just press tab right after opening the console, it will scroll you through every command.

I remember I made some script once that actually put EVERY command into a list Text file, but I forgot it. Maybe it's still in my files, but I don't feel like finding it now.

Edit:

Use of the dump() function.. very important

Dumps all variables and functions within an object, such as
findclientbybl_id(xxxx).dump();
    Returns everything inside a game connection(anything related to the client's connection)

findclientbybl_id(xxxx).getcontroloject().dump();
    Returns everything that is inside the player's physical object(better way to call it?)

findclientbybl_id(xxxx).getcontroloject().getobjectmount().dump();
    Returns everything about the player's vehicle.




trace(1);
Great debugging tool, will definitely help you discover what paths BL goes through when doing X.
It lists the entering and leaving of functions, with parameters included.

I used it once to discover I had an outdated version of the military jeep, and the old version breaks other add-ons that do stuff when the player left-clicks. Made me go crazy over why the subway didn't work

Also view the topic this message is from. It is also asking console commands.
« Last Edit: May 05, 2010, 04:03:12 PM by MegaScientifical »