Advertisement
fr0zen0925

Unlock Trixie and Max level

Nov 24th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. Please subscribe to my youtube channel https://www.youtube.com/channel/UChk2PtdGEA6A_yhfMznkV1g
  2.  
  3.  
  4. //Unlock TRIXIE:
  5. var _r1 = new RegExp("Item:trix.*");
  6. for (var i = 0; i < e.instances.length; i++) {
  7. if (_r1.test(e.instances[i].modelID)) {
  8. e.instances[i].state = "idle";
  9. }
  10. }
  11.  
  12. //MAX DAMAGE TRIXIE:
  13.  
  14. var _r1 = new RegExp("Item:trix.*");
  15.  
  16. for (var i = 0; i < e.instances.length; i++) {
  17. if (_r1.test(e.instances[i].modelID)) {
  18. e.instances[i].stats.level = 50;
  19. }
  20. }
  21.  
  22. -InstanceCache.prototype.writeDirtyInstancesToState
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement