20.08.2012, 18:26
Quote:
|
Super Jump deativate command.
pawn Код:
|

To make it clear. I will type /firedup the command will only activate for the one who use the command. If /firedoff then deactivate like a normal jump.
pawn Код:
dcmd_firedup(playerid,params[])
{
#pragma unused params
if(AccInfo[playerid][Level] >= 1 || AccInfo[playerid][pVip] >= 1)
{
SetPlayerAttachedObject( playerid, 0, 18693, 5, 0.053428, -1.382621, -1.953219, 325.843124, 1.167475, 0.000000, -22.718177, 1.000000, 1.458621 );
SetPlayerAttachedObject( playerid, 1, 18693, 6, -0.377174, 0.12345, 1.616164, 173.564910, 14.640313, 0.000000, 1.000000, 1.000000, 1.000000 );
return 1;
}
else return ErrorMessages(playerid, 1);
}


