Skip Lightning Enchant on Nith

I want it to do Nith only if he is not Light Immune.
Is something like this possible:
Code:
Config.SkipEnchant = {
[526] = {"lightning enchanted",}
}

I know how to use certain attacks on Custom monsters
Is something like this possible:
Code:
Config.CustomAttack = {
[526] = {97, 122} //Use second hand weapon though not First hand
}
 

SumDumGoy

Administrator
Staff member
I want it to do Nith only if he is not Light Immune.
Is something like this possible:
Code:
Config.SkipEnchant = {
[526] = {"lightning enchanted",}
}

I know how to use certain attacks on Custom monsters
Is something like this possible:
Code:
Config.CustomAttack = {
[526] = {97, 122} //Use second hand weapon though not First hand
}
use this to skip light immune, if you are looking for a custom boss check lightning, thats not a thing atm.
Code:
Config.SkipImmune = {
  { "lightning" }
}
 
Also i cannot use skip light immune.
I will never be able to spawn Diablo in chaos because they are usually light immune.

For this reason i think it would almost be necessary to add the logic of skip immune on certain custom monsters.

In this case:
If Boss=Nith & Light Immune // stone skin then skip.
 
Config.CustomAttack = {
--[526] = Config.PrimarySlot = 1 , {97, 122} //Use second hand weapon Smite & Fanat
}

ive tried stuff similar to the above, i figured it would not work but i think this would be an amazing feature.
 

ZhiPeiD2

Active member
Staff member
i think is waste time

just build character that is good for bot not use character that is dueler
 
i think is waste time

just build character that is good for bot not use character that is dueler
I don't think it's a waste of time as many characters have a counter.
Barbs may need to skip phys immune
light sorc same issues with light immunes.

So far I think foh is the fastest most reliable one. Just when he gets to nith and lightning enchanted it takes for ever rather than just telling him use second weapon smite fana. Or to skip only nith if light immune for speed runs.

I can't have him skip lightning enchanted in chaos, hell never get to Diablo.

With a coding background it wouldn't be to complicated to add a second string to call at the end of the argument for this.

Ex:
Config.CustomAttack = {
--[526] = {97, 122} , Config.PrimarySlot = 1 //Use second hand weapon Smite & Fanat
}


Config.SkipEnchant = {
{"lightning enchanted", [526]}
}
 
What about implementing something like this:

--[[ #### Conditional Attack Setting ####
Allows Conditional skills to be used on custom monsters based on enchants or immunities. See _monsters.txt for monster IDs
Example: [156],[2],{"lightning enchanted"} = [1],{38, -1}
-- [MonsterID],[0=immune,1=enchant,2=aura],{"attribute"} = [weapon slot 0/1/2] , {timed,untimed skill} use Charged Bolt on first hand weapon slot on Andariel if lightning enchanted --

Config.ConditionalAttack = {
[526],[1],{"lightning"} = {97, 122}, --Nith if lightning immune use Smite & Fanat
}
 
this not real code man not can just make up how is array worked
I know this.
Im saying this could be the code for the LUA files, somewhat.

not sure the code on your side to implement this.
i would be interested in offering to help for just that small section if u wanted me to look into this.

Or maybe even something similar, have the redemption configure search for a certain weapon slot
 
Top