Thanks for the snippet. I guess this is where I have questions:
When you say, "SET miscast_percent = x" to what you like" - do you mean replace it with the name of the item ability, spell or effect I want to patch in? For example:
COPY_EXISTING_REGEXP GLOB ~^.+\.itm$~ ~override~
PATCH_IF (SOURCE_SIZE > 0x71) BEGIN
READ_SHORT 0x1c "temp_type" ELSE 0
PATCH_IF (temp_type > 199) BEGIN // armours
PATCH_IF (temp_type = 201 || temp_type = 203 || temp_type = 204 || temp_type = 205 || temp_type = 206 || temp_type = 207) BEGIN // All non-special Chain Mail, Full Plate, Hide, Plate Mail and Scale Mail armors
SET "rw#ecmbr.spl" // name of the spell ability I want to patch in
END
rw#ecmbr.spl is the name of the spell ability I want to patch in. In case the syntax I just posted isn't correct, how would I go about making it work? For the record, the spell ability consists of 4 effects:
(142) Display Portrait Icon (206) Protection from spell - rw#dfeet.spl (206) Protection from spell - rw#dtmbl.spl (206) Protection from spell - rw#ddanc.spl
I tried swapping out Eldoth's info for Skie's in the section you mentioned and replacing the XY values with the ones I wanted Skie to appear at, but it didn't work. ><