SA-MP Forums Archive
Help finish an old Baitcar 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)
+--- Thread: Help finish an old Baitcar FS (/showthread.php?tid=389147)



Help finish an old Baitcar FS - jakejohnsonusa - 31.10.2012

I need someone to help me with this old baitcar FS I found.

What it needs:

-The faction lines removed and the key lines removed - as they were for testing purposes and will cause the FS not to work.
-The CMD to only be usable by Police skins 281, 282, 283, 284, 265, 266, 267

What would be nice (if easy to script):
-The baitcar has a yellow marker on the minimap for whoever did /baitcar

Please help, this will be an awesome FS for RP servers!
http://pastebin.com/98Tk1RzQ

Thanks: jakejohnsonusa


Re: Help finish an old Baitcar FS - Stu1 - 31.10.2012

pm'd you


Re: Help finish an old Baitcar FS - jakejohnsonusa - 31.10.2012

Ok thanks, Would anyone be able to add the "The baitcar has a yellow marker on the minimap for whoever did /baitcar" to this FS (if possible)?

Please & Thanks
-jakejohnsonusa


Re: Help finish an old Baitcar FS - jakejohnsonusa - 01.11.2012

Would somene be able to do this?


Re: Help finish an old Baitcar FS - jakejohnsonusa - 02.11.2012

Anyone, How do I make it where the baitcar is marked on the mini-map of just the person who typed /baitcar?


Re: Help finish an old Baitcar FS - RLGaming - 02.11.2012

Something like

foreach(Player, i)
{
new Float: x, Float: y, Float: z;
GetPlayerPos(playerid, x, y, z); // Getting the pos of the person who did /baitcar, you should place this out of the loop though
SetPlayerCheckpoint(i, x, y, z, 3.0);
}