How to make my bot stop - Kilajs - 02-02-2011
How do I make my bot stop going into town after iron maiden spell is casted on him. Its annoying and keeps going in and out of town in chaos runs. What file do i go to edit ? and what do i edit?
?
How to make my bot stop - Jammer74 - 02-02-2011
iron maiden isn't cast in chaos sanc anymore,as of patch 1.13
but you can edit this portion of your charactername config to modify for decrepify,poison,amp damage ect
its located at the bottom of the file and looks like 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
[COLOR=DarkOrange]NTConfig_CheckSelfSafe = 0x04|0x08|0x40;[/COLOR]
// 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
[COLOR=Olive]NTConfig_CheckMercSafe = 0x01|0x04|0x10|0x40;[/COLOR]
the orange line is where you config for yourself and the green line is where you config for your merc, if you dont wanna use this function just put a zero in place of the numbers like 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
[COLOR=DarkOrange]NTConfig_CheckSelfSafe = 0[/COLOR]
// 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
[COLOR=Olive]NTConfig_CheckMercSafe = 0[/COLOR]
How to make my bot stop - Kilajs - 02-02-2011
Jammer74 Wrote:iron maiden isn't cast in chaos sanc anymore,as of patch 1.13
but you can edit this portion of your charactername config to modify for decrepify,poison,amp damage ect
its located at the bottom of the file and looks like 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
[COLOR=darkorange]NTConfig_CheckSelfSafe = 0x04|0x08|0x40;[/COLOR]
// 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
[COLOR=olive]NTConfig_CheckMercSafe = 0x01|0x04|0x10|0x40;[/COLOR]
the orange line is where you config for yourself and the green line is where you config for your merc, if you dont wanna use this function just put a zero in place of the numbers like 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
[COLOR=darkorange]NTConfig_CheckSelfSafe = 0[/COLOR]
// 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
[COLOR=olive]NTConfig_CheckMercSafe = 0[/COLOR]
thx this really helped
How to make my bot stop - Jammer74 - 02-02-2011
my pleasure,if you need anything else just ask
|