06.10.2012, 14:41
pawn Код:
if (strcmp("/heli", cmdtext, true, 5) == 0)
{
if(VIP[playerid] == 1) {
new Float:x1,Float:y1,Float:z1;
GetPlayerPos(playerid,x1,y1,z1);
CreateVehicle(497,x1+3,y1+3,z1,0,0,0,9999);
}
return 1;
}
pawn Код:
if (strcmp("/infernus", cmdtext, true, 5) == 0)
{
if(VIP[playerid] == 1) {
new Float:x1,Float:y1,Float:z1;
GetPlayerPos(playerid,x1,y1,z1);
CreateVehicle(411,x1+3,y1+3,z1,0,0,0,9999);
}
return 1;
}