Skip to content

How do I change the wizardslayer kit to remove the magic item restriction?

BladesBlades Member Posts: 167
How do I change the wizardslayer kit to remove the magic item restriction? I'm not a modded per se, but i have fiddled with near infinity and the various keepers.... So I am not afraid to use those tools if needed.

Comments

  • WispWisp Member Posts: 1,102
    You don't change the kit, you change each individual item. You could do this with NI, but I wouldn't recommend it unless you feel you could really go for some boring, repetitive attempt to see how many manual errors you could make.

    You'd be better off combining the below with this.
    /* * Copy all items (open them sequentially for IO) */ COPY_EXISTING_REGEXP GLOB ".+\.itm$" override /* * Disregard the obviously bogus ones (too small to be valid) * and the ones that are not usable by regular fighters (this second bit * is perhaps redundant, but it does no harm, regardless) */ PATCH_IF SOURCE_SIZE > 0x71 AND (LONG_AT 0x1e BAND BNOT BIT11) = 0 BEGIN /* * Remove the Wizard Slayer unusability bit */ WRITE_BYTE 0x2f THIS BAND BNOT BIT1 END /* * Disregard all items that were already usable by Wizard Slayers */ BUT_ONLY
    BladesjackjackGrammarsaladJuliusBorisov
Sign In or Register to comment.