24.01.2013, 10:07
Hello, i need help with making multiple jobs.
Under OnPlayerEnterCheckpoint i have farmer job
End of code is this
But i want to make for example trucker job and dmv with checkpoints, how can i add them?
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;
}

