4144
Core Developers-
Content Count
1189 -
Joined
-
Last visited
-
Days Won
124
Content Type
Profiles
Forums
Downloads
Staff Applications
Calendar
Everything posted by 4144
-
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:
-
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.
-
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.
-
It need 22 columns. If you have more or less, it may not works
-
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
-
You must build your server. I gave you command to build it
-
Build all what present in hercules, by running command: make
-
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.
-
Can you try step 11 from this instruction? I think it should failed for you
-
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?
-
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
-
@@4144 But "gcc --version" returns 6.1. What should I do, then? Can you show output from: gcc --version? I mean show all strings
-
From log you using: gcc version 4.4.7 20120313
-
And what gcc you have now?
-
Try update gcc, because it too old
-
Probably you have broken files. Show first errors and not last. Also show output from commands: git diff git status gcc --version
-
Try run make clean ./configure make
-
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.
-
better replace mysql-server to mariadb-server
-
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.
-
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
-
This issue probably because you have very old operating system, or messed headers from different versions.
-
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.
-
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