brendorox

Untitled

Aug 26th, 2012
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. // Brendoroox
  2.  
  3. - script timer -1,{
  4. end;
  5.  
  6. OnInit:
  7. if(gettime(3) > 7 && gettime(3) < 19) {
  8. goto DIA;
  9. } else {
  10. goto NOITE;
  11. }
  12.  
  13. NOITE:
  14. night;
  15. announce "Anoitece e os habitantes de Rune-Midgard retornam para suas casas...",0;
  16. end;
  17.  
  18. DIA:
  19. day;
  20. announce "O Sol se levanta sobre toda Rune-Midgard...",0;
  21. end;
  22.  
  23. OnHour19:
  24. goto NOITE;
  25.  
  26. OnHour07:
  27. goto DIA;
  28.  
  29. OnClock1200:
  30. announce "Mais uma tarde no horizonte, o Sol está em seu ponto mais alto...",0;
  31. end;
  32.  
  33. OnClock2400:
  34. announce "Uma escuridão sinistra cai sobre o Mundo dos Homens...",0;
  35. end;
  36.  
  37. }
Advertisement
Add Comment
Please, Sign In to add comment