Author Topic: Request- Auto-pilot client script  (Read 1650 times)

/title
This would not hack the game in any way, what it should do is simply send a command to the console, and this command would be
Code: [Select]
forward(1);When you disable the script, this would be the command to disable it:
Code: [Select]
forward(0);Also, please make this-
  • Keybinded, to turn it on and off with one key only./li]


the hell..?
Go away, it's a decent suggestion and is extremely easy to understand.

Go away, it's a decent suggestion and is extremely easy to understand.
I mean, Why can't you just put the code in console each time. Its not like its a huge code or anything.

I mean, Why can't you just put the code in console each time. Its not like its a huge code or anything.

He just wants it in a keybind.

moveforward(1);
moveforward(0);

now someone keybind it and we're golden.



I'm just starting torque and I'm sure that this script would be able to be made in around 2 minutes.

Can't you do it you're self? it seems pretty easy.

I'm just starting torque and I'm sure that this script would be able to be made in around 2 minutes.
Thanks!
Can't you do it you're self? it seems pretty easy.
I dont know one line of torque...Sorry.

package this
Code: [Select]
$remapDivision[$remapCount] = "Autopilot";
$remapName[$remapCount ] = "Enable";
$remapCmd[$remapCount ] = "autopilot";
$remapCount++;

function autopilot(%a)
{
    if(%a)
        return;
    forward(1);
}
then to turn off just use your normal forward key

package this
Code: [Select]
$remapDivision[$remapCount] = "Autopilot";
$remapName[$remapCount ] = "Enable";
$remapCmd[$remapCount ] = "autopilot";
$remapCount++;

function autopilot(%a)
{
    if(%a)
        return;
    forward(1);
}
then to turn off just use your normal forward key
Packaged: http://dl.dropbox.com/u/62488852/Script_AutoPilot.zip

interesting way of packaging it
normaly i'm lazy and go with two files instead of four

Packaged: http://dl.dropbox.com/u/62488852/Script_AutoPilot.zip
The name of this file is Script_Auto-Pilot.
Shouldn't it be Client_Auto-Pilot?