Costume Item

Söel

New member
Messages
74
Points
0
Age
36
Emulator
rAthena
Client Version
2020-04-01bRagexe
I'm trying to create a custom cloak, however the image of the item does not appear ...

{ Id: 23003 AegisName: "[Visual]_Asas_de_Borboleta_Azul" Name: "[Visual] Asas de Borboleta Azul" Type: 5 Buy: 10 Weight: 1 Def: 2 Slots: 2 Job: 0xFFFFFFFF Upper: 7 Gender: 2 Loc: 8192 EquipLv: 1 Refine: 1 View: 1638 Trade: { nodrop: true noselltonpc: true nomail: true } Script: <" bonus bUnbreakableHelm,0; ">},

Code:
(2^0)        1 = Lower headgear(2^1)        2 = Right hand(2^2)        4 = Mantle(2^3)        8 = Accessory 1(2^4)       16 = Armor(2^5)       32 = Left hand(2^6)       64 = Shoes(2^7)      128 = Accessory 2(2^8)      256 = Upper headgear(2^9)      512 = Middle headgear(2^10)    1024 = Costume Top Headgear(2^11)    2048 = Costume Mid Headgear(2^12)    4096 = Costume Low Headgear(2^13)    8192 = Costume Garment/Robe(2^15)   32768 = Arrow (arrow-type items only)(2^16)   65536 = Shadow Armor(2^17)  131072 = Shadow Weapon(2^18)  262144 = Shadow Shield(2^19)  524288 = Shadow Shoes(2^20) 1048576 = Shadow Accessory 2(2^21) 2097152 = Shadow Accessory 1
screenYang035.jpgscreenYang036.jpg

 
Last edited by a moderator:
garments/robes are handled in a different way by the client if I recall correctly, loot those official gravity angel wings and you will see that they have lots of .spr/.act files for each class, so I guess you need to do the same

 
Thanks, I'll check that.

 
Change Loc: 8192 to Loc: 004 for cloak.

For armor: Loc: 16

For Boots: Loc: 064

For Shield: Loc: 032

For Belts: Loc: 136

And you must check if the names are correct in itemInfo, item_db2, accname, accessoryid, collection and item.

 
Last edited by a moderator:
Back
Top