Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. CMD:iniciargrafos(playerid,params[])
  2. {
  3. SetTimer("InicioGrafo",100,0);
  4. return 1;
  5. }
  6.  
  7. fuction InicioGrafo(){
  8. new RandomGrafo = random(17);
  9. switch (RandomGrafo)
  10. {
  11. case 0: Disputa0();
  12. case 1: Disputa1();
  13. case 2: Disputa2();
  14. case 3: Disputa3();
  15. case 4: Disputa4();
  16. case 5: Disputa5();
  17. case 6: Disputa6();
  18. case 7: Disputa7();
  19. case 8: Disputa8();
  20. case 9: Disputa9();
  21. case 10: Disputa10();
  22. case 11: Disputa11();
  23. case 12: Disputa12();
  24. case 13: Disputa13();
  25. case 14: Disputa14();
  26. case 15: Disputa15();
  27. case 16: Disputa16();
  28. }
  29. return 1;
  30. }
  31.  
  32. fuction DisputaZonaHide(){
  33. TextDrawHideForAll(ZonaGrafos[0]);
  34. TextDrawHideForAll(ZonaGrafos[1]);
  35. TextDrawHideForAll(ZonaGrafos[2]);
  36. TextDrawHideForAll(ZonaGrafos[3]);
  37. TextDrawHideForAll(ZonaGrafos[4]);
  38. TextDrawHideForAll(BandaGanadoraGrafo[0]);
  39. TextDrawHideForAll(BandaGanadoraGrafo[1]);
  40. TextDrawHideForAll(BandaGanadoraGrafo[2]);
  41. TextDrawHideForAll(BandaGanadoraGrafo[3]);
  42. TextDrawHideForAll(BandaGanadoraGrafo[4]);
  43. TextDrawHideForAll(AvisoGrafos1[0]);
  44. TextDrawHideForAll(AvisoGrafos1[1]);
  45. TextDrawHideForAll(AvisoGrafos1[2]);
  46. TextDrawHideForAll(AvisoGrafos1[3]);
  47. TextDrawHideForAll(AvisoGrafos1[4]);
  48. TextDrawHideForAll(EnMarchaGrafo);
  49. TextDrawHideForAll(PintandoGraffitoide[0]);
  50. TextDrawHideForAll(PintandoGraffitoide[1]);
  51. TextDrawHideForAll(PintandoGraffitoide[2]);
  52. TextDrawHideForAll(ConquistandoMercaoide);
  53. KillTimer(HideTextGra);
  54. return 1;
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement