Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. #region GTFO
  2. ; GTFO
  3. Global $bGTFOEnabled
  4. Global $iCurInterval = 1
  5. Global Const $aIntervals[5][10] = [ [5,1,1], _
  6. [5,1,1], _
  7. [5,1,2], _
  8. [5,1,10], _
  9. [5,2,1], _
  10. [5,2,2], _
  11. [5,2,3], _
  12. [5,3,1], _
  13. [5,3,2], _
  14. [5,3,3], _
  15. [5,3,4], _
  16. [5,5,0], _
  17. [15,1,1], _
  18. [15,1,2], _
  19. [15,3,1], _
  20. [15,3,2], _
  21. [15,3,3], _
  22. [15,5,1], _
  23. [15,5,2], _
  24. [15,5,3], _
  25. [15,10,3], _
  26. [15,10,5], _
  27. [15,10,10], _
  28. [15,15,0], _
  29. [25,21,1]]
  30. Global $sIntervals = "-"
  31. For $i = 1 to UBound($aIntervals, 1)-1
  32. $sIntervals &= "|"
  33. For $j = 0 to UBound($aIntervals, 2)-1
  34. $sIntervals &= $aIntervals[$i][$j]
  35. If Not ($j = 2) Then $sIntervals &= "-"
  36. Next
  37. Next
  38. Global Const $sIntervalsTip = GetTranslated(699,46, "Mins-Mins-Num") & @CRLF & _
  39. GetTranslated(699,47, "Mins: Minutes - Training Frequency") & @CRLF & _
  40. GetTranslated(699,48, "Mins: Minutes - Kicking Frequency") & @CRLF & _
  41. GetTranslated(699,49, "Num: Numbers - Members Kicked")
  42. #endregion
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement