Jump to content

yozzyurubuza

Members
  • Posts

    6
  • Joined

  • Last visited

Profile Information

  • Gender
    Male
  • Location
    Philippines

yozzyurubuza's Achievements

Drops

Drops (2/15)

  • First Post
  • Conversation Starter
  • Reacting Well
  • Dedicated
  • Week One Done

Recent Badges

0

Reputation

1

Community Answers

  1. As of checking for 2022-04-06 client, 4th jobs do not support different @bodystyle, so you're stuck with 1 style (default). You need to utilize changebase to 3rd jobs, then you will be able to switch using @bodystyle 1, but then again in this client version, you can only use 0 and 1 in 3rd jobs. changebase example: changebase roclass(eaclass()|EAJL_THIRD);
  2. Assuming that the wearer will be 2nd transcendent job: changebase roclass(eaclass()|EAJL_THIRD|EAJL_FOURTH) Extended 3rd job and 4th job requires a different code.
  3. Remove the item from GRF: data/itemmoveinfov5.txt Example: Removing Dark Randgris Helm
  4. If someone come across this thread trying to make the suggestion work on a 2023 rAthena codebase, here's how I've made it work: Assuming you've used this diff from secret (some fixing were needed), the suggested fix above to allow costume-converted items to be equipped will go like this: pc.cpp uint8 pc_isequip(map_session_data *sd,int n) { struct item equip; struct item_data *item; nullpo_retr(ITEM_EQUIP_ACK_FAIL, sd); equip = sd->inventory.u.items_inventory[n]; item = sd->inventory_data[n]; if(pc_has_permission(sd, PC_PERM_USE_ALL_EQUIPMENT)) return ITEM_EQUIP_ACK_OK; if(item == NULL) return ITEM_EQUIP_ACK_FAIL; //Automatically allow equip if it's a costume-converted headgear if(equip.card[2] == GetWord(battle_config.reserved_costume_id, 0)) return ITEM_EQUIP_ACK_OK;
  5. I'm getting a soft lock in the `spriterobeid.lub`, once the entry is past 160, even if I have the sprite files, it won't load in the client. Can someone verify this for me if I'm the only one experiencing this issue? I've tried using client 2022-04-06 and 2021-11-03.
×
×
  • Create New...