21.08.2012, 09:24
Код:
dcmd_firedup(playerid,params[]) { #pragma unused params if(AccInfo[playerid][Level] >= 1 || AccInfo[playerid][pVip] >= 1) { Firedup[playerid]=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); }
This Super jump will be activated automatically
pawn Код:
if(newkys == KEY_JUMP )
{
if( super_jump[playerid] == 1)
{
if(!IsPlayerInAnyVehicle(playerid) )
{
new Float:SuperJump[3];
GetPlayerVelocity(playerid, SuperJump[0], SuperJump[1], SuperJump[2]);
SetPlayerVelocity(playerid, SuperJump[0], SuperJump[1], SuperJump[2]+5);
}
else return SendClientMessage(playerid ,COLOR_ORANGE ,"You can't super jump while you are in vehicle!");
}
}