Jump to content

anacondaq

Members
  • Posts

    1096
  • Joined

  • Days Won

    40

Everything posted by anacondaq

  1. yes, but I'm busy right now, and can't do it yet. But I will.
  2. Nice maps, since 2009 for sure, as always.
  3. A lot changed, really a lot since eathena times. Check my description for 5 minutes spending to see what is going on now by yourself.
  4. Also, there can be an issue with VSCode (as far as I see you're using VSCode). By default, they work only with UTF-8 Like or will open cp1252 (depends on your system). So, ideally if you will open any LUA files with next encoding: EUC-KR to make sure that everything will be good.
  5. For avoiding problems, use always korean as main language everywhere.
  6. yes, it is. This is broken twice encoding: Use next Your text must be always korean, not broken cp1252 encoding into EUR-KR, or mixes of cp1251, cp1251, euk-r, utf8, etc.
  7. You can't revert back it. Just re-download again full game client which is attached to the package by links in the first post.
  8. I don't know. Nobody knows except you. Try maybe repair your tables.
  9. 1. Your clientinfo.xml config should have next: <servicetype>korea</servicetype> <langtype>0</langtype> 2. Now, you need to configure MySQL server (or MariaDB, or whatever you have) Options what is interesting for you is next: [client] default-character-set = utf8mb4 [mysql] default-character-set = utf8mb4 [mysqld] character_set_server=utf8mb4 collation_server=utf8mb4_unicode_ci 3. Now, create a new database after applying these settings. Will be created a database, with correct encoding (as far as I remember utf8mb4 support Korean characters pretty well). 4. Now, import your SQL files there, like you always do. (main.sql, logs.sql, etc) 5. Now, open your inter_athena.conf and find next option and make them hardcoded info what charset to use: // You can specify the codepage to use in your MySQL tables here. // (Note that this feature requires MySQL 4.1+) default_codepage: utf8mb4 At this point everything will be okay, but depends on a lot of differences between a lot of charsets default in different regional operation system with national languages, charsets of the windows can be different, 1252, 1251, etc. 6. You can manually force a client to use utf8 For that, you need to download dininput.dll & ini file: DOWNLOAD DININPUT or ALTERNATIVE LINK if the previous one will die. 7. And now run your client and play. Everything should be good.
  10. This is known issue with these clients. As far as I know, the problem has been fixed in one of the diffs from NEMO https://gitlab.com/4144/Nemo Try to download the latest version from his git repo above, and apply diffs again, might help, But I'm not sure.
  11. If you have errors, there is no simple solution how to avoid these errors and fix them from command line from MSBuild Tools. That mean you will be forced to use Visual Studio 2017 Community.
  12. Right click on solution, -> Retarget Solution -> Okay. Please use Visual Studio 2017 (and select C++ in the installer), do not use buildtools if you do not know what is that.
  13. Something really strange and really cool at the same time for me. Good job.
  14. after each case: usage you must add "break;" command to terminate switching. mes "Leveling Quests"; mes "Placeholder."; next; switch(select("120-140 :141-150 :151-160 :161-175 ")) { case 1: warp ("vis_h01",114,118); break; case 2: warp ("1@md_pay",22,38); break; case 3: warp ("1@slw",114,59); break; case 4: warp ("x_prt",70,122); break; }
  15. https://stackoverflow.com/questions/3095901/difference-between-build-solution-rebuild-solution-and-clean-solution-in-visua
  16. KVM is VPS, it's virtualization. Virtual Dedicated Server (or VDS) it's how they call it, but the sense of it hot changed, it still VPS. Yes, it is an economic hosting for your request. Usually, it's cost ~3x more. (Around 70-80$ for trash VPS), and I don't talk about real dedi servers. South America also has very poor network route inside continent, almost all connected to very cheap and trash Tier1 providers which can route your traffic from BR to Chile for example through Europe, and not directly. It's not an EU / US hosting which cost in 10x times less and has much better performance, and nicer features/price than outside US/EU. Say thx to a monopoly on foreign markets.
  17. South American hosts. TX, Dallas Or Chile (but it will be pricey) For example, you can try this one reputable provider: https://www.edis.at/en/server/kvm-vps/chile/ I have used them some time ago, they are a pretty nice provider.
  18. 5 years of this wrong guide posted here, and no one corrects the OP about issues, that it will never work properly. Sorry, but this guide absolutely incorrect at all! 1. https://git-scm.com/docs/git-svn there is a tool called git svn, the tool specially designed for moving from old not popular anymore and very ineffective SVN to git. All that needs to do is: 2. Git SVNCLONE <URL> git svn clone https://github.com/rathena/rathena/blob/master/ or git svn clone http://<your_svn_repository_link> It will convert almost ALL commits from SVN since r1 up to the latest revision and will save it in a good format to GIT with saving ALL changes made since the beginning of SVN, with commits, with authors, with changes, etc, without any merge issues whatever. All that is required: is working svn server. The process will take a while (because there is already ~17k commits) each commit need to convert (the git svn tool will do it by itself).
  19. git clean -fd && git reset --hard or git commit -m "some description" and try again.
  20. No no no, it's your content and you can do whatever you wish to do. I just asked, because did not saw that you planning to sell it. Do not worry please, sell it if you wish to, or share light version if you wish, or do nothing if you wont to do anything ? Thx for the answer.
  21. Will you share this?
  22. I don't understand what do you mean? Which older version? And why "current" version is bad?
  23. How are you see a precompiled static headers in a dynamically developed project with around ~200k source code lines, which every single day changed several times per day? Also, compilation never was an issue on VPS/Dedi servers. Never ever. It takes up to a few minutes maximum (first compilation), and few seconds or less if done just small source edit. If it took a longer time for you - try to change your VPS/Dedi server provider because they for sure oversell their CPU.
×
×
  • Create New...