Advertisement
fr0zen09

Jade and Arcana unlock and Max Damage

Jul 22nd, 2017
7,094
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. Unlock your Jade and Arcana
  2.  
  3. var _r1 = new RegExp("jade_i");
  4. var _r2 = new RegExp("arcana_i");
  5. for(var i in e){
  6. if (_r1.test(e[i].schemaPrimativeID)) {
  7. e[i].state="idle"
  8. }
  9. if (_r2.test(e[i].schemaPrimativeID)) {
  10. e[i].state="idle";
  11. }
  12. }
  13.  
  14. Max Damage for Jade and Arcana
  15.  
  16. var _r1 = new RegExp("jade_s");
  17. var _r2 = new RegExp("arcana_s");
  18. for(var i in e){
  19. if (_r1.test(e[i].schemaPrimativeID)) {
  20. e[i].maximum=999999;
  21. e[i].value=999999;
  22. }
  23. if (_r2.test(e[i].schemaPrimativeID)) {
  24. e[i].maximum=999999;
  25. e[i].value=999999;
  26. }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement