Jump to content

4144

Core Developers
  • Content Count

    1190
  • Joined

  • Last visited

  • Days Won

    125

Everything posted by 4144

  1. You can avoid this if not attach OnXXX events to player.
  2. Start talking with any npc. And you got hit by some one, new script will be called. Now you have two scripts running. But really can works only one script at time. This mean probably npc script will be terminated.
  3. OnPCGetHit and OnPCHit will conflict with current executed script. OnPCUseItem should works fine.
  4. Not sure about all difference, but here some: Plugins and plugins oriented functions. This mean most or all functions can be small and do some small thing. Hercules also used in some open source games, because plugins can change it, Most configuration files here in libconfig format. Packet definition in other format. Server can be compiled for one packet version at time. Hercules mostly follow kRo features and not any other like iRo. Code only C, without C++. Not sure what to say more. I not very familar with rAthena.
  5. New clients not added because need some testing. Packets exists for almost all clients, but actual clients what can even run after patching not too many.
  6. 4144

    Clan System

    Allow to present in clan and guild at same time is good idea. But probably here can be gravity client issues. But i support this as configuration option, by default not allowed stand in guild and clan at same time.
  7. 4144

    clan instance

    Hercules still not have clans support. Only private forks have clans. Because this for now i think no clans, mean no instances for clans.
  8. https://gitlab.com/4144/servergreps/blob/master/client_pre/packets/2015-09-16aRagexe/packets.h#L42 https://gitlab.com/4144/servergreps/blob/master/client_pre/packets/2015-11-04aRagexe/packets.h#L45
  9. 4144

    BrowEdit Erro!

    Also try free more memory on pc. Error mean something happened in memory allocation
  10. Must be 0xFFFFFFFF Look like docs really wrong... Or for all existing now flags will be 7 F: 0xFFFFFFF Docs should be fixed after this pr will be merged: https://github.com/HerculesWS/Hercules/pull/1646
  11. 4144

    Restricted use

    Current implimentation only by field Loc. Loc for cars and item in bit and should be non zero. In simplest case Loc for card and item can be equal. Other can be implimented in plugins.
  12. Then you not enabled it by mask. Try fix mask and restart server.
  13. It log all events. Or almost all. But docs outdated. It log card inserts if you speaking about it
  14. Look like docs for flags outdated. 0xFFFFF mean log all. After you can see logs in table pick_log or like this, not remember exact table name. For log types see src/map/log.c and function log_picktype2char Here codes after return.
  15. Hercules log most events. I think no special tool for log analysis, but sql can works like basic analysis tool. For insert card logged card delete, then insert event
  16. It can be related to packet version. In what packet version exists this error?
  17. In most fields already possible to use constants. But only need use name in quotes: ... Type: "IT_WEAPON" ...
  18. Items, mobs, skills and other static things stored in conf files. This is not csv files like in eathena or rathena. This is special configuration format. See libconfig. Dynamic data like accounts, characters, inventories etc, stored in sql.
  19. build all from correct sources? This issue mean you have different source on debian and windows 10 hosts. Or you not rebuild all files on windows 10 host. Another thing. You can use wrong packet version on windows 10 host.
  20. 4144

    Pre-re Source edit

    Yes if you change your server code, in future it may create conflicts with existing code. And will be need to fix this conflicts. Plugins can intercept almost any existing function in server code, and do own work before or/and after this intercepted function. Also plugin may complitly replace any function from server code.
  21. Look like you using pre-re server, but using statu from re. Search in item_db for pc_bonus2 bAddRaceTolerance And remove it
  22. This is look like cpu limit and not related to hercules. If you have admin, try ask him to remove cpu limits. If this is vps hoster limits and not yours, you cant do anything except change hoster.
  23. For mariadb correct way is: ./configure --with-mysql=/usr/bin/mariadb_config
  24. Probably out of memory. Try terminate services like web server or running hercules instance.
  25. you must rebuild also all plugins. It show error what HPM not recompiled
×
×
  • Create New...

Important Information

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