Jump to content

4144

Core Developers
  • Content Count

    1187
  • Joined

  • Last visited

  • Days Won

    124

Reputation Activity

  1. Upvote
    4144 got a reaction from Tsuuu in OnPCStatCalcEvent Doesn't Work   
    Using this function is bad idea. It may heavy increase latency if you have many active players. Because this it was not added to hercules.
  2. Upvote
    4144 got a reaction from Nuck in Hercules Ultimate Localization Design   
    mesf("A little %s. Who are you?", Sex == SEX_MALE ? "boy" : "girl"); This line better replace to:
     
    if (Sex == SEX_MALE)   mes("A little boy. Who are you?"); else   mes("A little girl. Who are you?");   Because in some languages can be issue because sentence can be different depend on gender.
     
  3. Upvote
    4144 got a reaction from RagnarokOnline2015 in Warning   
    You must set for hercules packet version what you want to use, and rebuild hercules. And use client with same version
  4. Upvote
    4144 got a reaction from ecrow in Developmet Files & Tools   
    servergreps link to outdated revision.
    Always actual link this: https://gitlab.com/evol/evol-tools/tree/master/servergreps/hercules
     
    It compare hercules packets to manaplus (open source client)
    and comapare hercules packets to other servers for each packet version.
    For packets versions before 20150916 used hercules, for newer used ragemu, because sadly for now hercules not support this versions.
  5. Upvote
    4144 got a reaction from Nardoth in click and move cell area max!   
    Bit slower server. Server will use more cpu while calculation walk path
  6. Upvote
    4144 got a reaction from Ridley in point of rAthena   
    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.
  7. Upvote
    4144 got a reaction from Sephus in point of rAthena   
    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.
  8. Upvote
    4144 got a reaction from Legend in point of rAthena   
    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.
  9. Upvote
    4144 got a reaction from evilpuncker in point of rAthena   
    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.
  10. Upvote
    4144 got a reaction from Habilis in Delay not respected   
    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.
  11. Upvote
    4144 got a reaction from MikZ in MaxLvExpGain error map-server   
    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.
     
     
  12. Upvote
    4144 got a reaction from Kubix in Queue BG rewrite   
    Sample plugin here https://github.com/HerculesWS/Hercules/blob/master/src/plugins/sample.c
    In same dir exists some other plugins
  13. Upvote
    4144 got a reaction from 15peaces in Why the emulator is not Object Oriented?   
    Why it not object oriented? It is.
    But it not using C++. Object oriented programming possible not only in C++ but in many other languages.
  14. Upvote
    4144 got a reaction from akbare in error libpcre   
    if you prefer centos, try centos 7 or newer versions.
    Now you using centos 6. It was release in 2011 year.
     
  15. Upvote
    4144 got a reaction from akbare in error libpcre   
    Again, show error from configure.
    Dont run make until configure will not show any errors.
  16. Upvote
    4144 got a reaction from akbare in error libpcre   
    This error mean your system partially broken, look like it can find /bin/sh.
     
    Try open configure with text editor and replace in first line /bin/sh into /bin/bash, then save.
    and try run configure again.
  17. Upvote
    4144 got a reaction from akbare in error libpcre   
    configure show error?
    it show you should fix this error.
  18. Upvote
    4144 got a reaction from MikZ in disable accinfo   
    you editing groups.conf. This is configuration file and not source code.
    This mean dont need run make or configure.
    Need only restart server or run @reloadatcommand
  19. Upvote
    4144 got a reaction from MikZ in disable accinfo   
    need add it to commands but you look like adding it to permissions.
  20. Upvote
    4144 got a reaction from KianIshie in Map crashed on Friendly Poring Quest (Novice Quest)   
    crash soon will be fixed in this pull request https://github.com/HerculesWS/Hercules/pull/1166
  21. Upvote
    4144 got a reaction from AnnieRuru in movespeed mapflag   
    why not create plugin?
     
    In plugin possible all except adding new flag to getmapflag/setmapflag.
     
  22. Upvote
    4144 got a reaction from AnnieRuru in movespeed mapflag   
    @@AnnieRuru plugin can introduce own map flags, but they cant be used in functions getmapflag/setmapflag.
    You can see map flag in this example: https://github.com/dastgir/HPM-Plugins/blob/master/src/plugins/afk.c
    here used map flag "noafk"
  23. Upvote
    4144 got a reaction from minx123 in not exist item and invalid RID   
    Wrong item id can be in any script. in npc dir or in item_db.
    Try search by id what server dumped on console
  24. Upvote
    4144 got a reaction from Hakuryuu in Help...   
    Probably need use pcg->reload(); and not pcg->reload;
  25. Upvote
    4144 got a reaction from OverLord in Costume Item Plugins   
    After last HPM changes, probablty all plugins need some fixes.
    How and what to fix, see sample plugin and compare with own.
×
×
  • Create New...

Important Information

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