Gwendolyne
Gwendolyne
Reactions
-
Re: General mod Questions thread
If you really want to also patch non regular weapons (such as PLYMSTAR : 0x1C-Hand-to-Hand), then just add this:READ_ASCII 0x22 animation (2) PATCH_IF ((SHORT_AT 0x1c == 0x17) OR ((SHORT_AT 0x1c == 0… (View Post)Post edited by Gwendolyne on1 -
Re: General mod Questions thread
The best way to find flails is: PATCH_IF (SHORT_AT 0x1c == 0x17) BEGIN Maces (you need to check the proficiency, otherwise you also select clubs ;)):READ_BYTE 0x31 item_prof PATCH_IF ((SHORT_AT 0x1c … (View Post)2 -
Re: General mod Questions thread
You don't need the BEGIN END block:STRING_SET ~6875~ @6875 STRING_SET ~18095~ @18095 is enough. (View Post)2 -
Re: -HOW TO DO STUFF IN WEIDU-
function ALTER_ITEM_HEADER ;) (View Post)1 -
Re: Changing item appearance opcodes
The best way is:WRITE_ASCII 0x3a ~INVENTORYICON.BAM~ #8 WRITE_ASCII 0x44 ~GROUNDICON.BAM~ #8 WRITE_ASCII 0x58 ~DESCRIPTIONICON.BAM~ #8 With #8 being the max length of the icons names. Very useful whe… (View Post)1