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 want enable it see docs for example here: https://www.kernel.org/doc/Documentation/networking/ip-sysctl.txt Look for options /proc/sys/net/ipv4/tcp_thin_dupack and /proc/sys/net/ipv4/tcp_thin_linear_timeouts
-
This is not errors. This is only warnings. First warning not supported windows flag on linux. Two left warnings mean in kernel not supported or not enabled special flags for low latency.
-
If you mean buildin variable it should be BaseLevel (without space)
-
Compatibility: Windows 8.1 and Ragnarok
4144 replied to satsugaides's question in General Server Support
Can be issue if "Username" in path have non ascii chars (non english or not numbers)- 15 replies
-
- Ragnarok Crash
- Compatibility
-
(and 3 more)
Tagged with:
-
Unable to set SO_REUSEPORT Help xD
4144 replied to Natandrummer16's question in General Server Support
Ignore it -
Cant make login_sql right after cloning from git
4144 replied to CrossEkta's question in Source Support
not sure what wrong, try from start. autoreconf./configure --disable-ltomake lto disabled, because it broken in some gcc versions -
Ignore this warnings. This warnings show what server cant set some special option on connection socket, but without options it can work too.
-
Warning: size of symbol `ShowWarning` changed from ....
4144 replied to kami-shi's question in Source Support
Try make clean, and then run make again -
I using own client and server compiled with version 2015, and vending works.
-
Max level for all skills limited by level 10. If you want change it, need change server sources. file map/skill.h and line #define MAX_SKILL_LEVEL 10 Here 10 is max level. Sadly impossible to put this limit to configuration, because need rework some internal structures
-
[Help] unable to use SO_REUSEPORT mode.
4144 replied to Cannabis's question in General Server Support
setsockopts warnings you can ignore. -
You can set npc max distance from where it start respond Add at end or your npc script: OnInit: setnpcdistance 3; end;
-
Not sure how you get it, but in screenshot not present folder with name "master". This "folders" is branches, most time all projects using only master branch as main. So you should somhow download only from main branch. Or better lern how use git, need run one command to get sources or click one button. If you using windows, try github client for git.
-
Someone who once bought GPL software have legal right to publish it to public. And anyone have rights to use this published sources.
-
Try this: { Id: 20009 AegisName: "Shady_Gift_Box" Name: "Mr.Shady's Gift Box" Type: 0 Buy: 500 Sell: 50 Weight: 10 KeepAfterUse: true Script: <" if(questprogress(81000) != 2){ dispbottom "You shall not pass"; end; } else { getitem 20005,5; delitem 20009,1; } ">},
-
I try this case SC_FREEZE: sc_def = st->mdef*100; sc_def2 = st->luk*10 + SCDEF_LVL_DIFF(bl, src, 99, 10); tick_def = 0; //No duration reduction tick_def = st->luk>249?0:tick_def; but no sucess. Time of unfreeze continue even. More idea? I gave changed line, this mean need remove old "tick_def = 0; //No duration reduction"
-
try add tick_def = st->luk>249?0:tick_def;
-
Map server crash how to get dump or error log?
4144 replied to Zirius's question in General Server Support
For sanity flags dont need dump. But if need dump after crash, most time it located in /var/crash/ -
Map server crash how to get dump or error log?
4144 replied to Zirius's question in General Server Support
if you have gcc 4.8 or gcc 4.9 or some not very old clang, you can use this: make clean./configure --enable-sanitize --enable-debug=gdb --enable-manager=nomake After server crash it will show information about what happend on screen. You can copy it and show here. -
This look like nvidia drivers issue. Screen size in width in game must be 4x, for example 320x240 is correct resolution, 321x240 is wrong
-
If it still failed, report bug in bug tracker
-
Here also error with login hpm hooking. Probably need update proj file or sln or may be both.
-
For current sources HPMHooking_char is useless, because nothing can be hooked in char server. Ignore this error if dont want char server hooks or wait until Haruna will review and add char server interfaces and other from here https://github.com/HerculesWS/Hercules/pull/388