Car spawner
#1

Hello to everyone who know a script a spawn cars but i want the cars do not disappear after spawn 2-3 cars or after 10sec for permanently
Please if you know a script post link here

Reply
#2

Please explain better, I didn't quite catch that.
Use a translator if you're english isn't good, please.
Reply
#3

Sorry Sorry..
Man i want i have a spawn car script but after i spawn 2-3 cars the cars disappear.. i want cars no disappear
Reply
#4

Make your own then:

pawn Код:
if( !strcmp( cmdtext, "/spawnvehicle", true ) || !strcmp( cmdtext, "/sveh", true ))
{
  if( strlen( cmdtext ) < 14 )
    return SendClientMessage( playerid, 0xFF0000FF, "USAGE: \"/spawnvehicle <modelid>\"" );
  if( strval( cmdtext[ 14 ] ) < 400 || strval( cmdtext[ 14 ] ) > 611 )
    return SendClientMessage( playerid, 0xFF0000FF, "Invalid MODELID. Use 400-611" );
  new
    Float:x,
    Float:y,
    Float:z;
  GetPlayerPos( playerid, x, y, z );
  CreateVehicle( strval( cmdtext[ 14 ] ), x+1, y+1, z+0.5, 0, -1, -1, -1 );
  return SendClientMessage( playerid, 0x00FF00FF, "Success!" );
}
That should work
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)