Jump to content
  • 0

Sprite error before char selection.


Noel Gallagher

Question


  • Group:  Members
  • Topic Count:  34
  • Topics Per Day:  0.01
  • Content Count:  150
  • Reputation:   2
  • Joined:  11/19/11
  • Last Seen:  

rataaaaaaaaaaaaa2.jpgrataaaaaaaaaaaaa.png Edited by Sunny Day
Link to comment
Share on other sites

14 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  53
  • Topics Per Day:  0.01
  • Content Count:  291
  • Reputation:   4
  • Joined:  04/24/12
  • Last Seen:  

as said to your screenies. it means you dont have that file... you dont have any item in that sprite name..

Edited by v00m3r
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  65
  • Reputation:   5
  • Joined:  06/17/12
  • Last Seen:  

reset your equipment and relog /no1

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  87
  • Reputation:   13
  • Joined:  02/15/12
  • Last Seen:  

It actually means that the item you have equipped is not defined on your lua files. If he / she didn't have the item sprite / files, it would show more than just ' ³².spr '.

How to fix:

1. Open the database for example with "Mysql Workbench". Look for the character which you used last before the error

2. Write down the ID of 'head_top' 'head_mid' and 'head_bottom'

3. Navigate your 'lua files' folder (newer clients have 'luafiles514' and then 'lua files')

4. Navigate to the 'datainfo' folder

5. Open the file 'accessoryid.lua' (if it's only 'accessoryid.lub' and the code inside is unreadable, you need to download the decompiled file first)

6. You will see many names and numbers like this here:

ACCESSORY_FROGHAT_T = 826,
ACCESSORY_PUPPY_EAR_HAT = 827,
ACCESSORY_TEAR = 828,
ACCESSORY_CARROT_MOUTH = 829,
ACCESSORY_FANCY_HIGHCAP = 830,
ACCESSORY_STAR_DUST_HAIRBAND = 831,
ACCESSORY_2011_RMSC = 832,
--833-835 free
ACCESSORY_RUDOLPH_HEADBAND = 836,
ACCESSORY_MIC_HAT = 837,
ACCESSORY_SLEEPINGCAT_HAT = 838,
ACCESSORY_TW_REDBANDANA = 839,
ACCESSORY_PHOENIX_HELMET = 840,
ACCESSORY_ORANGE_HAT = 841,

7. Search for the ID noted down in step 2. They are most likely missing and you won't find them.

8. If they are missing..download this file here -> http://svn6.assembla...accessoryid.lua (it's one of the newest file containing the headgear IDs)

9. Search for the ID noted down in step 2 inside this file. If you find it, copy the line from that file and paste it at the same position in your own file.

10. If you don't find the said ID, you most likely have a problem with a custom item and forgot to specify it. In this case i would like to direct you to this guide -> http://rathena.org/wiki/Custom_Items

11. If the entry is existing in the 'new' file, you can save it and then add it to your client.

12. Now you need to do some work on another file 'accname.lua', same thing like in step 8, if it's a .lub file you need to download the decompiled one. -->http://svn6.assembla...nfo/accname.lua

13. Again you will see many lines inside, as well as "gibberish stuff" like:

[ACCESSORY_IDs.ACCESSORY_STAR_DUST] = "_½ºÅ¸´õ½ºÆ®",
[ACCESSORY_IDs.ACCESSORY_EYE_MASK] = "_´«°¡¸®°³",
[ACCESSORY_IDs.ACCESSORY_BINOCULARS] = "_¸Á¿ø°æ",
[ACCESSORY_IDs.ACCESSORY_GOBLIN_MASQUE] = "_°íºí¸°Á·°¡¸é",
[ACCESSORY_IDs.ACCESSORY_GREEN_FEELER] = "_ÃÊ·Ï´õµëÀÌ",
[ACCESSORY_IDs.ACCESSORY_VIKING_HELMET] = "_¿ÀÅ©Á·Ç︧",
[ACCESSORY_IDs.ACCESSORY_HEAD_SET] = "_ÇìµåÆù",
[ACCESSORY_IDs.ACCESSORY_GEMMED_CROWN] = "_Áê¾óÅ©¶ó¿î",
[ACCESSORY_IDs.ACCESSORY_PIERROT_CROWN] = "_±¤´ë¸ðÀÚ",

14. The first file you specified your new headgear in contained that particular string, for example

ACCESSORY_PIERROT_CROWN

15. Search inside the newly downloaded file for the string of your newly added ID

16. Copy the whole line and add it OVER the last entry if an item, in my case it would be here:

[ACCESSORY_IDs.ACCESSORY_AURAQUARTZ_CROWN] = "_¿À·¯ÄõÃ÷ÀÇ¿Õ°ü",
[ACCESSORY_IDs.ACCESSORY_RABBIT_KNITHAT] = "_Åä³¢±Í´ÏÆ®¸ðÀÚ",
--add here
[ACCESSORY_IDs.ACCESSORY_SKYMET] = "_½ºÄ«À̸ä"

17. Save the file again and patch it into your client.

18. Start the client and the error should be gone.

*19. If the error still persists, i suggest you to update your kro + kro renewal.

Hope this helps you a bit. Happy clienting ^^

Edited by shadowseph
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  6
  • Topics Per Day:  0.00
  • Content Count:  13
  • Reputation:   0
  • Joined:  08/08/12
  • Last Seen:  

Edited

Edited by Morigansan
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  34
  • Topics Per Day:  0.01
  • Content Count:  150
  • Reputation:   2
  • Joined:  11/19/11
  • Last Seen:  

I reset the equipment in control panel and i think my client can't read my grf. i just need to put my clientinfo.xml in data folder to connect from my server.

I diffed my client with enable multiple grf. and even i uncheck the read the data folder first nothing happend. the client i used is 2010-06-16.

Edited by Sunny Day
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  87
  • Reputation:   13
  • Joined:  02/15/12
  • Last Seen:  

Not sure about clients of that age, i can only assist you with newer clients.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  17
  • Topics Per Day:  0.00
  • Content Count:  754
  • Reputation:   186
  • Joined:  05/22/12
  • Last Seen:  

let us recheck the basic requirements of the client to run..

Can you post your data.ini and clientinfo.xml?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  34
  • Topics Per Day:  0.01
  • Content Count:  150
  • Reputation:   2
  • Joined:  11/19/11
  • Last Seen:  

@clydelion

Here

<?xml version="1.0" encoding="euc-kr" ?>

<clientinfo>

<servicetype>korea</servicetype>

<servertype>sakray</servertype>

<connection>

<display>My Ragnarok Online</display>

<balloon></balloon>

<desc></desc>

<address>Ip address of my server</address>

<port>6900</port>

<version>25</version>

<langtype>1</langtype>

<registrationweb></registrationweb>

<aid>

<admin>2000000</admin>

<admin>2000001</admin>

<admin>2000003</admin>

<admin>2000004</admin>

<admin>2000005</admin>

<admin>2000006</admin>

<admin>2000007</admin>

<admin>2000008</admin>

</aid>

<loading>

<image>loadingscreen01.jpg</image>

</loading>

</connection>

</clientinfo>

[Data]

0=hdata.grf

1=customgrf.grf

2=data.grf

hdata.grf from harmony.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  17
  • Topics Per Day:  0.00
  • Content Count:  754
  • Reputation:   186
  • Joined:  05/22/12
  • Last Seen:  

verify that those GRFs are there and try rediffing your EXE.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  34
  • Topics Per Day:  0.01
  • Content Count:  150
  • Reputation:   2
  • Joined:  11/19/11
  • Last Seen:  

I re-diffed my exe but nothing happened again :o

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  17
  • Topics Per Day:  0.00
  • Content Count:  754
  • Reputation:   186
  • Joined:  05/22/12
  • Last Seen:  

[Data]

0=hdata.grf

1=customgrf.grf

2=data.grf

where's rdata.grf? You should add it there.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  34
  • Topics Per Day:  0.01
  • Content Count:  150
  • Reputation:   2
  • Joined:  11/19/11
  • Last Seen:  

[Data]

0=hdata.grf

1=customgrf.grf

2=data.grf

where's rdata.grf? You should add it there.

i add rdata but same result.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  17
  • Topics Per Day:  0.00
  • Content Count:  754
  • Reputation:   186
  • Joined:  05/22/12
  • Last Seen:  

Hmm. Not sure why..

make sure your data.ini is like this

[Data]

0=hdata.grf

1=customgrf.grf

2=data.grf

3=rdata.grf

and make sure that rdata.grf is present in the RO folder

If it is not yet working, maybe we can teamview

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  34
  • Topics Per Day:  0.01
  • Content Count:  150
  • Reputation:   2
  • Joined:  11/19/11
  • Last Seen:  

@clydelion The problem is in my harmony files.. Sorry >.<

Edited by Sunny Day
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...