Help plz , I am new -
PlayMaker - 12.05.2008
Anyone knows a topic who has the command to spam cars , for example , /vec <id> <color> .
Sorry the invasion but I need this FC . Wink
If anyone can help me , i would like to thank .
PS: Sorry my bad english but I... am a kid with 14 years old Cheesy
Regards, PlayMaker
Re: Help plz , I am new -
Carlos_Leone - 12.05.2008
you just made the exact same topic in script showroom, i have replyed to that - Please do not create another topic just wait for someone to answer
Re: Help plz , I am new -
PlayMaker - 12.05.2008
Quote:
Originally Posted by Farly
you just made the exact same topic in script showroom, i have replyed to that - Please do not create another topic just wait for someone to answer
|
But.... this are diferent sections , there is any problem ?
PS : If you want i delete this, or the other one .
Re: Help plz , I am new -
Toad - 12.05.2008
script showroom isnt there to post questions
in scripting u are right to post them
Re: Help plz , I am new -
Carlos_Leone - 12.05.2008
Im not sure what your saying..
Here is a good guide on how to make a simple Team Deathmatch :
Team Deathmatch
Re: Help plz , I am new -
22reiko - 01.01.2010
I could explain what did he mean.. He don't want just to spawn a car in one place with StaticVehicle. He wants to spawn vehicle near his location with current ID.. Like /v 402 <--- I love buffalo..
I could suggest you one script.
if(strcmp( cmd, "/vehicle", true ) == 0 )
{
new Float:X, Float:Y, Float:Z;
new tmp[256];
new created_vehicle_id;
tmp = strtok( cmdtext, idx );
GetPlayerPos( playerid, X, Y, Z );
created_vehicle_id = CreateVehicle( strval(tmp), X+2, Y+2, Z, 0, 0, 0, -1 );
new msg[256];
format(msg,256,"Created vehicle: %d",created_vehicle_id);
SendClientMessage(playerid,0xAAAAAAAA,msg);
return 1;
}
But i WARN you.. It does not work. It maby could help you to understand how it will look like. I started to learn Pawno just today.
So i don't know how to fix it.. But the thing i know - i am about to find it out and post the working one like in 2 or 3 hours..