When I go to Shadow Keeper, I get one set of hex colors. The template I
If possible, would I be able to do this with only the first set from SK as well?
Posted 11 January 2006 - 10:03 PM
- The transitioned former modder once known as MTS.
Posted 12 January 2006 - 06:41 AM
Khadion NPC mod - Team leader, head designer
Hubelpot NPC mod - Team leader, coder
NPC Damage - Coder
PC Soundsets - Coder, voice actor
Brythe NPC mod - Designer
DragonLance TC - Glory of Istar - Designer
The NPC Interaction Expansion Project - Writer for Cernd, Sarevok
The Jerry Zinger Show - Producer
Iron Modder 5 - Winner
Posted 12 January 2006 - 12:28 PM
Khadion NPC mod - Team leader, head designer
Hubelpot NPC mod - Team leader, coder
NPC Damage - Coder
PC Soundsets - Coder, voice actor
Brythe NPC mod - Designer
DragonLance TC - Glory of Istar - Designer
The NPC Interaction Expansion Project - Writer for Cernd, Sarevok
The Jerry Zinger Show - Producer
Iron Modder 5 - Winner
Posted 15 January 2006 - 10:35 AM
Ah, that'd explain it.
- The transitioned former modder once known as MTS.
Posted 15 January 2006 - 10:36 AM
Khadion NPC mod - Team leader, head designer
Hubelpot NPC mod - Team leader, coder
NPC Damage - Coder
PC Soundsets - Coder, voice actor
Brythe NPC mod - Designer
DragonLance TC - Glory of Istar - Designer
The NPC Interaction Expansion Project - Writer for Cernd, Sarevok
The Jerry Zinger Show - Producer
Iron Modder 5 - Winner
Posted 16 January 2006 - 01:08 AM
COPY_EXISTING ~J#Klsy09.CRE~ ~override~ PATCH_IF (SOURCE_SIZE > 0x71) THEN BEGIN WRITE_BYTE 0x32 0x42 // Metal colour WRITE_BYTE 0x2d 0x2e // Minor colour WRITE_BYTE 0x2e 0x15 // Major colour WRITE_BYTE 0x2f 0x69 // Skin colour WRITE_BYTE 0x32 0x42 // Leather colour WRITE_BYTE 0x32 0x42 // Armor colour WRITE_BYTE 0x32 0x42 // Hair colour
- The transitioned former modder once known as MTS.
Posted 16 January 2006 - 01:35 AM
COPY_EXISTING ~aerie.cre~ ~override~ PATCH_IF (SOURCE_SIZE > 0x71) THEN BEGIN WRITE_BYTE 0x2c 0x1b // Metal colour WRITE_BYTE 0x2d 0x2e // Minor colour WRITE_BYTE 0x2e 0x15 // Major colour WRITE_BYTE 0x2f 0x69 // Skin colour WRITE_BYTE 0x30 0x16 // Leather colour WRITE_BYTE 0x31 0x1d // Armor colour WRITE_BYTE 0x32 0x42 // Hair colour END BUT_ONLY_IF_IT_CHANGESis the full code, but I'll just grab one of them as example:
WRITE_BYTE 0x2c 0x1b // Metal colourThe first value is the location, 2c, in the file. We can see that the next 'entry' in NI is at 2d, which means that the field we want to edit is only one byte (hence WRITE_BYTE instead of SHORT or LONG).
Khadion NPC mod - Team leader, head designer
Hubelpot NPC mod - Team leader, coder
NPC Damage - Coder
PC Soundsets - Coder, voice actor
Brythe NPC mod - Designer
DragonLance TC - Glory of Istar - Designer
The NPC Interaction Expansion Project - Writer for Cernd, Sarevok
The Jerry Zinger Show - Producer
Iron Modder 5 - Winner
Posted 07 February 2006 - 03:30 PM
- The transitioned former modder once known as MTS.
Posted 07 February 2006 - 03:41 PM
Khadion NPC mod - Team leader, head designer
Hubelpot NPC mod - Team leader, coder
NPC Damage - Coder
PC Soundsets - Coder, voice actor
Brythe NPC mod - Designer
DragonLance TC - Glory of Istar - Designer
The NPC Interaction Expansion Project - Writer for Cernd, Sarevok
The Jerry Zinger Show - Producer
Iron Modder 5 - Winner
Posted 07 February 2006 - 03:44 PM
- The transitioned former modder once known as MTS.
Posted 07 February 2006 - 03:52 PM
Khadion NPC mod - Team leader, head designer
Hubelpot NPC mod - Team leader, coder
NPC Damage - Coder
PC Soundsets - Coder, voice actor
Brythe NPC mod - Designer
DragonLance TC - Glory of Istar - Designer
The NPC Interaction Expansion Project - Writer for Cernd, Sarevok
The Jerry Zinger Show - Producer
Iron Modder 5 - Winner