Jump to content

mrmagic

Members
  • Posts

    182
  • Joined

  • Days Won

    1

Everything posted by mrmagic

  1. Try updating your graphic driver and Direct 9.0c
  2. Change your text encoding code to 1256 then save.
  3. You can't patch kRO client if you want to play on official kRO server, and newer 2018 clients don't like that change font patch
  4. Only normal player is allowed to use this feature See groups.conf and check "attendance: " privilege
  5. Which folder did you added the sprites? there are 3 folders, first for inventory, second and third are for character sprite based gender. There are also textures that need to be added. for 2010 client, you need to put the accesory lua in this path "\data\lua files\datainfo" NOT "\data\luafiles514\lua files\datainfo"
  6. To fix your char, Open your character database(sql), go to "Char" table, find your character either by name or thing you can remember, then delete data below the column head_top, head_mid and head_bottom But first you need to resolve the client part, either accname.lub or itemInfo
  7. You can do full testing of those classes on kRO, then you give info to rA developers or make pull request. That way it will fully implemented, everyone will be happy and no more question asked.
  8. Read my previous post, i've answer it.
  9. Any older clients, not sure from which one, I presume 2016 and lower, won't be able to load data.grf if it size is larger than 1,99 GB, So either you use newer client like 2018 or slim down your GRF by repacking it with some tools out here like rsudp.
  10. Just my guess check line 3302 in msgstringtable.txt
  11. Same date or not? january and some early february clients still use quest2display. If it the same, then there are probably missing quest entries inside OngoingQuestInfoList
  12. The replay file was created from older client version that reads quest from quest2dislpay.txt, but you tried to open it with newer client that reads quest file from OngoingQuestInfoList if you really need to open the replay file, you need to use older client version which still read quest from quest2dislpay, 2017ish and older should be good.
  13. Either you get the client's source code, which is impossible or switch to 2018-01-24bRagexeRE, which is the last client winxp can run.
  14. @Tyrfing These resources are from other official RO, they aren't presents in kRO grf. @Nozomi Then, it is a server side problem. Open your item_db, txt or sql, depends what you uses, then change item view id of 5979 to 0. to fix your character, open your sql db, then change its bottom view id to 0 Well, if someone cares, please report or make a pull request for this issue to rA github.
  15. Check client resources link from here, and add it to your grf https://rathena.org/board/topic/102689-ragnarok-english-translation-project/
  16. There are 2 kind of clients that are supported: 1. Ragexe.exe = Client used by MAIN server of korean ragnarok online, mostly stable. 2. RagexeRE.xe= Client used by SAKRAY aka TEST server of ragnarok online, many new features are tested, expect some bugs. The first client used by emulator is Sakexe.exe (An older version of RagexeRE.exe), then it changed to RagexeRE.exe around 2009, few years later(2013) developer made decision to use Ragexe.exe instead for the sake of stable development. But, in mid 2015, they changed it again to RagexeRE.exe, because of some issues when unpacking Ragexe.exe. 2015-11-04aRagexe is the latest stable client.
  17. Closes I have. 2008_01_22aSakexe.7z
  18. They were removed by kRO years ago, maybe the last client that uses it was 2012ish
  19. Have tried using search function or GOOGLE?
  20. People easily get hyped over a new thing. See all threads about those clients, every threads asking for help and support. Just stick with 2015-11-04aRagexe.
  21. You need to run old clients that doesn't requires above requirements, which I assume 2008ish and below, you said retro right? Not sure about the server side though, maybe you'll need eathena instead of rA. iirc the oldest windows version that can run rA is winXP. https://github.com/eathena/eathena for the client you can ask some people here, or google it yourself.
  22. @InnosTM iirc, you need client that support rebellion's level 175 aura, which I believe in mid 2016 or so. Just test 2016-02-05aRagexeRE, if this client support that aura.
  23. Run just fine for me,check your setup you might forget something
  24. like sader said, use 2015-11-04aRagexe , because it's main server's exe not sakray
  25. try this function main() for ItemID, DESC in pairs(tbl) do result, msg = AddItem(ItemID, DESC.unidentifiedDisplayName, DESC.unidentifiedResourceName, DESC.identifiedDisplayName, DESC.identifiedResourceName, DESC.slotCount, DESC.ClassNum, DESC.costume) if not result == true then return false, msg end for k, v in pairs(DESC.unidentifiedDescriptionName) do result, msg = AddItemUnidentifiedDesc(ItemID, v) if not result == true then return false, msg end end for k, v in pairs(DESC.identifiedDescriptionName) do result, msg = AddItemIdentifiedDesc(ItemID, v) if not result == true then return false, msg end end k = DESC.costume k = DESC.unidentifiedResourceName v = DESC.identifiedDisplayName end return true, "good" end
×
×
  • Create New...