Advertisement
Guest User

Untitled

a guest
Oct 17th, 2017
59,726
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. Trịnh Lợi
  2. //MAX TIỀN
  3.  
  4. var _r1 = new RegExp("Currency:coi.*");
  5.  
  6. for (var i = 0; i < e.instances.length; i++) {
  7. if (_r1.test(e.instances[i].modelID)) {
  8. e.instances[i].value = 999999;
  9. }
  10. }
  11.  
  12. //MAX DANH HIỆU
  13.  
  14. var _r1 = new RegExp("Currency:t.*");
  15.  
  16. for (var i = 0; i < e.instances.length; i++) {
  17. if (_r1.test(e.instances[i].modelID)) {
  18. e.instances[i].value = 99999;
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement