I was messing with palette and noticed that the costume ones have different palettes path and since I'm using the shared palette diff, it doesn't support it. So I remembered that we have the:
wedding_ignorepalette etc etc settings, but we don't have one for body styles (costumes), I even tried to edit the clif_changelook function but no success (I always try to solve things before creating a topic 😁) , here is what I did:
case LOOK_CLOTHES_COLOR:if(val && sd != NULL){if((sd->sc.option & OPTION_WEDDING)!=0&& battle_config.wedding_ignorepalette ==true)
val =0;if((sd->sc.option & OPTION_XMAS)!=0&& battle_config.xmas_ignorepalette ==true)
val =0;if((sd->sc.option & OPTION_SUMMER)!=0&& battle_config.summer_ignorepalette ==true)
val =0;if((sd->sc.option & OPTION_HANBOK)!=0&& battle_config.hanbok_ignorepalette ==true)
val =0;if((sd->sc.option & OPTION_OKTOBERFEST)!=0&& battle_config.oktoberfest_ignorepalette ==true)
val =0;if((sd->sc.option & OPTION_SUMMER2)!=0&& battle_config.summer2_ignorepalette ==true)
val =0;if(vd->body_style !=0)// this is what I added, but still gravity error
val =0;}
vd->body_style =0;// yes I even tried to reset body style to zero when changing colors but it still give palette error
vd->cloth_color = val;break;
How do I get an error:
- get any 3rd class
- change cloth color to anything (I'm using the 500+ something pack that has been around for years)
- change body style to anything higher than 0 (either by @bodystyle command or stylist npc)
- palette error and gravity
How do I get an error (number 2):
- get any 3rd class
- change body style to anything higher than 0 (either by @bodystyle command or stylist npc)
- change cloth color to anything (I'm using the 500+ something pack that has been around for years)
- palette error and gravity
(I'm avoiding to use the Ignore missing palette diff because reasons)
I was messing with palette and noticed that the costume ones have different palettes path and since I'm using the shared palette diff, it doesn't support it. So I remembered that we have the:
wedding_ignorepalette etc etc settings, but we don't have one for body styles (costumes), I even tried to edit the clif_changelook function but no success (I always try to solve things before creating a topic 😁) , here is what I did:
How do I get an error:
- get any 3rd class
- change cloth color to anything (I'm using the 500+ something pack that has been around for years)
- change body style to anything higher than 0 (either by @bodystyle command or stylist npc)
- palette error and gravity
How do I get an error (number 2):
- get any 3rd class
- change body style to anything higher than 0 (either by @bodystyle command or stylist npc)
- change cloth color to anything (I'm using the 500+ something pack that has been around for years)
- palette error and gravity
(I'm avoiding to use the Ignore missing palette diff because reasons)
Edited by evilpunckerShare this post
Link to post
Share on other sites