(ask)How to create taxi job - 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: (ask)How to create taxi job (
/showthread.php?tid=177077)
(ask)How to create taxi job -
gondes - 16.09.2010
Okay i need taxi job in my script but how to create that?
Re: (ask)How to create taxi job -
willsuckformoney - 16.09.2010
You can ask someone to make it for you, more likely wont be made but someone may...
https://sampforum.blast.hk/showthread.php?tid=118885&page=158
Or just make it yourself I'm sure its really easy.
Re: (ask)How to create taxi job -
PinkFloydLover - 16.09.2010
I dont think many people will tell you the entire thing over hear, your better off downloading one from the filterscripts or getting it out of a gamemode and see how they do it.
Re: (ask)How to create taxi job -
Cameltoe - 16.09.2010
pawn Код:
// symbol
new Job[MAX_PLAYERS];
// command:
command(taxijob, playerid, params[])
{
if(Job[playerid] == 0)
{
Job[playerid] = 1;
return 1;
}
else return SendClientMessage(playerid, COLORHERE, "you already got this job...");
}
// OnPlayerDC
Job[playerid] = 0;
Now, use your imagination!