11.09.2011, 03:34
I'm trying to make it so when I do the command /work it teleports me to a certain area, and I want it to put me in a vehicle. My current work:
How come it's not putting me in that vehicle?
pawn Код:
COMMAND:work(playerid, cmdtext)
{
SetPlayerPos(playerid, 817.0552, 857.0133, 12.7891);
SendClientMessage(playerid, blue, "Welcome to work!");
PutPlayerInVehicle(playerid, 498, 0);
SetPlayerCheckpoint(playerid, -2666.7739,637.4879,14.4531, 4.0);
return 1;
}