13.10.2010, 20:05
You need to make a command...
pawn Код:
if(strcmp(cmd, "/uranus", true) == 0)
{
new Float:x,Float:y,Float:z,Float:a;
GetPlayerPos(playerid,x,y,z);
GetPlayerFacingAngle(playerid, a);
AddStaticVehicle(558, x+2, y+3, z, a, 0, 0); // 558 is the uranus car id, 0, 0 are the color of a car...
return 1;
}

