Jump to content

4144

Core Developers
  • Content Count

    1189
  • Joined

  • Last visited

  • Days Won

    124

Everything posted by 4144

  1. If you changed any of Makefile.in or have non standard system, compiler, whatever, you should run at first: and only after if configure not failed, run: make If configure failed, before need run:
  2. Not sure how good or bad ragnarok features implimented in hercules or rathena. But hercules allow plugins. For now plugins may change/replace almost anything. Dont need any line of code change in hercules. This is was main feature for me. I implimenting completly oher game engine based on hercules, and i using only plugins. This is simply impossible with any other ragnarok emulators.
  3. Yes lock server thread is bad idea. If you want global delay for any player, simply add static variable in your .c file, and store last time to it. On each @emo invoke check time from this var and allow or not depend how often this command was used.
  4. It need 22 columns. If you have more or less, it may not works
  5. From what i can undestand form this script. It want 22 columns in text db. It accept input file from stdin. And output converted file into stdout You can run it like this: ./item_db.pl <item_db.txt >item_db.sql
  6. You must build your server. I gave you command to build it
  7. Build all what present in hercules, by running command: make
  8. Issue in one of plugins. Please build hercules with debug information. make clean ./configure --enable-debug make because look like you disabled debug info with special key or have very old hercules. After rebuild show error again and may be some one, who know this plugin can fix it.
  9. Can you try step 11 from this instruction? I think it should failed for you
  10. It said what it cant build even internal tests with your gcc. Probably some thing wrong installed How you install gcc 6? make and after make install? without any flags?
  11. You sure you running compilation and gcc 6 in same server? Because in your different output i see different users. And yes gcc 6 works, if it compiled in correct way
  12. @@4144 But "gcc --version" returns 6.1. What should I do, then? Can you show output from: gcc --version? I mean show all strings
  13. From log you using: gcc version 4.4.7 20120313
  14. And what gcc you have now?
  15. Try update gcc, because it too old
  16. Probably you have broken files. Show first errors and not last. Also show output from commands: git diff git status gcc --version
  17. Try run make clean ./configure make
  18. apache2, phpmyadmin, screen unneeded for running server. apache2 need for run web server, game server can works without it phpmyadmin web interface to mysql/mariadb. Access to db can be from command line. For phpmyadmin need apache or other web server screen terminal multiplexer. It good for run game server in screen and disconnect from shell. Can be replaced to other, for example tmux. automake and autoconf need for update configure. Simple compilation can works without it, but better have it, For run autoreconf need both this packages.
  19. better replace mysql-server to mariadb-server
  20. 4144

    source problem

    Crash look like not related to this asserts. This asserts mean what in your scripts present command bonus, with wrong constant. And it works like bonus 0, something. Look like you have equpped item with this wrong script. Crash probably happend by other reason, but first better fix bonus script.
  21. Cloudflare is http/https back proxy. You cant use some thing not http related on same domain. But you can use one domain with cloudflare for site and another domain without cloudflare protection for game server. Both domains can be in same ip
  22. This issue probably because you have very old operating system, or messed headers from different versions.
  23. 4144

    Failed assertion

    This assertion mean in some script you have not implimented constant. And it works like 0 First parameter in bonus2 call is wrong constant. You should fix it atleast because some your scripts not working because this.
  24. some one corrupted sources by windows editor. Need convert windows end of lines to unix/linux end of lines. And probably add executable bit to configure if it missing
×
×
  • Create New...

Important Information

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