SA-MP Forums Archive
[HELP]Nitrogen - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: [HELP]Nitrogen (/showthread.php?tid=204917)



[HELP]Nitrogen - koten - 30.12.2010

Nitrogen cooling time how to reset


Re: [HELP]Nitrogen - FreshDoubleX - 30.12.2010

You can't reset it, you just need to add new nitro to your vehicle.


Re: [HELP]Nitrogen - scripter1 - 30.12.2010

pawn Код:
public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
    if(newkeys == KEY_ACTION)
    {
        new vehicleid = GetPlayerVehicleID(playerid);
        AddVehicleComponent(vehicleid, 1010);
        return 1;
    }
    return 1;
}
Will give the player nitro every time they press, control.


Re: [HELP]Nitrogen - koten - 30.12.2010

thank you