Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. /**************************************************
  2. PayDay System 1.0 by Edgar ~
  3.  
  4. **************************************************/
  5.  
  6. //Variabili
  7.  
  8. new PagaRand[52][1] = {
  9. {2},
  10. {47},
  11. {48},
  12. {50},
  13. {58},
  14. {60},
  15. {68},
  16. {72},
  17. {73},
  18. {80},
  19. {81},
  20. {82},
  21. {83},
  22. {95},
  23. {100},
  24. {101},
  25. {102},
  26. {103},
  27. {104},
  28. {108},
  29. {109},
  30. {110},
  31. {121},
  32. {122},
  33. {123},
  34. {135},
  35. {142},
  36. {143},
  37. {144},
  38. {146},
  39. {153},
  40. {154},
  41. {155},
  42. {156},
  43. {158},
  44. {159},
  45. {160},
  46. {161},
  47. {170},
  48. {179},
  49. {180},
  50. {189},
  51. {202},
  52. {203},
  53. {204},
  54. {258},
  55. {259},
  56. {260},
  57. {293},
  58. {295},
  59. {296},
  60. {297}
  61. };
  62.  
  63. //Forward
  64. forward PayDay();
  65.  
  66. //Callback
  67. OnFilterScriptInit();{
  68. print("PayDay System by Edgar ~ Caricato");
  69. SetTimer("PayDay",720000,1);//Timer
  70. return 1;}
  71.  
  72. public Salary(){
  73. new RandSoldi;
  74. RandSoldi = random(sizeof(PagaRand));
  75. GivePlayerMoney(playerid, RandSoldi);
  76. return 1;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement