30.11.2011, 19:07
Galera tou tentando fazer um comando, que le coloque um pouco para foda do heli, assim podendo atirar, mais eu fiz um aki e nao deu certo, ele nao segue o heli, so faz sair, segue o cmd e public.
CMD:
Public:
CMD:
PHP код:
if(strcmp("/atirar", cmdtext, true, 10) == 0)
{
new Float:X, Float:Y, Float:Z;
GetPlayerPos(playerid, X, Y, Z);
if(IsPlayerInAnyVehicle(playerid) && IsAChopper(vehicleid) && Atirando[playerid] == 0)
{
Atirando[playerid] = 1;
RemovePlayerFromVehicle(playerid);
SendClientMessage(playerid, COLOR_WHITE, "Vocк Pode atirar do Heli agora.");
}
return 1;
}
PHP код:
public Atirar(playerid)
{
if(Atirando[playerid] == 1)
{
new Float:X;
new Float:Y;
new Float:Z;
GetPlayerPos(playerid, X, Y, Z);
SetPlayerPos(playerid, X, Y - 5.00, Z);
}
return 1;
}