Advertisement
Guest User

meu

a guest
Feb 22nd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.19 KB | None | 0 0
  1. $${
  2. do;
  3. if(%HELMDURABILITY% != 0);
  4. setlabel(CAPACETE,"&e&l&oCapacete: &4&l%HELMDURABILITY%",CAPACETE);
  5. else;
  6. setlabel(CAPACETE,"&e&l&oCapacete: &5&lvc esta sem",CAPACETE);
  7. endif;
  8.  
  9. if(%HELMDURABILITY% <90)
  10. setlabel(CAPACETE, "&e&l&oCapacete: &4&l%HELMDURABILITY%",CAPACETE")
  11. ELSE;
  12. setlabel(CAPACETE,"&e&l&oCapacete: &f&l%HELMDURABILITY%",CAPACETE);
  13.  
  14. endif;
  15. if(%BOOTSDURABILITY% != 0);
  16. setlabel(BOTA,"&e&l&oBota: &4&l%BOOTSDURABILITY%",BOTA);
  17. else;
  18. setlabel(BOTA,"&e&l&oBota: &5&lvc esta sem",BOTA);
  19. endif;
  20.  
  21. if(%BOOTSDURABILITY% <90)
  22. setlabel(BOTA, "&e&l&oBota: &4&l%BOOTSDURABILITY%",BOTA")
  23. else;
  24. setlabel(BOTA,"&e&l&oBota: &f&l%BOOTSDURABILITY%",BOTA);
  25. endif;
  26.  
  27. if(%LEGGINGSDURABILITY% != 0);
  28. setlabel(CALCA,"&e&l&oCalça: &4&l%LEGGINGSDURABILITY%",CALCA);
  29. else;
  30. setlabel(CALCA,"&e&l&oCalça: &5&lvc esta sem",CALCA);
  31. endif;
  32.  
  33. if(%LEGGINGSDURABILITY% <90)
  34. setlabel(CALCA, "&e&l&oCalça: &4&l%LEGGINGSDURABILITY%",CALCA")
  35. else;
  36. setlabel(CALCA,"&e&l&oCalça: &f&l%LEGGINGSDURABILITY%",CALCA);
  37. endif;
  38.  
  39. if(%CHESTPLATEDURABILITY% != 0);
  40. setlabel(PEITO,"&e&l&oPeitoral: &4&l%CHESTPLATEDURABILITY%",PEITO);
  41. else;
  42. setlabel(PEITO,"&e&l&oPeitoral: &5&lvc esta sem",PEITO);
  43. endif;
  44.  
  45. if(%CHESTPLATEDURABILITY% <90)
  46. setlabel(PEITO, "&e&l&oPeitoral: &4&l%CHESTPLATEDURABILITY%",PEITO")
  47. else;
  48. setlabel(PEITO,"&e&l&oPeitoral: &f&l%CHESTPLATEDURABILITY%",PEITO);
  49. endif;
  50.  
  51. if(%DURABILITY% != 0);
  52. setlabel(MAO,"&e&l&oItem: &f&l%DURABILITY%",MAO);
  53. else;
  54. setlabel(MAO," ",MAO);
  55. endif;
  56.  
  57. if(%ITEM% = 373);
  58. setlabel(MAO," ",MAO);
  59. endif;
  60.  
  61. if(%ITEM% = 322);
  62. setlabel(MAO," ",MAO);
  63. endif;
  64.  
  65. &eff=;
  66. foreach(effects);
  67. &effname=%EFFECTNAME%:;
  68. #time=%EFFECTTIME%;
  69. #id=%EFFECTID%;
  70. if(%#time%>=60);
  71. #prim=%#time%/60;
  72. #seg=%#time%-(%#prim%*60);
  73. if(%#seg%<10);
  74. &seg=0%#seg%;
  75. else;
  76. &seg=%#seg%;
  77. endif;
  78. &efftime=%#prim%:%&seg%;
  79. else;
  80. if(%#time%<10);
  81. &efftime=0:0%#time%;
  82. else;
  83. &efftime=0:%#time%;
  84. endif;
  85. endif;
  86. if(%#time%<11);
  87. &efftime=&e&l&o%&efftime%;
  88. else;
  89. &efftime=&f&l%&efftime%;
  90. endif;
  91. &eff=%&eff%\n&e&l&o%&effname% %&efftime%;
  92. next;
  93. setlabel(SE,"%&eff%",SE);
  94.  
  95. //=================================== FPS
  96.  
  97. setlabel(FPS,&e&l&oFPS&8: &f&l%FPS%,FPS)
  98.  
  99.  
  100. loop;
  101.  
  102. }$$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement