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...
0 betlogboi Posted April 15, 2021 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 17 Reputation: 1 Joined: 03/13/21 Last Seen: May 10, 2021 Share Posted April 15, 2021 On 12/13/2012 at 6:53 PM, Erba said: 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..^^ [ACCESSORY_IDs.ACCESSORY_C_Nut_Cracker] = "_C_Nut_Cracker" ACCESSORY_C_Nut_Cracker = 2093 most of the item/equip i add is not showing when equipped this issue not showing not just 1 item i think this is the lates ragexe patch tried extract sprites from other ragnarok online client and even on KRO.IRO but no avail still the same, this nut cracker extracted from server that is still up and the sprites are working. Quote Link to comment Share on other sites More sharing options...
0 lelouchxv Posted April 18, 2021 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 120 Reputation: 8 Joined: 09/16/18 Last Seen: May 5, 2023 Share Posted April 18, 2021 @betlogboi try this [ACCESSORY_IDs.ACCESSORY_C_NUT_CRACKER] = "_C_Nut_Cracker" ACCESSORY_C_NUT_CRACKER = 2093 i think this should fix ur problem Quote Link to comment Share on other sites More sharing options...
0 betlogboi Posted April 18, 2021 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 17 Reputation: 1 Joined: 03/13/21 Last Seen: May 10, 2021 Share Posted April 18, 2021 11 hours ago, lelouchxv said: @betlogboi try this [ACCESSORY_IDs.ACCESSORY_C_NUT_CRACKER] = "_C_Nut_Cracker" ACCESSORY_C_NUT_CRACKER = 2093 i think this should fix ur problem thank you sir its fixed now thanks Quote Link to comment Share on other sites More sharing options...
Rime Posted June 30, 2012 Group: Members Topic Count: 6 Topics Per Day: 0.00 Content Count: 16 Reputation: 0 Joined: 05/18/12 Last Seen: July 6, 2015 Share Posted June 30, 2012 Do you have the correct files in the corresponding GRF? Quote Link to comment Share on other sites More sharing options...
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 Author Share Posted June 30, 2012 Yep, all of them are placed correctly. Not sure if I'm doing anything wrong; unless the items are very specific in which Male of Female folder they need to go to. Quote Link to comment Share on other sites More sharing options...
Wafflebutt Posted June 30, 2012 Group: Members Topic Count: 7 Topics Per Day: 0.00 Content Count: 234 Reputation: 19 Joined: 06/15/12 Last Seen: November 28, 2023 Share Posted June 30, 2012 (edited) Maybe you forgot to insert the view id into your itemdb? '2285', 'Apple_Of_Archer', 'Apple of Archer', '5', '20', NULL, '200', NULL, '0', NULL, '0', '4294967294', '7', '2', '256', NULL, '30', '1', '72', 'bonus bDex,3;', NULL, NULL The view id of AoA = 72 You need to do the same with your item but replace the 72 with 1000. Edited June 30, 2012 by Ainna Quote Link to comment Share on other sites More sharing options...
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 Author Share Posted June 30, 2012 That's what I put in itemo'luper. 25000,White Valkyrie Helmet,whitevalk,5,0,,200,,3,,1,2147483647,7,2,256,,0,1,1000,{},{},{} Quote Link to comment Share on other sites More sharing options...
Wafflebutt Posted June 30, 2012 Group: Members Topic Count: 7 Topics Per Day: 0.00 Content Count: 234 Reputation: 19 Joined: 06/15/12 Last Seen: November 28, 2023 Share Posted June 30, 2012 Maybe your client doesn´t support that many view ID´s. Try diffing with more view ids or use a lower one. IDs --833-835 are free Quote Link to comment Share on other sites More sharing options...
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 Author Share Posted June 30, 2012 I diffed the client to have 2500, oh well. I'll try lowering the views. I'll post back after, thanks for your help so far. :> Quote Link to comment Share on other sites More sharing options...
Wafflebutt Posted June 30, 2012 Group: Members Topic Count: 7 Topics Per Day: 0.00 Content Count: 234 Reputation: 19 Joined: 06/15/12 Last Seen: November 28, 2023 Share Posted June 30, 2012 (edited) Hmm are you sure that you have the sprites in the right folders? Headgear Sprite data\sprite\¾Ç¼¼»ç¸®\¿© data\sprite\¾Ç¼¼»ç¸®\³² data\sprite\¾ÆÀÌÅÛ data exture\À¯ÀúÀÎÅÍÆäÀ̽º\item data exture\À¯ÀúÀÎÅÍÆäÀ̽º\collection Edited June 30, 2012 by Ainna Quote Link to comment Share on other sites More sharing options...
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 Author Share Posted June 30, 2012 (edited) Yup. They're all correct. However I think it's the views, do I need to do --xxx - xxx (ex: --800-900) then continue with the next ID as 901 in the LUA files so it knows so skip views; because now, it's sprite erroring, so I think it has to be something with the view IDs. Edited June 30, 2012 by IndieD Quote Link to comment Share on other sites More sharing options...
Wafflebutt Posted June 30, 2012 Group: Members Topic Count: 7 Topics Per Day: 0.00 Content Count: 234 Reputation: 19 Joined: 06/15/12 Last Seen: November 28, 2023 Share Posted June 30, 2012 A screen of the error would be lovely! Quote Link to comment Share on other sites More sharing options...
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 Author Share Posted June 30, 2012 --------------------------- Error --------------------------- Cannot find File : sprite\¾Ç¼¼»ç¸®\³²\³²_½ºÅ¸´õ½ºÆ®Çì¾î¹êµå.act --------------------------- OK --------------------------- Quote Link to comment Share on other sites More sharing options...
Wafflebutt Posted June 30, 2012 Group: Members Topic Count: 7 Topics Per Day: 0.00 Content Count: 234 Reputation: 19 Joined: 06/15/12 Last Seen: November 28, 2023 Share Posted June 30, 2012 Uhm... wierd... Your error is for the Stardust Hairband, wich has the view id 831. Maybe you should get the latest accname and accid luas. http://svn6.assembla.com/svn/ClientSide/Lua_Project/lua%20files/datainfo/ Quote Link to comment Share on other sites More sharing options...
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 Author Share Posted June 30, 2012 (edited) Alright, trying with the new LUAs, will report back. This is currently what I added to the accessoryid. ACCESSORY_AEGIR_HELM = 870,ACCESSORY_MVP_BASKETHAT = 871, ACCESSORY_CRITURA_HAT = 872, ACCESSORY_MAGICAL_BOOSTER = 873, --874-899 ACCESSORY_WHITEVALK = 900, } Still no go, doesn't even show up on my head. Edited June 30, 2012 by IndieD Quote Link to comment Share on other sites More sharing options...
Rikimaru Posted June 30, 2012 Group: Members Topic Count: 16 Topics Per Day: 0.00 Content Count: 658 Reputation: 57 Joined: 11/20/11 Last Seen: July 1, 2017 Share Posted June 30, 2012 Maybe you should compile your LUA's to LUB's , because if you want to skip a few ID's you have to compile your LUA Files to LUB Files. Good Luck. Quote Link to comment Share on other sites More sharing options...
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 Author Share Posted June 30, 2012 Maybe you should compile your LUA's to LUB's , because if you want to skip a few ID's you have to compile your LUA Files to LUB Files. Good Luck. I used http://eathena.ws/wiki/index.php/Custom_Items#View_IDs.2C_Having_A_Custom_Item_Without_Xray and I'm not sure what I'm supposed to do after I make the shortcuts. The only thing that happens is that a cmd box pops out of no where for a quick flash and that's it. Quote Link to comment Share on other sites More sharing options...
Judas Posted June 30, 2012 Group: Members Topic Count: 26 Topics Per Day: 0.01 Content Count: 2244 Reputation: 182 Joined: 11/19/11 Last Seen: September 15, 2024 Share Posted June 30, 2012 what client date are you using? Quote Link to comment Share on other sites More sharing options...
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 Author Share Posted June 30, 2012 (edited) 2011-12-28. I'm using luafiles514 for my LUA. Here are my sprite placements: C:\Users\Eric\Desktop\data\sprite\¾ÆÀÌÅÛ\whitevalk.spr C:\Users\Eric\Desktop\data\sprite\¾ÆÀÌÅÛ\whitevalk.act C:\Users\Eric\Desktop\data\sprite\¾Ç¼¼»ç¸®\³²\³²_whitevalk.act C:\Users\Eric\Desktop\data\sprite\¾Ç¼¼»ç¸®\³²\³²_whitevalk.spr C:\Users\Eric\Desktop\data\sprite\¾Ç¼¼»ç¸®\¿©\¿©_whitevalk.actC:\Users\Eric\Desktop\data\sprite\¾Ç¼¼»ç¸®\¿©\¿©_whitevalk.act Edited June 30, 2012 by IndieD Quote Link to comment Share on other sites More sharing options...
Wafflebutt Posted June 30, 2012 Group: Members Topic Count: 7 Topics Per Day: 0.00 Content Count: 234 Reputation: 19 Joined: 06/15/12 Last Seen: November 28, 2023 Share Posted June 30, 2012 (edited) I used http://eathena.ws/wi...em_Without_Xray and I'm not sure what I'm supposed to do after I make the shortcuts. The only thing that happens is that a cmd box pops out of no where for a quick flash and that's it. Just copy and rename your lua files to lub. The client can read them. Otherwise search for cmd -> copy cmd and paste it into your folder with luac. Execute it with admin rights and enter luacVERSION.exe" -o "accessoryid.lua" "accessoryid.lub" Now you will either get the lub or a error message in cmd. Darn you still have this problem >_< I wanna help but my knowledge is so limited q.q Edited June 30, 2012 by Ainna Quote Link to comment Share on other sites More sharing options...
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 Author Share Posted June 30, 2012 (edited) Still no good. I tried renaming the extensions to LUB manually. I'm not sure what you mean copy the extensions And thanks for your help, you're doing awesome. Sorry for double posting, it finally works. What I did: - Took another server's LUA files and found out there's a simplier tool to use called Compile GUI, and it has a Poporing on it. - Checked over what was wrong, turns out that I the last line before the last item in the LUAs cannot have commas (,), and must be removed. - Then took the Compile GUI and dropped the LUAs in the programs and viola, there popped out LUBs. Now I do have another problem, my palettes are all messed up for Trans jobs. Not sure why this is happening. Sorry for making multiple help topics in the same thread, but I'd rather get these over with before making several threads. The menu for 20111128 still has weird ASCII characters (ETC,ITEM,EQUIP tabs). Edited June 30, 2012 by IndieD Quote Link to comment Share on other sites More sharing options...
ararenja Posted June 30, 2012 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 1 Reputation: 0 Joined: 06/12/12 Last Seen: August 9, 2013 Share Posted June 30, 2012 (edited) as far as i know compiler option, -o is for output so i guess the correct parameter would be luacVER.exe -o "accname.lub" "accname.lua" if you want to know what exactly happen in cmd box open cmd and go to your compilation directory and type luacVER.exe -o accname.lub accname.lua if something wrong it will writen there Edited June 30, 2012 by ararenja Quote Link to comment Share on other sites More sharing options...
IndieD Posted July 1, 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 Author Share Posted July 1, 2012 Please mark this as done, thanks everyone for the help! Quote Link to comment Share on other sites More sharing options...
archilles89 Posted November 11, 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 11, 2012 i am still unable to fix this.. mind sharing the solution? Quote Link to comment Share on other sites More sharing options...
Mootie Posted November 11, 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 11, 2012 i am still unable to fix this.. mind sharing the solution? There tons of guideline for this try to search engine or google is your best friend 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.