Jump to content
  • 0

Custom Items not Showing Sprites on Equip.


IndieD

Question


  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  50
  • Reputation:   1
  • Joined:  06/13/12
  • Last Seen:  

zo7wuv.png

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.

--738

ACCESSORY_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 by IndieD
Link to comment
Share on other sites

Recommended Posts


  • Group:  Members
  • Topic Count:  105
  • Topics Per Day:  0.02
  • Content Count:  390
  • Reputation:   27
  • Joined:  07/12/12
  • Last Seen:  

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.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.00
  • Content Count:  72
  • Reputation:   0
  • Joined:  10/28/12
  • Last Seen:  

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

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  43
  • Topics Per Day:  0.01
  • Content Count:  815
  • Reputation:   86
  • Joined:  10/26/12
  • Last Seen:  

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

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  84
  • Topics Per Day:  0.02
  • Content Count:  550
  • Reputation:   9
  • Joined:  11/06/12
  • Last Seen:  

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:

zo7wuv.png

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..^^

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.00
  • Content Count:  18
  • Reputation:   0
  • Joined:  01/16/13
  • Last Seen:  

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.

post-14168-0-09799500-1359040521_thumb.png

Edited by dragonashock
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...