Advertisement
Guest User

:D

a guest
Jun 24th, 2012
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. if(GetVehicleTrailer(GetPlayerVehicleID(playerid) == 584)) {
  2. MissionStatus[playerid] = 1;
  3. new MisRand = random(sizeof(MisLocations));
  4. new LoadText[128], Float:x, Float:y, Float:z;
  5. x = MisLocations[MisRand][LoadX];
  6. y = MisLocations[MisRand][LoadY];
  7. z = MisLocations[MisRand][LoadZ];
  8. unx[playerid] = MisLocations[MisRand][UnloadX];
  9. uny[playerid] = MisLocations[MisRand][UnloadY];
  10. unz[playerid] = MisLocations[MisRand][UnloadZ];
  11. iPay[playerid] = MisLocations[MisRand][Pay];
  12. SetPlayerCheckpoint(playerid, x, y, z, 7);
  13. format(LoadText, 128, "%s",MisLocations[MisRand][LoadName]);
  14. SendClientMessage(playerid, COLOR_GREEN, "Mission:");
  15. SendClientMessage(playerid, COLOR_GREEN, "_____________________");
  16. SendClientMessage(playerid, COLOR_GREEN, "");
  17. SendClientMessage(playerid, 0xFFFFFFFF, LoadText);
  18. SendClientMessage(playerid, COLOR_GREEN, "_____________________");
  19. TextDrawSetString(work, LoadText);
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement