Blockland Forums > Suggestions & Requests
Request- Auto-pilot client script
setro2:
--- Quote from: Evar678 on June 26, 2012, 09:38:10 PM ---I'm just starting torque and I'm sure that this script would be able to be made in around 2 minutes.
--- End quote ---
Thanks!
--- Quote from: The Black Card on June 27, 2012, 04:10:20 AM ---Can't you do it you're self? it seems pretty easy.
--- End quote ---
I dont know one line of torque...Sorry.
phflack:
package this
--- Code: ---$remapDivision[$remapCount] = "Autopilot";
$remapName[$remapCount ] = "Enable";
$remapCmd[$remapCount ] = "autopilot";
$remapCount++;
function autopilot(%a)
{
if(%a)
return;
forward(1);
}
--- End code ---
then to turn off just use your normal forward key
Aide33:
--- Quote from: phflack on June 27, 2012, 06:27:20 PM ---package this
--- Code: ---$remapDivision[$remapCount] = "Autopilot";
$remapName[$remapCount ] = "Enable";
$remapCmd[$remapCount ] = "autopilot";
$remapCount++;
function autopilot(%a)
{
if(%a)
return;
forward(1);
}
--- End code ---
then to turn off just use your normal forward key
--- End quote ---
Packaged: http://dl.dropbox.com/u/62488852/Script_AutoPilot.zip
phflack:
interesting way of packaging it
normaly i'm lazy and go with two files instead of four
setro2:
--- Quote from: Aide33 on June 28, 2012, 09:00:45 AM ---Packaged: http://dl.dropbox.com/u/62488852/Script_AutoPilot.zip
--- End quote ---
The name of this file is Script_Auto-Pilot.
Shouldn't it be Client_Auto-Pilot?