FALSkills

Untitled

Feb 22nd, 2022 (edited)
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. public int
  2. prayerPotionCount = 20, // prayer count can be whatever value we want, but should consider ovl count
  3. absorptionCount = 22, // absorption count plus ovl count should be equal to 27
  4. overloadCount = 5,
  5.  
  6. absorptionPurchaseCount = 200,
  7. overloadPurchaseCount = 100,
  8. prayerRestockAmount = 100,
  9.  
  10. minPointsToEnableOverload = 100000, //this setting is skipped if we already have overloadCount * 4 number of doses stored in the barrel
  11. minPointsToSwitchToAbsorptions = 500000, // this setting is skipped if we already have absorptionCount * 4 number of doses stored in the barrel
  12.  
  13. minArrowCount = 1000,
  14. arrowStockAmount = 10000;
  15.  
  16. public boolean
  17. usingPrayer = true,
  18. usingOverloads = false, //becomes trye if minPoints condition is met above
  19. usingAbsorptions = false, //becomes true if minPoints condition is met above
  20.  
  21. activateRecurrentDamage = true,
  22. activateZapper = true,
  23. activatePowerSurge = true,
  24.  
  25. usingRanged = true,
  26. usingMelee = false,
  27.  
  28. useRockCake = false, //always true when using absorptions
  29.  
  30. flickRapidHeal = false; //always true, if using rock cake
  31.  
Add Comment
Please, Sign In to add comment