Advertisement
ykos

Untitled

Nov 14th, 2020
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.62 KB | None | 0 0
  1. new fam = PI[i][pFMember];
  2. new maxe = 100000000;
  3. if(fam!=-1)
  4. {
  5. if(FInfo[fam][fBest][6]!=0) maxe = 200000000;
  6. }
  7. switch(VIP)
  8. {
  9. case STATUS_NONE:
  10. {
  11. if(PI[i][pDepozit]>5000)
  12. {
  13. if(IsLauncherConnected(i) || IsMobileConnected(i))
  14. {
  15. if(PI[i][pDepozit]<maxe) Bank = floatround(float(PI[i][pDepozit])/1300.0);
  16. else Bank = floatround(float(maxe)/1300.0);
  17. }
  18. else
  19. {
  20. if(PI[i][pDepozit]<maxe) Bank = floatround(float(PI[i][pDepozit])/1350.0);
  21. else Bank = floatround(float(maxe)/1350.0);
  22. }
  23. }
  24. }
  25. case STATUS_VIP:
  26. {
  27. if(PI[i][pDepozit]>5000)
  28. {
  29. if(IsLauncherConnected(i) || IsMobileConnected(i))
  30. {
  31. if(PI[i][pDepozit]<maxe) Bank = floatround(float(PI[i][pDepozit])/1210.0);
  32. else Bank = floatround(float(maxe)/1210.0);
  33. }
  34. else
  35. {
  36. if(PI[i][pDepozit]<maxe) Bank = floatround(float(PI[i][pDepozit])/1250.0);
  37. else Bank = floatround(float(maxe)/1250.0);
  38. }
  39. }
  40. }
  41. case STATUS_GOLD:
  42. {
  43. if(PI[i][pDepozit]>5000)
  44. {
  45. if(IsLauncherConnected(i) || IsMobileConnected(i))
  46. {
  47. if(PI[i][pDepozit]<maxe) Bank = floatround(float(PI[i][pDepozit])/1060.0);
  48. else Bank = floatround(float(maxe)/1060.0);
  49. }
  50. else
  51. {
  52. if(PI[i][pDepozit]<maxe) Bank = floatround(float(PI[i][pDepozit])/1100.0);
  53. else Bank = floatround(float(maxe)/1100.0);
  54. }
  55. }
  56. }
  57. case 3:
  58. {
  59. PI[i][pExp] += 1;
  60. if(PI[i][pDepozit]>5000)
  61. {
  62. if(IsLauncherConnected(i) || IsMobileConnected(i))
  63. {
  64. if(PI[i][pDepozit]<maxe) Bank = floatround(float(PI[i][pDepozit])/1000.0);
  65. else Bank = floatround(float(maxe)/1000.0);
  66. }
  67. else
  68. {
  69. if(PI[i][pDepozit]<maxe) Bank = floatround(float(PI[i][pDepozit])/1050.0);
  70. else Bank = floatround(float(maxe)/1050.0);
  71. }
  72. }
  73. }
  74. case 4:
  75. {
  76. PI[i][pExp] += 1;
  77. if(PI[i][pDepozit]>5000)
  78. {
  79. if(IsLauncherConnected(i) || IsMobileConnected(i))
  80. {
  81. if(PI[i][pDepozit]<maxe) Bank = floatround(float(PI[i][pDepozit])/960.0);
  82. else Bank = floatround(float(maxe)/960.0);
  83. }
  84. else
  85. {
  86. if(PI[i][pDepozit]<maxe) Bank = floatround(float(PI[i][pDepozit])/1000.0);
  87. else Bank = floatround(float(maxe)/1000.0);
  88. }
  89. }
  90. }
  91. case 5:
  92. {
  93. PI[i][pExp] += 1;
  94. if(customafk_Get(i)<200 && PI[i][pWarns] == 0) GiveDonate( i, 2 );
  95. if(PI[i][pDepozit]>5000)
  96. {
  97. if(IsLauncherConnected(i) || IsMobileConnected(i))
  98. {
  99. if(PI[i][pDepozit]<maxe) Bank = floatround(float(PI[i][pDepozit])/900.0);
  100. else Bank = floatround(float(maxe)/900.0);
  101. }
  102. else
  103. {
  104. if(PI[i][pDepozit]<maxe) Bank = floatround(float(PI[i][pDepozit])/950.0);
  105. else Bank = floatround(float(maxe)/950.0);
  106. }
  107. }
  108. }
  109. case 6:
  110. {
  111. PI[i][pExp] += 1;
  112. if(customafk_Get(i)<200 && PI[i][pWarns] == 0)GiveDonate( i, 4 );
  113. if(PI[i][pDepozit]>5000)
  114. {
  115. if(IsLauncherConnected(i) || IsMobileConnected(i))
  116. {
  117. if(PI[i][pDepozit]<maxe) Bank = floatround(float(PI[i][pDepozit])/760.0);
  118. else Bank = floatround(float(maxe)/760.0);
  119. }
  120. else
  121. {
  122. if(PI[i][pDepozit]<maxe) Bank = floatround(float(PI[i][pDepozit])/800.0);
  123. else Bank = floatround(float(maxe)/800.0);
  124. }
  125. }
  126. }
  127. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement