06-10-2010, 01:59 PM
eksarled Wrote:ty skidude it worked.
Glad the script worked, If u need any other help just ask
lefebvre420 Wrote:i need help with my bot i have done everything and it just sits at the main section doesnt log in or anything how do i fix this please
You are using d2nt 3.1 right? Also go back and double check and make sure u have the d2nt manger set up right (entry point should be NTBot.ntj) also do u have .netframe work 3.5 installed on your pc?
flipp123 Wrote:hi i have a problem with my bot. he goes to town quite alot during chaos game. because of him towning so much, people in my games tend to die. please help me out . ty
Your bot is going to town over and over from getting cursed right? If u are playing softcore u can stop the curse check, But if u are playing hardcore u should keep it
go to D2NT31_NTBot42\D2NT\scripts\NTBot\char_configs and pick your char's config and scroll all the way down
replace this
Code:
// Check self safe in field (NOT in town). Set to 0 if you won't
// 0x01 : Potion, 0x02 : Poison, 0x04 : Amplify Damage, 0x08 : Weaken, 0x10 : Iron Maiden, 0x20 : Decrepify, 0x40 : Lower Resist
NTConfig_CheckSelfSafe = 0x04|0x40;
// Check merc's safe in field (NOT in town). Set to 0 if you won't
// 0x01 : Death, 0x02 : Poison, 0x04 : Amplify Damage, 0x08 : Weaken, 0x10 : Iron Maiden, 0x20 : Decrepify, 0x40 : Lower Resist
NTConfig_CheckMercSafe = 0x01|0x04|0x10|0x40;
Code:
// Check self safe in field (NOT in town). Set to 0 if you won't
// 0x01 : Potion, 0x02 : Poison, 0x04 : Amplify Damage, 0x08 : Weaken, 0x10 : Iron Maiden, 0x20 : Decrepify, 0x40 : Lower Resist
NTConfig_CheckSelfSafe = 0;
// Check merc's safe in field (NOT in town). Set to 0 if you won't
// 0x01 : Death, 0x02 : Poison, 0x04 : Amplify Damage, 0x08 : Weaken, 0x10 : Iron Maiden, 0x20 : Decrepify, 0x40 : Lower Resist
NTConfig_CheckMercSafe = 0;