SA-MP Forums Archive
Jobs - 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: Jobs (/showthread.php?tid=410079)



Jobs - edzis84 - 24.01.2013

Hello, i need help with making multiple jobs.

Under OnPlayerEnterCheckpoint i have farmer job


End of code is this
Код:
case 16:
{
DisablePlayerCheckpoint(playerid);
TogglePlayerControllable(playerid, 0);
GameTextForPlayer(playerid, "~w~Use /exit to stop job ", 5000, 1);
GivePlayerMoney(playerid, 400);
}
}
FarmerPickup[playerid][0]++;
PlayerPlaySound(playerid, 1056, 0.0, 0.0, 0.0);
}
}
return 1;
}
But i want to make for example trucker job and dmv with checkpoints, how can i add them?