SA-MP Forums Archive
Drawing text on the screen and Vehicles in FS - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Drawing text on the screen and Vehicles in FS (/showthread.php?tid=151436)



Drawing text on the screen and Vehicles in FS - Ihsan_Cingisiz - 30.05.2010

Hello,

How can i draw a text on the top of the screen, in the middle
"Grand Theft Auto : Navi Roleplay"?
And is it able to put vehicles in Filtescritps?
And how can i do that if a admin types /respawn
that all cars on FilterscripInit will respawn?


Re: Drawing text on the screen and Vehicles in FS - Conroy - 30.05.2010

Textdraws

Yes

pawn Код:
SendRconCommand("reloadfs");

//or

for(new vehid; vehid < 2000; vehid++) {
SetVehicleToRespawn(vehid);
}



Re: Drawing text on the screen and Vehicles in FS - Flashy - 30.05.2010

A lot of questions but no examples. Do you have ever read the "Scripting Basics" ?
All your questions is in the "very easy section".

With TextDraw you can create Text on your screen till your screen is full of it.

Just search a bit here on forum and youo will find tutorials and examples.

Vehicles in Filterscripts: Sure. I donґt know why you canґt do that. Just put CreateVehicle on OnGameModInit.

Search here too. You will find a lot.

To respawn car you can change the CreateVehicle Typ.



For this all: Search on Wiki: https://sampwiki.blast.hk/wiki/Main_Page


Re: Drawing text on the screen and Vehicles in FS - Ihsan_Cingisiz - 30.05.2010

Quote:
Originally Posted by Conroy
Textdraws

Yes

pawn Код:
SendRconCommand("reloadfs");

//or

for(new vehid; vehid < 2000; vehid++) {
SetVehicleToRespawn(vehid);
}
'
I just want to realod one FS, is that possible?