Advertisement
Guest User

Untitled

a guest
Dec 21st, 2014
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. public SyncTime()
  2. {
  3. new string[64];
  4. new tmphour;
  5. new tmpminute;
  6. new tmpsecond;
  7. gettime(tmphour, tmpminute, tmpsecond);
  8. FixHour(tmphour);
  9. tmphour = shifthour;
  10. if ((tmphour > ghour) || (tmphour == 0 && ghour == 24))
  11. {
  12. format(string, sizeof(string), "SERVER: The time is now %d:00 hours",tmphour);
  13. BroadCast(COLOR_WHITE,string);
  14. ghour = tmphour;
  15. PayDay();
  16. if (realtime)
  17. {
  18. SetWorldTime(tmphour);
  19. }
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement