[FilterScript] [FS] All Car Single Command Spawns
#1

After about two and a half hours on copy and renaming the cmd names and the id + thirty minutes i came up with this

Car Commands

to change the command go to Here and type the name of the car you want get id and hit Ctrl + F and find the id and change how you like.

i take no credit of making the spawn command.
I and My Clan Only Take the credit of changing all the ids and names to make each command.



Reply
#2

I don't wanna disappoint you, but you can do all that with one command..
Reply
#3

Yeah, he could of just done /c <id> or even /c <carname>.

Respect though for making this, I wouldn't have the patience, which is why I use the methods stated above.
Reply
#4

You could have asked someone because there is a shorter way to do it.

Nice investment anyways.
Reply
#5

AddStaticVehicle ()
Easy as that! Why would you need that? I mean, Pawn is the easyest one.
Reply
#6

Sorry but i think this is very poor scripted...
check this spawner and maybe you will learn something
click>HERE<click
(I haven't said it is un-usefull )
Reply
#7

Quote:
Originally Posted by McKinley
AddStaticVehicle ()
Easy as that! Why would you need that? I mean, Pawn is the easyest one.
What do you mean?
Reply
#8

well thanks guys and i made it the way i did cause i got bored and it worked so i figured "hey it works ive got time im gonna be bored"
Reply
#9

I'm just a suggestion

remplace

Код:
if(strcmp(cmd, "/Landstalker", true) == 0)
{
	GetPlayerPos(playerid, x, y, z);
	GetPlayerFacingAngle(playerid, ang);
	CreateVehicle(400, x+1, y+1, z+1, 0, 0, 0, 600);
	SetVehicleZAngle(VehicleID, ang);
	return 1;
}
by

Код:
if(strcmp(cmd, "/Landstalker", true) == 0)
{
	CreatCar(playerid,400);
	return 1;
}
put down the script
Код:
stock CreatCar(playerid,IDC)
{
	new Float:x, Float:y, Float:z, Float:ang;
	new VehicleID = GetPlayerVehicleID(playerid);
	GetPlayerPos(playerid, x, y, z);
	GetPlayerFacingAngle(playerid, ang);
	CreateVehicle(IDC, x+1, y+1, z+1, 0, 0, 0, 600);
	SetVehicleZAngle(VehicleID, ang);
	return 1;
}
is the same code in less time
Reply
#10

finally some one i can get info i can use! thanks when i get home from school ill make it smaller
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)