Guest User

Untitled

a guest
Apr 26th, 2020
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.67 KB | None | 0 0
  1. var NTConfig_CastStatic;
  2.  
  3. function NT_LoadConfig()
  4. {
  5. //------------------------------------------------------------------------------
  6. // Boss configuration
  7. //------------------------------------------------------------------------------
  8. //NTConfig_Script.push("NTPindleskin.ntj"); NTConfig_NihlathakExtension = false;
  9. //NTConfig_Script.push("NTNihlathak.ntj"); NTConfig_PindleskinExtension = false;
  10. //NTConfig_Script.push("NTEldritch.ntj"); NTConfig_ShenkExtension = false;
  11. //NTConfig_Script.push("NTThreshSocket.ntj");
  12. //NTConfig_Script.push("NTFrozenRiver.ntj"); NTConfig_ClearFrozenRiver = false;
  13. //NTConfig_Script.push("NTGlacialTrail.ntj"); NTConfig_ClearGlacialTrail = false;
  14. //NTConfig_Script.push("NTIcyCellar.ntj"); NTConfig_ClearIcyCellar = false;
  15. //NTConfig_Script.push("NTBaal.ntj"); NTConfig_KillBaal = true;
  16. //NTConfig_Script.push("NTDiablo.ntj");
  17. //NTConfig_Script.push("NTHephasto.ntj");
  18. //NTConfig_Script.push("NTIzual.ntj");
  19. NTConfig_Script.push("NTMephisto.ntj");
  20. //NTConfig_Script.push("NTTravincal.ntj");
  21. NTConfig_Script.push("NTKurastTravel.ntj");
  22. //NTConfig_Script.push("NTAct3Sewers.ntj"); NTConfig_ClearA3SewersLevel1 = 1; // 0 : don't clear, 1 : clear path only, 2 : clear all
  23. //NTConfig_Script.push("NTSummoner.ntj"); NTConfig_KillFireEye = true;
  24. //NTConfig_Script.push("NTDuriel.ntj");
  25. //NTConfig_Script.push("NTAncientTunnels.ntj");
  26. //NTConfig_Script.push("NTColdworm.ntj");
  27. //NTConfig_Script.push("NTRadament.ntj");
  28. NTConfig_Script.push("NTAndariel.ntj");
  29. NTConfig_Script.push("NTCountess.ntj");
  30. //NTConfig_Script.push("NTTreehead.ntj");
  31. NTConfig_Script.push("NTPit.ntj"); NTConfig_ClearPitLevel1 = 2; // 0 : don't clear, 1 : clear path only, 2 : clear all
  32. //NTConfig_Script.push("NTMausoleum.ntj"); NTConfig_KillBloodRaven = true;
  33. //NTConfig_Script.push("NTHole.ntj"); NTConfig_ClearHoleLevel1 = 1; // 0 : don't clear, 1 : clear path only, 2 : clear all
  34. //NTConfig_Script.push("NTTristram.ntj"); NTConfig_KillRakanishu = true;
  35.  
  36. //------------------------------------------------------------------------------
  37. //------------------------------------------------------------------------------
  38. me.maxgametime = 1200; // time in seconds, maximum game length (0 is infinite)
  39. NTConfig_StartDelay = 0; // Delay time in milliseconds to start;
  40. NTConfig_AreaDelay = 500; // Delay time in milliseconds to change area;
  41. NTConfig_SnagDelay = 500; // Delay time in milliseconds to wait before starting picking items
  42.  
  43. //------------------------------------------------------------------------------
  44. //------------------------------------------------------------------------------
  45. NTConfig_SkipHealLife = 90; // If you have more than this percent of life, you won't go to a healer
  46. NTConfig_SkipHealMana = 70; // If you have more than this percent of mana, you won't go to a healer
  47. NTConfig_UseMerc = true; // Set to true if you use a mercenary, will revive merc at a reviver npc.
  48. NTConfig_ResetWeapon = false; // Set to true to reset weapon when reviving merc
  49.  
  50. NTConfig_LifeThresh = 60; // Drink a normal potion if under this percent of life.
  51. NTConfig_LifeRejuvThresh = 40; // Drink a rejuvenation potion if under this percent of life.
  52. NTConfig_ManaThresh = 30; // Drink a normal potion if under this percent of mana.
  53. NTConfig_ManaRejuvThresh = 10; // Drink a rejuvenation potion if under this percent of mana.
  54. NTConfig_LifeChicken = 30; // This is your chicken life percent. If you go below this life total, exit game.
  55. NTConfig_ManaChicken = 0; // This is your chicken mana percent. If you go below this mana total, exit game.
  56.  
  57. NTConfig_MercLifeThresh = 50; // This is the threshold to use a life potion on your merc in percent.
  58. NTConfig_MercRejuvThresh = 30; // This is the threshold to use a rejuv potion on your merc in percent.
  59. NTConfig_MercChicken = 20; // This is your mercs chicken life percent. If he goes below this, exit game.
  60.  
  61. //------------------------------------------------------------------------------
  62. //------------------------------------------------------------------------------
  63. NTConfig_FreeSpace = 4; // Number of free columns. If less full columns are free stashing is set.
  64.  
  65. // The numbers correspond to your inventory. Set 0 to keep whatever is there, 1 to stash it.
  66. NTConfig_Columns[0] = [1,1,1,1,1,0,0,0,0,0];
  67. NTConfig_Columns[1] = [1,1,1,1,1,0,0,0,0,0];
  68. NTConfig_Columns[2] = [1,1,1,1,1,0,0,0,0,0];
  69. NTConfig_Columns[3] = [1,1,1,1,1,0,0,0,0,0];
  70.  
  71. NTConfig_MinGoldToStash = 100000; // Maximum gold amount carried before going to stash
  72.  
  73. //----------------------------------------------------------------------------------------------
  74. // Type of potion used in each belt column
  75. // Available types : "hp" = health | "mp" = mana | "rv" = rejuv. Can use other potion types too.
  76. // Keep equal types at adjacent columns. First HP then MP and then HP again is a bad choice.
  77. // Keep HP and MP at the beginning of the belt (in case you want to use rejuv and other types).
  78. // Rejuvenations MUST, I REPEAT MUST be at the end of the belt (last x columns).
  79. // To use rejuvenations only, put "rv" in all columns.
  80. //----------------------------------------------------------------------------------------------
  81. NTConfig_BeltColType[0] = "hp";
  82. NTConfig_BeltColType[1] = "hp";
  83. NTConfig_BeltColType[2] = "hp";
  84. NTConfig_BeltColType[3] = "hp";
  85.  
  86. //-----------------------------------------------------------------------------------
  87. // SnagIt configuration
  88. // Select one group only (normal / advance / extreme)
  89. //-----------------------------------------------------------------------------------
  90. //NTConfig_NIPFilePath.push("normal/normal.nip");
  91. //NTConfig_NIPFilePath.push("normal/magic_rare.nip");
  92. //NTConfig_NIPFilePath.push("normal/set.nip");
  93. //NTConfig_NIPFilePath.push("normal/unique.nip");
  94. //NTConfig_NIPFilePath.push("normal/craft.nip");
  95.  
  96. NTConfig_NIPFilePath.push("advance/normal.nip");
  97. NTConfig_NIPFilePath.push("advance/magic_rare.nip");
  98. NTConfig_NIPFilePath.push("advance/set.nip");
  99. NTConfig_NIPFilePath.push("advance/unique.nip");
  100. NTConfig_NIPFilePath.push("advance/craft.nip");
  101.  
  102. //NTConfig_NIPFilePath.push("extreme/normal.nip");
  103. //NTConfig_NIPFilePath.push("extreme/magic_rare.nip");
  104. //NTConfig_NIPFilePath.push("extreme/set.nip");
  105. //NTConfig_NIPFilePath.push("extreme/unique.nip");
  106. //NTConfig_NIPFilePath.push("extreme/craft.nip");
  107.  
  108. NTConfig_SnagRange = 40; // Radius to check for dropped items. 40 is a good number here
  109.  
  110. //------------------------------------------------------------------------------
  111. // Cubing configuration
  112. //------------------------------------------------------------------------------
  113. NTConfig_Cubing = true; // Enable cubing
  114.  
  115. NTConfig_CubingItem.push([NTCU_GEM, 560]); // Flawless Amethyst
  116. NTConfig_CubingItem.push([NTCU_GEM, 565]); // Flawless Topaz
  117. NTConfig_CubingItem.push([NTCU_GEM, 570]); // Flawless Saphire
  118. NTConfig_CubingItem.push([NTCU_GEM, 575]); // Flawless Emerald
  119. NTConfig_CubingItem.push([NTCU_GEM, 580]); // Flawless Ruby
  120. NTConfig_CubingItem.push([NTCU_GEM, 585]); // Flawless Diamond
  121. NTConfig_CubingItem.push([NTCU_GEM, 600]); // Flawless Skull
  122.  
  123. //NTConfig_CubingItem.push([NTCU_MAGIC, 420]); // Magic Tiara
  124. //NTConfig_CubingItem.push([NTCU_MAGIC, 421]); // Magic Diadem
  125.  
  126. //NTConfig_CubingItem.push([NTCU_MAGIC_CHARM, 603]); // Magic Small Charm
  127. //NTConfig_CubingItem.push([NTCU_MAGIC_CHARM, 605]); // Magic Grand Charm
  128.  
  129. //NTConfig_CubingItem.push([NTCU_CRAFT_HITPOWER_GLOVES, 382]); // Craft Heavy Bracers
  130. //NTConfig_CubingItem.push([NTCU_CRAFT_HITPOWER_GLOVES, 452]); // Craft Vambraces
  131.  
  132. //NTConfig_CubingItem.push([NTCU_CRAFT_BLOOD_HELM, 354]); // Craft Casque
  133. //NTConfig_CubingItem.push([NTCU_CRAFT_BLOOD_HELM, 424]); // Craft Armet
  134. //NTConfig_CubingItem.push([NTCU_CRAFT_BLOOD_BOOTS, 388]); // Craft Battle Boots
  135. //NTConfig_CubingItem.push([NTCU_CRAFT_BLOOD_BOOTS, 458]); // Craft Mirrored Boots
  136. //NTConfig_CubingItem.push([NTCU_CRAFT_BLOOD_GLOVES, 381]); // Craft Sharkskin Gloves
  137. //NTConfig_CubingItem.push([NTCU_CRAFT_BLOOD_GLOVES, 451]); // Craft Vampirebone Gloves
  138. //NTConfig_CubingItem.push([NTCU_CRAFT_BLOOD_BELT, 392]); // Craft Mesh Belt
  139. //NTConfig_CubingItem.push([NTCU_CRAFT_BLOOD_BELT, 462]); // Craft Mithril Coil
  140. //NTConfig_CubingItem.push([NTCU_CRAFT_BLOOD_AMULET, 520]); // Craft Amulet
  141. NTConfig_CubingItem.push([NTCU_CRAFT_BLOOD_RING, 522]); // Craft Ring
  142.  
  143. NTConfig_CubingItem.push([NTCU_CRAFT_CASTER_AMULET, 520]); // Craft Amulet
  144.  
  145. //NTConfig_CubingItem.push([NTCU_CRAFT_SAFETY_SHIELD, 447]); // Craft Monarch
  146. //NTConfig_CubingItem.push([NTCU_CRAFT_SAFETY_AMULET, 520]); // Craft Amulet
  147.  
  148. //NTConfig_CubingItem.push([NTCU_RUNE_THUL, 562]);
  149. //NTConfig_CubingItem.push([NTCU_RUNE_AMN, 557]);
  150. //NTConfig_CubingItem.push([NTCU_RUNE_SOL, 567]);
  151. //NTConfig_CubingItem.push([NTCU_RUNE_SHAEL, 577]);
  152. //NTConfig_CubingItem.push([NTCU_RUNE_DOL, 572]);
  153. //NTConfig_CubingItem.push([NTCU_RUNE_HEL, 582]);
  154. //NTConfig_CubingItem.push([NTCU_RUNE_IO, 563]);
  155. NTConfig_CubingItem.push([NTCU_RUNE_LUM, 558]);
  156. NTConfig_CubingItem.push([NTCU_RUNE_KO, 568]);
  157. NTConfig_CubingItem.push([NTCU_RUNE_FAL, 578]);
  158. NTConfig_CubingItem.push([NTCU_RUNE_LEM, 573]);
  159. NTConfig_CubingItem.push([NTCU_RUNE_PUL, 583]);
  160. NTConfig_CubingItem.push([NTCU_RUNE_UM, 564]);
  161. NTConfig_CubingItem.push([NTCU_RUNE_MAL, 559]);
  162. //NTConfig_CubingItem.push([NTCU_RUNE_IST, 569]);
  163. //NTConfig_CubingItem.push([NTCU_RUNE_GUL, 579]);
  164. //NTConfig_CubingItem.push([NTCU_RUNE_VEX, 574]);
  165. //NTConfig_CubingItem.push([NTCU_RUNE_OHM, 584]);
  166. //NTConfig_CubingItem.push([NTCU_RUNE_LO, 565]);
  167. //NTConfig_CubingItem.push([NTCU_RUNE_SUR, 560]);
  168. //NTConfig_CubingItem.push([NTCU_RUNE_BER, 570]);
  169. //NTConfig_CubingItem.push([NTCU_RUNE_JAH, 580]);
  170. //NTConfig_CubingItem.push([NTCU_RUNE_CHAM, 575]);
  171.  
  172. //***** Include the following, Primary item must be setted in item_configs folder *****
  173.  
  174. //NTConfig_CubingItem.push([NTCU_SOCKET_BODYARMOR, 442]); // Socket Sacred Armor
  175.  
  176. //NTConfig_CubingItem.push([NTCU_SOCKET_WEAPON, 255]); // Socket Thresher
  177. //NTConfig_CubingItem.push([NTCU_SOCKET_WEAPON, 256]); // Socket Cryptic Axe
  178. //NTConfig_CubingItem.push([NTCU_SOCKET_WEAPON, 257]); // Socket Great Poleaxe
  179. //NTConfig_CubingItem.push([NTCU_SOCKET_WEAPON, 258]); // Socket Giant Thresher
  180.  
  181. //NTConfig_CubingItem.push([NTCU_UPGRADE_E_UNIQUE_WEAPON, 295]); // Titan's Revenge : Exceptional -> Elite
  182.  
  183. //NTConfig_CubingItem.push([NTCU_UPGRADE_N_UNIQUE_ARMOR, 337]); // Magefist : Normal -> Exceptional
  184. //NTConfig_CubingItem.push([NTCU_UPGRADE_E_UNIQUE_ARMOR, 360]); // Skin of the Vipermagi : Exceptional -> Elite
  185. //NTConfig_CubingItem.push([NTCU_UPGRADE_E_UNIQUE_ARMOR, 383]); // Magefist or Lava Gout : Exceptional -> Elite
  186. //NTConfig_CubingItem.push([NTCU_UPGRADE_E_UNIQUE_ARMOR, 389]); // Gore Rider : Exceptional -> Elite
  187. //NTConfig_CubingItem.push([NTCU_UPGRADE_E_UNIQUE_ARMOR, 477]); // Arreat's Face : Exceptional -> Elite
  188. //NTConfig_CubingItem.push([NTCU_UPGRADE_E_UNIQUE_ARMOR, 481]); // Herald Of Zakarum : Exceptional -> Elite
  189.  
  190. //------------------------------------------------------------------------------
  191. // Gamble configuration
  192. // To specify what items to gamble, adjust the array with the desired item codes
  193. //------------------------------------------------------------------------------
  194. NTConfig_Gamble = false; // Enable gambling
  195. NTConfig_GambleStartGold = 800000; // Gold amount to start the gambling
  196. NTConfig_GambleStopGold = 300000; // Gold amount to stop the gambling
  197.  
  198. NTConfig_GambleItem.push(520); // Amulets
  199. NTConfig_GambleItem.push(522); // Rings
  200. NTConfig_GambleItem.push(418); // Circlets
  201. NTConfig_GambleItem.push(419); // Coronets
  202. //NTConfig_GambleItem.push(334); // Leather Gloves
  203. //NTConfig_GambleItem.push(335); // Heavy Gloves
  204. NTConfig_GambleItem.push(336); // Chain Gloves
  205. //NTConfig_GambleItem.push(337); // Light Gauntlets
  206. //NTConfig_GambleItem.push(338); // Gauntlets
  207.  
  208. //------------------------------------------------------------------------------
  209. // General configuration
  210. //------------------------------------------------------------------------------
  211. NTConfig_PublicMode = false;
  212. NTConfig_CheckCloneDiablo = false; // Set to true if you want to wait in game after notifying "Diablo Walks the Earth" msg.
  213. NTConfig_OpenChest = true; // Set to true to open chest
  214. me.quitonhostile = false;
  215.  
  216. //------------------------------------------------------------------------------
  217. // Attack configuration
  218. //------------------------------------------------------------------------------
  219. NTConfig_AttackSkill[0] = 0; // First skill. Set to 0 if you won't
  220. NTConfig_AttackSkill[1] = 0; // Primary skill to boss.
  221. NTConfig_AttackSkill[2] = 0; // Primary untimed skill to boss. Set to 0 if you won't
  222. NTConfig_AttackSkill[3] = 0; // Primary skill to others.
  223. NTConfig_AttackSkill[4] = 0; // Primary untimed skill to others. Set to 0 if you won't
  224. NTConfig_AttackSkill[5] = 0; // Secondary skill in case monster is immune to primary skill. Set to 0 if you won't
  225. NTConfig_AttackSkill[6] = 0; // Secondary untimed skill. Set to 0 if you won't
  226. NTConfig_ClearPosition = true; // Set to true if you want to clear area after killing boss.
  227.  
  228. // Check self safe in field (NOT in town). Set to 0 if you won't
  229. // 0x01 : Potion, 0x02 : Poison, 0x04 : Amplify Damage, 0x08 : Weaken, 0x10 : Iron Maiden, 0x20 : Decrepify, 0x40 : Lower Resist
  230. NTConfig_CheckSelfSafe = 0x04|0x40;
  231. // Check merc's safe in field (NOT in town). Set to 0 if you won't
  232. // 0x01 : Death, 0x02 : Poison, 0x04 : Amplify Damage, 0x08 : Weaken, 0x10 : Iron Maiden, 0x20 : Decrepify, 0x40 : Lower Resist
  233. NTConfig_CheckMercSafe = 0x01|0x04|0x10|0x40;
  234.  
  235. NTConfig_CastStatic = 60; // Cast Static Field until monster's HP lower less than this percent. Set to 100 if you won't
  236. }
Advertisement
Add Comment
Please, Sign In to add comment