![]() |
light sorc scripts? need help! - Printable Version +- Blizzard Sector (https://www.blizzsector.co) +-- Forum: Diablo II (https://www.blizzsector.co/forum-4.html) +--- Forum: Hacks Bots and Editors (https://www.blizzsector.co/forum-16.html) +--- Thread: light sorc scripts? need help! (/thread-46936.html) |
light sorc scripts? need help! - wildeman - 01-02-2011 was just wondering if anyone had a sure fire script for a light sorc. mine is doing ok but chickens a lot due to teleing to middle of swarm or just sitting there getting hit by hydras in throne and trav. i also want a script for items. i see mine selling MF sc and 50 psn dmg SC skill GC etc. and am very noobish with bots. any help would be great. and is 230 MF good enough to find good enough items? any suggestions?[COLOR="Silver"] ---------- Post added at 02:28 PM ---------- Previous post was at 02:25 PM ---------- [/COLOR]oh also wanted it to when it finds an immune to tele it so merc kills it, i also chicken because my sorc is ALL light. and if i control her i can kill anything due to merc with infinity. but the bot just focuses on the immune and wastes mana and full rejuves to restore mana...and also would like suggestions on where to have bot go every run for optimal MF. sorry ended up being 23647892364872 questions. light sorc scripts? need help! - Jammer74 - 01-02-2011 wildeman Wrote:was just wondering if anyone had a sure fire script for a light sorc. mine is doing ok but chickens a lot due to teleing to middle of swarm or just sitting there getting hit by hydras in throne and trav. i also want a script for items. i see mine selling MF sc and 50 psn dmg SC skill GC etc. and am very noobish with bots. any help would be great. and is 230 MF good enough to find good enough items? any suggestions?1: you can solve alot of your problems by using chain lightning on all except boss and you can do this by changing your attack config in D2NT31_NTBot42\D2NT\scripts\NTBot\char_configs\yourcharactersName //------------------------------------------------------------------------------ // Attack configuration //------------------------------------------------------------------------------ NTConfig_AttackSkill[0] = 0; // First skill. Set to 0 if you won't NTConfig_AttackSkill[1] = 49; // Primary skill to boss. NTConfig_AttackSkill[2] = 0; // Primary untimed skill to boss. Set to 0 if you won't NTConfig_AttackSkill[3] = 53; // Primary skill to others. NTConfig_AttackSkill[4] = 0; // Primary untimed skill to others. Set to 0 if you won't NTConfig_AttackSkill[5] = 53; // Secondary skill in case monster is immune to primary skill. Set to 0 if you won't NTConfig_AttackSkill[6] = 0; // Secondary untimed skill. Set to 0 if you won't NTConfig_ClearPosition = true; // Set to true if you want to clear area after killing boss. 2:unless you want 50 poison sc's for yourself they are just a waste of space(meaning not worth anything) as are the single line mf smallcharms with less than 7% mf.Thats why they aren't in the pickit.For now you can go to the pickit file you use and add these lines to keep both(they will go under the charm section in the magic_rare pickit that you use [name] == smallcharm && [Quality] == magic # [PoisonMaxDam] >= 50 [name] == smallcharm && [Quality] == magic # [itemmagicbonus] >= 2 just change the variables to suit yourself anything else you want to change in the pickit you might wanna download the godly magic_rare pickit in the stickies and follow the instructions. light sorc scripts? need help! - sportyamf05 - 01-13-2011 I have a lite sorc with great gear 23k dmg and a merc with nice eth fort and infinity. My problem is that when she finds a group with a lite immune "boss" she uses lightning on it alone while the merc pics off whoever is closest to him. Wastes potions and eventually chickens. Is there any way to make her attack only the big bosses with lite and chain with everyone else? Or should i just set it so that she uses chain always.... Thank you for the help guys, I appreciate it. light sorc scripts? need help! - Jammer74 - 01-13-2011 sportyamf05 Wrote:I have a lite sorc with great gear 23k dmg and a merc with nice eth fort and infinity. My problem is that when she finds a group with a lite immune "boss" she uses lightning on it alone while the merc pics off whoever is closest to him. Wastes potions and eventually chickens. Is there any way to make her attack only the big bosses with lite and chain with everyone else? Or should i just set it so that she uses chain always.... Im gonna do some research on it,but I can tell you this,it will require some changes in NTAttack, for now if its a real problem,you can either switch to chain for bosses or use this workaround that skips whatever LI bosses there are This is not my work it belongs to Evram 1: first open NTAttack located in D2NT31_NTBot42\D2NT\scripts\libs\common 2:Control F this next line if(firstorder && NTConfig_AttackSkill[0] > 0 && NTA_GetResistance(target, _NTA_SkillDamage[0]) < 100 && me.GetSkillStatus(NTConfig_AttackSkill[0]) != 8) 3:Add this next line right above the line you just searched if((target.name == "Pindleskin" || target.name == "Nihlathak") && NTA_GetResistance(target, NTA_DAMAGE_LIGHTNING) > 90) 4:To skip another boss just put his name where the orange bit is below(make sure you spell it correctly) if((target.name == "Pindleskin" || target.name == "Nihlathak" || target.name == "Monster name goes here") && NTA_GetResistance(target, NTA_DAMAGE_LIGHTNING) > 90) 5:if you want to skip all immunes just leave out the target bit so that it looks like this if(NTA_GetResistance(target, NTA_DAMAGE_LIGHTNING) > 90) return 1; 6:if you don't want to skip a boss because you know your merc can kill them then make it look like this if((target.name != "Pindleskin") && NTA_GetResistance(target, NTA_DAMAGE_LIGHTNING) > 100) return 1; This should help you get past those pesky immunes |