06.07.2012, 21:10
Hi,
The title is the main thing.
I can't figure out how to make a vehicle spawn command on the player's Pos for my test server.
It doesn't have to be a /v command etc as I have a filterscript for that, just a simple command.. like I tried it here:
The title is the main thing.
I can't figure out how to make a vehicle spawn command on the player's Pos for my test server.
It doesn't have to be a /v command etc as I have a filterscript for that, just a simple command.. like I tried it here:
Код:
if (strcmp("/turismo", cmdtext, true) == 0)
{
new x,y,z;
GetPlayerPos(playerid, x, y, z);
CreateVehicle(251, x, y, z, 0.0, 1, 1, 0);
return 1;
}
/* D:\GTA SA\SAMP Development\Server files\gamemodes\Karols_Stunt_DM.pwn(452) : warning 213: tag mismatch
D:\GTA SA\SAMP Development\Server files\gamemodes\Karols_Stunt_DM.pwn(452) : warning 213: tag mismatch
D:\GTA SA\SAMP Development\Server files\gamemodes\Karols_Stunt_DM.pwn(452) : warning 213: tag mismatch
*/


