19.08.2012, 11:37
Guys i don't know what's going on.
The command is ok, everything is ok.
When i type /elegy it spawns me under the map and i get frozen.
Here is the command.
+REP for the dude who help me.
The command is ok, everything is ok.
When i type /elegy it spawns me under the map and i get frozen.
Here is the command.
pawn Код:
if (strcmp("/elegy", cmdtext, true, 10) == 0)
{
new Float: X, Float: Y, Float: Z, Float: A;
new vehicleid[MAX_PLAYERS];
if(IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid, COLOR_RED, "ERROR: You are driving a vehicle.");
if(vehicleid[playerid])
{
DestroyVehicle(vehicleid[playerid]);
}
vehicleid[playerid] = CreateVehicle(562, X, Y, Z, A, 0, 0, 0);
GetPlayerPos(playerid, X, Y, Z);
GetPlayerFacingAngle(playerid, A);
PutPlayerInVehicle(playerid, vehicleid[playerid], 0);
return 1;
}