Jump to content

4144

Core Developers
  • Content Count

    1189
  • Joined

  • Last visited

  • Days Won

    124

Everything posted by 4144

  1. 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
  2. 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.
  3. If you mean buildin variable it should be BaseLevel (without space)
  4. Can be issue if "Username" in path have non ascii chars (non english or not numbers)
  5. not sure what wrong, try from start. autoreconf./configure --disable-ltomake lto disabled, because it broken in some gcc versions
  6. Ignore this warnings. This warnings show what server cant set some special option on connection socket, but without options it can work too.
  7. I using own client and server compiled with version 2015, and vending works.
  8. 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
  9. You can set npc max distance from where it start respond Add at end or your npc script: OnInit: setnpcdistance 3; end;
  10. 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.
  11. 4144

    eAmod?

    Someone who once bought GPL software have legal right to publish it to public. And anyone have rights to use this published sources.
  12. 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; } ">},
  13. 4144

    Luk and freezing

    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"
  14. 4144

    Luk and freezing

    try add tick_def = st->luk>249?0:tick_def;
  15. For sanity flags dont need dump. But if need dump after crash, most time it located in /var/crash/
  16. 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.
  17. This look like nvidia drivers issue. Screen size in width in game must be 4x, for example 320x240 is correct resolution, 321x240 is wrong
  18. If it still failed, report bug in bug tracker
  19. Here also error with login hpm hooking. Probably need update proj file or sln or may be both.
  20. 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
×
×
  • Create New...

Important Information

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