Jump to content

4144

Core Developers
  • Content Count

    1189
  • Joined

  • Last visited

  • Days Won

    124

Everything posted by 4144

  1. issue in mob_db.conf or mob_db2.conf, but you show some csv sample.
  2. error said you have some wrong value in field with number probably you messed your mobdb in some line?
  3. you cant change packet size, without updating size in client also. Issue here because constant MAX_QUEST_OBJECTIVES used in server internals and in packet. second error probably because you not compiled char server with changed constant? In other words if change hercules in some way, in server side you can get more objectives, but client this not see extra objectives in all or some cases.
  4. iro files almost always very outdated, but i think good base for translation. As another source can be used euRo files People i think using translation by Asheraf: https://github.com/Asheraf/Translation and translation by zackdreaver https://github.com/zackdreaver/ROenglishRE zackdreaver mostly for rathena and outdated clients and Asheraf's for latest clients.
  5. because you have kro for date 2019-02-25, try use similar client exe date
  6. utf-8 compatible with ansi characters. this mean you can use english letters and numbers in same way in utf-7, utf-8, and many other code pages. In all of them english letters will works fine
  7. utf-7 should not support any languages except english and may be german. if you using utf-8, then your texts must be in utf-8. This mean almost all non english chars should use other bytes. For fix your issue, all your texts must be in same codepage/locale.
  8. If you using not very old client, supported two sex values. One per account and one per char. Account sex probably completely ignored. And command @changesex changing account sex. In hercules look like no atcommand for change char sex. But you can use script function ``changecharsex`` You also can try at command @changecharsex from this pull request https://github.com/HerculesWS/Hercules/pull/2528
  9. this line of code always will trigger skill error if ((sd->job & MAPID_UPPERMASK) != MAPID_TAEKWON || MAPID_STAR_GLADIATOR) { probably change it to this? if ((sd->job & MAPID_UPPERMASK) != MAPID_TAEKWON && (sd->job & MAPID_UPPERMASK) != MAPID_STAR_GLADIATOR) {
  10. Well is iteminfo protected i not checked. it probably may allow change it, because this is non critial file. This game guard checks list of files based on encrypted or compressed list of files. But technically it can not allow edit any file. For ragexe client you can try change file System/iteminfo_true.lub Anyway if at start you get some error, this mean game guard detected wrong file. As alternative way, you can try change extension for your translated file from lub to lua, may be in this way it can works
  11. again. you can change files only for sakray server (for ragexeRE client) and ragexe client protected by game guard Path for iteminfo file for sakray is System/iteminfo_Sak.lub
  12. At first you can do any modifications only on sakray server, but this is not main game. it reset all chars from time to time If you really want to use translation, you can try translations from here https://github.com/Asheraf/Translation It can be bit outdated, but should works with latest sakray client (RagexeRE)
  13. 4144

    Nemo patcher

    hm, read instructions? for example for 2019-07-24aRagexe_zero see here: http://nemo.herc.ws/downloads/2019-07-24aRagexe_zero/#download
  14. your issue is windows. You copy files from windows probably by ftp, and all file permissions was removed. Better way is clone from git on linux. Other fix option is run command chmod +x configure chmod +x config.status and may be same command for other files
  15. it switching encryption on the fly. each some minutes game guard may download new encryption module. This mean if even crack default encryption, after some minutes game guard will use other encryption.
  16. yes kro on main client (ragexe) and on zero using game guard named "cheat defender". It's also encrypt all traffic with map server. Why you need zero packets? Most already in herc... And you also can get encryption keys in herc
  17. then you doing something wrong. Also you can use new clients with id limit up to 2147483648. In config by default it set to 131072
  18. client should support big ids too. if it not, 64k id will not works for client. And will show errors or wrong sprites
  19. 4144

    Nemo patcher

    look like no. but i not tested personally what this patch doing
  20. 4144

    Nemo patcher

    what you mean not working? cant enable it in nemo or it enabled, but pressing key works same as without patch?
  21. 4144

    Nemo patcher

    https://gitlab.com/4144/Nemo/blob/70f27fe5c114f7c7f834f95f6ab0e8decf8dc6af/ChangeLog.md New patches: Increase hair style limit in game (old) - contains old patch for extend hair sprites id for human. Force use icons only from stateiconimginfo.lub by Jchcc. Add patches for hide all other buttons by 4144. Add patches for set hide/show other buttons by 4144. Allow spam skills by hotkey by Functor, 4144. Updates patches: Increase hair style limit in game - now extending hairs for humans and dorams. New translations: Add Thai translation by Kelberwitz Blade's - found packed nemo archive in github. Plugin updates: Show client version always with UTC time zone.
  22. Server may crash with your changes if skill invoked not by player
  23. Your clients is ragexe? For ragexe need copy cdclient.dll from nemo. But rathena using ragexeRE and it dont need cdclient.dll. If you using hercules, you can use any newer clients. Because 2018-06-21 is one year old already.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.