Advertisement
Guest User

Untitled

a guest
Mar 21st, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. main
  2. ///////////////////
  3.  
  4. NewTimer("MSG2" , 300000, 0 );//Info: 1000 = 1 segundo.
  5.  
  6. Casa <- array( 1001, null );
  7.  
  8. Portao <- [];
  9.  
  10. Map <- array( GetMaxPlayers(), null );
  11. i_1PortaoPos <- array( GetMaxPlayers(), null );
  12. i_1PortaoRot <- array( GetMaxPlayers(), null );
  13. i_2PortaoPos <- array( GetMaxPlayers(), null );
  14. i_2PortaoRot <- array( GetMaxPlayers(), null );
  15.  
  16. NewTimer( "SalvarTudo", 300000, 0 );//Essa Função ficara salvando os dados dos players a cada 5 minutos.
  17. NewTimer( "MSG1" , 50000, 0 );//Info: 1000 = 1 segundo.
  18. NewTimer( "MSG2" , 40000, 0 );//Info: 1000 = 1 segundo.
  19. NewTimer( "MSG3" , 30000, 0 );//Info: 1000 = 1 segundo.
  20. NewTimer( "MSG4" , 20000, 0 );//Info: 1000 = 1 segundo.
  21. NewTimer( "MSG5" , 10000, 0 );//Info: 1000 = 1 segundo.
  22. NewTimer( "MSG6" , 60000, 0 );//Info: 1000 = 1 segundo.
  23.  
  24.  
  25. ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  26. And these are messages:
  27. function MSG1()
  28. {
  29. MSG("Need fuel? .Go on washington's beach fuel station");
  30. }
  31.  
  32. function MSG2()
  33. {
  34. MSG("There are some jobs which u can earn money, go work.");
  35. }
  36.  
  37. function MSG3()
  38. {
  39. MSG("Want to race? Use /race.");
  40. }
  41.  
  42. function MSG4()
  43. {
  44. MSG("Want duel? Use /duel.");
  45. }
  46.  
  47. function MSG5()
  48. {
  49. MSG("Use /cmds to learn faster the commands.");
  50. }
  51.  
  52. function MSG6()
  53. {
  54. MSG("Something illegal? /report.");
  55. }
  56.  
  57. function MSG7()
  58. {
  59. MSG("Use /cmds to learn faster the commands.");
  60. }
  61.  
  62.  
  63. // And this is the timer problem https://imgur.com/zm1dgDN
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement