IndieD Posted June 30, 2012 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 50 Reputation: 1 Joined: 06/13/12 Last Seen: November 1, 2015 Share Posted June 30, 2012 (edited) Whenever I add a custom headgear, it never shows up. I've followed Judas's guide and re-read over it a couple times. This is the 2nd item I've tried to add. Here are my LUA codes. --738ACCESSORY_ANCIENT_GOLD_ADORNMENT = 739, ACCESSORY_LUCKY_HAT = 740, ACCESSORY_WHITEVALK = 1000, [ACCESSORY_IDs.ACCESSORY_ANCIENT_GOLD_ADORNMENT] = "_°í´ëÀDZÝÀå½Ä",[ACCESSORY_IDs.ACCESSORY_LUCKY_HAT] = "_Çà¿îÀǸðÀÚ", [ACCESSORY_IDs.ACCESSORY_WHITEVALK] = "_WHITEVALK", } Edited June 30, 2012 by IndieD Quote Link to comment Share on other sites More sharing options...
stydianx Posted November 11, 2012 Group: Members Topic Count: 105 Topics Per Day: 0.02 Content Count: 390 Reputation: 27 Joined: 07/12/12 Last Seen: October 24, 2022 Share Posted November 11, 2012 im getting the same error.. only for wings.. my wings are using head gear views (costume lower headgear) the view ID is correct.. the male and female view is also correct, i believe the drop sprite is also correct, same goes to the "item" and "collection". but when im in-game, whenever i click the item to equip it, the entire game crasher and sends out an error. i didn't skip any lines in the "accessoryID", i followed the guidelines in wiki, so i don't know what is wrong.. my client date is 2011-03-15 and im using the latest lua files. Quote Link to comment Share on other sites More sharing options...
archilles89 Posted November 12, 2012 Group: Members Topic Count: 16 Topics Per Day: 0.00 Content Count: 72 Reputation: 0 Joined: 10/28/12 Last Seen: December 1, 2017 Share Posted November 12, 2012 There tons of guideline for this try to search engine or google is your best friend Yes but it doesn't seemed to be working for some people including me. We've all followed every guide, wiki, every solution we found and it doesn't seem to work Quote Link to comment Share on other sites More sharing options...
Mootie Posted November 12, 2012 Group: Members Topic Count: 43 Topics Per Day: 0.01 Content Count: 815 Reputation: 86 Joined: 10/26/12 Last Seen: June 10, 2022 Share Posted November 12, 2012 Its because sometimes it has been complicated on the client sides unlike the xray's i have this problem last time and i solved it on my own but ill tell what i did since you guys already know about spr andt act put in correct folder so if you are using 2012+ luafiles514 and then get a clean data from HERE after done doing that way go and install latest KRO & Renewal patch them up then go to your .lua files and get this latest version Download it here after downloading this put in the folder where ur .lua's you have to seperate every lua that you want to convert to .lub and then get notepad++ and open it put this code in notepad++ @echo off for /f "usebackq tokens=*" %%a in (`dir /b/s/a:d`) do ( for %%l in (%%~nxa\*.lua) do ( luac5.1.4 -o %%~nxa\%%~nl.lub %%l ) ) for %%l in (*.lua) do ( luac5.1.4 -o %%~nl.lub %%l ) pause then save it as .batch or a.k.a .bat after that open the .bat and the accessoryid.lua and accname.lua will convert in latest .lub's thats all what i did to work my custom items so i hope this will help Quote Link to comment Share on other sites More sharing options...
Erba Posted December 9, 2012 Group: Members Topic Count: 84 Topics Per Day: 0.02 Content Count: 550 Reputation: 9 Joined: 11/06/12 Last Seen: August 14, 2014 Share Posted December 9, 2012 On 7/1/2012 at 2:00 PM, IndieD said: Please mark this as done, thanks everyone for the help! hello! can you share me what have you done to fix it? im having same problem with you On 6/30/2012 at 12:58 PM, IndieD said: Quote --738 ACCESSORY_ANCIENT_GOLD_ADORNMENT = 739, ACCESSORY_LUCKY_HAT = 740, ACCESSORY_WHITEVALK = 1000, Quote [ACCESSORY_IDs.ACCESSORY_ANCIENT_GOLD_ADORNMENT] = "_°í´ëÀDZÝÀå½Ä", [ACCESSORY_IDs.ACCESSORY_LUCKY_HAT] = "_Çà¿îÀǸðÀÚ", [ACCESSORY_IDs.ACCESSORY_WHITEVALK] = "_WHITEVALK", } i know whats the problem here... remove the comma "," in the last of your data in accessoryid.lua and accname.lua.. it should look like this [ACCESSORY_IDs.ACCESSORY_ANCIENT_GOLD_ADORNMENT] = "_°í´ëÀDZÝÀå½Ä", [ACCESSORY_IDs.ACCESSORY_LUCKY_HAT] = "_Çà¿îÀǸðÀÚ", [ACCESSORY_IDs.ACCESSORY_WHITEVALK] = "_WHITEVALK" } same as through in youre accessoryid.lua.. ACCESSORY_ANCIENT_GOLD_ADORNMENT = 739, ACCESSORY_LUCKY_HAT = 740, ACCESSORY_WHITEVALK = 1000 } OOOOps.. [mark done] i thought still a prob..^^ Quote Link to comment Share on other sites More sharing options...
dragonashock Posted January 24, 2013 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 18 Reputation: 0 Joined: 01/16/13 Last Seen: February 5, 2024 Share Posted January 24, 2013 (edited) any idea on how to solve this sprite issue ? Please reply and post the method if the problem is solved. hi Iam facing same problem. Iam getting error "Could not find the sprite." Please help me on this. Edited January 24, 2013 by dragonashock Quote Link to comment Share on other sites More sharing options...
Question
IndieD
Whenever I add a custom headgear, it never shows up.
I've followed Judas's guide and re-read over it a couple times.
This is the 2nd item I've tried to add.
Here are my LUA codes.
Edited by IndieDLink to comment
Share on other sites
30 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.