18.08.2011, 09:11
Is there a command were if i type in "/dive" or sommin like that i would go up really high and have a parachute then i can free fall down then open parachute..
new Float:x,Float:y,Float:z;
public OnPlayerCommandText(playerid,cmdtext[])
{
if(!strcmp("/dive",cmdtext,true))
{
GetPlayerPos(playerid,x,y,z);
SetPlayerPos(playerid,x,y,z+1000.0);
GivePlayerWeapon(playerid,46,1);
SendClientMessage(playerid,0x00FF00FF,"You are diving!");
GameTextForPlayer(playerid,"~b~dive!~n~~g~dive!~n~~r~Dive!",3000,3);
return 1;
}
return 0;
}
PHP код:
|