Advertisement
finaltidus

selfEsteem.ash

Mar 15th, 2018
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. //(login+logout script)extend duration of the good buffs or get a random cast at the end of the day (for farming).
  2.  
  3. if (get_property("_incredibleSelfEsteemCast") == false){
  4. if (have_effect($effect[Always be Collecting]) > 1){
  5. cli_execute("cast 1 Incredible Self-Esteem");
  6. }
  7. if (have_effect($effect[Work For Hours a Week]) > 1){
  8. cli_execute("cast 1 Incredible Self-Esteem");
  9. }
  10. if (my_fullness() > 14 && my_inebriety() > 18 && my_adventures() < 10 && pvp_attacks_left() < 10){ //check 2 make sure it's not wasted
  11. cli_execute("cast 1 Incredible Self-Esteem");
  12. }
  13. }else{
  14. print("Incredible Self-Esteem Already Cast.");
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement