08.03.2009, 10:55
Try creating a vehicle when they enter the command to enter a minigame, a bit like this
pawn Код:
OnPlayerCommandText(playerid,cmdtext[])
{
[....]
if (strcmp(command, "/blahblah") == 0)
{
new vehid = CreateVehicle(...................);
PutPlayerInVehicle(playerid, vehid, 0);
[....]
return 1;
}
[....]
return 1;
}

