Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. var _r1 = new RegExp("_maturity");
  2. var _r2 = new RegExp("_zodiac_bonus");
  3. var _r3 = new RegExp("_xp");
  4. var _r4 = new RegExp("SC01"); //sidekick1 you want to change
  5. var _r5 = new RegExp("WC13"); //sidekick2 you want to change
  6. var _r6 = new RegExp("WC06"); //sidekick3 you want to change
  7. var _r7 = new RegExp("WC04"); //sidekick4 you want to change
  8. var _r8 = new RegExp("WC01"); //sidekick5 you want to change
  9. var _r9 = new RegExp("Item");
  10. for(var i in e){
  11. if(_r4.test(e[i].schemaPrimativeID)){
  12. if (_r9.test(e[i].schemaPrimativeType)) {
  13. e[i].schemaPrimativeID="sidekick:FC23"; //Kiwig
  14. }
  15. if (_r1.test(e[i].schemaPrimativeID)) {
  16. e[i].value=3;
  17. }
  18. if (_r2.test(e[i].schemaPrimativeID)) {
  19. e[i].value=2;
  20. }
  21. if (_r3.test(e[i].schemaPrimativeID)) {
  22. e[i].maximum=200000;
  23. e[i].value=200000;
  24. }
  25. }
  26. if(_r5.test(e[i].schemaPrimativeID)){
  27. if (_r9.test(e[i].schemaPrimativeType)) {
  28. e[i].schemaPrimativeID="sidekick:LC23"; //Tikbalang
  29. }
  30. if (_r1.test(e[i].schemaPrimativeID)) {
  31. e[i].value=3;
  32. }
  33. if (_r2.test(e[i].schemaPrimativeID)) {
  34. e[i].value=2;
  35. }
  36. if (_r3.test(e[i].schemaPrimativeID)) {
  37. e[i].maximum=200000;
  38. e[i].value=200000;
  39. }
  40. }
  41. if(_r6.test(e[i].schemaPrimativeID)){
  42. if (_r9.test(e[i].schemaPrimativeType)) {
  43. e[i].schemaPrimativeID="sidekick:NC23"; //Lampong
  44. }
  45. if (_r1.test(e[i].schemaPrimativeID)) {
  46. e[i].value=3;
  47. }
  48. if (_r2.test(e[i].schemaPrimativeID)) {
  49. e[i].value=2;
  50. }
  51. if (_r3.test(e[i].schemaPrimativeID)) {
  52. e[i].maximum=200000;
  53. e[i].value=200000;
  54. }
  55. }
  56. if(_r7.test(e[i].schemaPrimativeID)){
  57. if (_r9.test(e[i].schemaPrimativeType)) {
  58. e[i].schemaPrimativeID="sidekick:SC23"; //Bakunawa
  59. }
  60. if (_r1.test(e[i].schemaPrimativeID)) {
  61. e[i].value=3;
  62. }
  63. if (_r2.test(e[i].schemaPrimativeID)) {
  64. e[i].value=2;
  65. }
  66. if (_r3.test(e[i].schemaPrimativeID)) {
  67. e[i].maximum=200000;
  68. e[i].value=200000;
  69. }
  70. }
  71. if(_r8.test(e[i].schemaPrimativeID)){
  72. if (_r9.test(e[i].schemaPrimativeType)) {
  73. e[i].schemaPrimativeID="sidekick:WC23"; //Buwaya
  74. }
  75. if (_r1.test(e[i].schemaPrimativeID)) {
  76. e[i].value=3;
  77. }
  78. if (_r2.test(e[i].schemaPrimativeID)) {
  79. e[i].value=2;
  80. }
  81. if (_r3.test(e[i].schemaPrimativeID)) {
  82. e[i].maximum=200000;
  83. e[i].value=200000;
  84. }
  85. }
  86. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement