Jump to content

4144

Core Developers
  • Content Count

    1189
  • Joined

  • Last visited

  • Days Won

    124

Reputation Activity

  1. Upvote
    4144 got a reaction from kotsumu in Compiling problem hercules emulator   
    Probably out of memory. Try terminate services like web server or running hercules instance.
  2. Upvote
    4144 got a reaction from Functor in Nemo patcher   
    @Functor thanks. In this patches really was error.
    https://gitlab.com/4144/Nemo/commit/ef3a19ac4b68f280b8e7122fefa94a9e51667381
  3. Upvote
    4144 got a reaction from LipESprY in What is the possibles values of 'state' column on 'login' table?   
    if state 0, account not banned
    if state is non zero, banned. And value (state - 1) will be sent to client in auth error packet.
    This mean any non zero values only have any meaning for client.
     
  4. Upvote
    4144 got a reaction from bWolfie in What is the possibles values of 'state' column on 'login' table?   
    if state 0, account not banned
    if state is non zero, banned. And value (state - 1) will be sent to client in auth error packet.
    This mean any non zero values only have any meaning for client.
     
  5. Upvote
    4144 got a reaction from JulioCF in PEEK fork   
    This is fork of peek packet extractor.
    Can be downloaded here: https://gitlab.com/4144/peek
     
    Changes:
    For now fixed packets extraction for new clients.
    Fixed packets extraction if client not have encryption packets (not kro)
     
    Known issues:
    Packet captures not works for new clients.
  6. Upvote
    4144 got a reaction from IndieRO in PEEK fork   
    This is fork of peek packet extractor.
    Can be downloaded here: https://gitlab.com/4144/peek
     
    Changes:
    For now fixed packets extraction for new clients.
    Fixed packets extraction if client not have encryption packets (not kro)
     
    Known issues:
    Packet captures not works for new clients.
  7. Upvote
    4144 got a reaction from Beret in PEEK fork   
    This is fork of peek packet extractor.
    Can be downloaded here: https://gitlab.com/4144/peek
     
    Changes:
    For now fixed packets extraction for new clients.
    Fixed packets extraction if client not have encryption packets (not kro)
     
    Known issues:
    Packet captures not works for new clients.
  8. Upvote
    4144 got a reaction from KirieZ in PEEK fork   
    This is fork of peek packet extractor.
    Can be downloaded here: https://gitlab.com/4144/peek
     
    Changes:
    For now fixed packets extraction for new clients.
    Fixed packets extraction if client not have encryption packets (not kro)
     
    Known issues:
    Packet captures not works for new clients.
  9. Upvote
    4144 got a reaction from Ridley in PEEK fork   
    This is fork of peek packet extractor.
    Can be downloaded here: https://gitlab.com/4144/peek
     
    Changes:
    For now fixed packets extraction for new clients.
    Fixed packets extraction if client not have encryption packets (not kro)
     
    Known issues:
    Packet captures not works for new clients.
  10. Upvote
    4144 got a reaction from KirieZ in Batch packets / client info extractor.   
    This tool allow extract packets from old clients before 2013 version. For newer versions can be extracted not all packets.
    Another feature dump some packet related function addresses and create ida pro script file for name this functions.
    Usage information can found in readme.
    https://gitlab.com/4144/bpe/
    For run bpe need linux or wsl in windows 10. Also need python2 installed.
  11. Like
    4144 got a reaction from anacondaq in Nemo patcher   
    This topic about Nemo fork https://gitlab.com/4144/Nemo
    Most changes present in ChangeLog
    Patches reports service: http://nemo.herc.ws
     
    For test Ragnarok zero clients need:
     
    this nemo fork and enable at least patches from https://gitlab.com/4144/Nemo/blob/master/profiles/zero_minimal.log this or similar clientinfo.xml https://gitlab.com/4144/Nemo/blob/master/configs/zero/clientinfo.xml  
    From 2018-11-14 in all clients must be enabled patch Remove hard coded address/port
    For clients newer than 2018-03-09:
    Need manually copy cdclient.dll from Nemo/input or enable patch "Copy patched Cheat Defender Game Guard"
     
    Clients exe downloads: http://nemo.herc.ws/downloads/
    Full client downloads: http://nemo.herc.ws/downloads/#downloadable-full-clients
     
    Discord: https://discord.com/invite/ByEQHDf
     
     
  12. Upvote
    4144 got a reaction from kukayasko in Trojan in my server patch ???¿¿¿   
    try upload your exe before and after patching into virustotal. and gave here links.
  13. Upvote
    4144 got a reaction from Ai4rei in RO Open Setup, v3.1.0.627 - last updated 2023/11/18   
    @Beret Nemo change client exe. it may change anything what was coded in patches.
    But opensetup change registry and local files configurations.
  14. Upvote
    4144 got a reaction from uzami in Error on skills   
    Update hercules to latest release or if you prefer old releases, update to 2017.11.19+2 release https://github.com/HerculesWS/Hercules/releases/tag/v2017.11.19%2B2
    2017.11.19+2 is same with 2017.11.19 + some fixes.
     
  15. Upvote
    4144 got a reaction from Tsuuu in RODEX crashs when delete message   
    you compiled server with debug information?
    because if not, most protections disabled and server may crash in any code.
     
  16. Upvote
    4144 got a reaction from Tsuuu in RODEX crashs when delete message   
    I mean configure switch --enable-debug. And for not very old server it should be enabled by default.
  17. Upvote
    4144 got a reaction from Tsuuu in Identification functions   
    See for example battle_weapon_attack, battle_calc_damage or similar functins.
  18. Upvote
    4144 got a reaction from Christian [epicRO] in R> Hardcode Changes > Plugin (No RoDex / Bank while Acting)   
    first issue. Change this:
    HPExport void plugin_init(void) to
    HPExport void plugin_init(void) { Change:
    addHookPre(clif, clif_parse_BankDeposit, clif_parse_BankDeposit_pre); to
    addHookPre(clif, pBankDeposit, clif_parse_BankDeposit_pre);  
    Also you may not change make file.
    For build plugin need run:
    make plugin.pluginname Example for your plugin:
    make plugin.rodex-bank-npc  
  19. Upvote
    4144 got a reaction from Christian [epicRO] in R> Hardcode Changes > Plugin (No RoDex / Bank while Acting)   
    no, need copy only extrac condition check. And if condition true, just before return, call hookStop().
    This call will prevent calling default function and any post hooks. I will show example only with pre hook function, without registration code.
    void clif_parse_BankDepositPre(int *fdPtr, struct map_session_data **sdPtr) { int fd = *fdPtr; struct map_session_data *sd = *sdPtr; if ((pc_cant_act2(sd)) || (sd->state.vending) || (sd->npc_id) || (pc_istrading(sd)) || (sd->chat_id != 0)) { clif->messagecolor_self(fd, 0xFF0000, "You are not able to deposit while acting."); hookStop(); return; } }  
  20. Upvote
    4144 got a reaction from IndieRO in where is i can find log/map-server.leaks   
    Then create log directory. And next time server save here logs.
  21. Upvote
    4144 got a reaction from grimmm in Nemo patcher   
    Update many different patches, what simple to fix.
  22. Upvote
    4144 got a reaction from xAuron91 in Nemo patcher   
    This topic about Nemo fork https://gitlab.com/4144/Nemo
    Most changes present in ChangeLog
    Patches reports service: http://nemo.herc.ws
     
    For test Ragnarok zero clients need:
     
    this nemo fork and enable at least patches from https://gitlab.com/4144/Nemo/blob/master/profiles/zero_minimal.log this or similar clientinfo.xml https://gitlab.com/4144/Nemo/blob/master/configs/zero/clientinfo.xml  
    From 2018-11-14 in all clients must be enabled patch Remove hard coded address/port
    For clients newer than 2018-03-09:
    Need manually copy cdclient.dll from Nemo/input or enable patch "Copy patched Cheat Defender Game Guard"
     
    Clients exe downloads: http://nemo.herc.ws/downloads/
    Full client downloads: http://nemo.herc.ws/downloads/#downloadable-full-clients
     
    Discord: https://discord.com/invite/ByEQHDf
     
     
  23. Upvote
    4144 got a reaction from Phriya in Nemo patcher   
    This topic about Nemo fork https://gitlab.com/4144/Nemo
    Most changes present in ChangeLog
    Patches reports service: http://nemo.herc.ws
     
    For test Ragnarok zero clients need:
     
    this nemo fork and enable at least patches from https://gitlab.com/4144/Nemo/blob/master/profiles/zero_minimal.log this or similar clientinfo.xml https://gitlab.com/4144/Nemo/blob/master/configs/zero/clientinfo.xml  
    From 2018-11-14 in all clients must be enabled patch Remove hard coded address/port
    For clients newer than 2018-03-09:
    Need manually copy cdclient.dll from Nemo/input or enable patch "Copy patched Cheat Defender Game Guard"
     
    Clients exe downloads: http://nemo.herc.ws/downloads/
    Full client downloads: http://nemo.herc.ws/downloads/#downloadable-full-clients
     
    Discord: https://discord.com/invite/ByEQHDf
     
     
  24. Upvote
    4144 got a reaction from Verzeltainne in Nemo patcher   
    This topic about Nemo fork https://gitlab.com/4144/Nemo
    Most changes present in ChangeLog
    Patches reports service: http://nemo.herc.ws
     
    For test Ragnarok zero clients need:
     
    this nemo fork and enable at least patches from https://gitlab.com/4144/Nemo/blob/master/profiles/zero_minimal.log this or similar clientinfo.xml https://gitlab.com/4144/Nemo/blob/master/configs/zero/clientinfo.xml  
    From 2018-11-14 in all clients must be enabled patch Remove hard coded address/port
    For clients newer than 2018-03-09:
    Need manually copy cdclient.dll from Nemo/input or enable patch "Copy patched Cheat Defender Game Guard"
     
    Clients exe downloads: http://nemo.herc.ws/downloads/
    Full client downloads: http://nemo.herc.ws/downloads/#downloadable-full-clients
     
    Discord: https://discord.com/invite/ByEQHDf
     
     
  25. Upvote
    4144 got a reaction from meko in How to Change LV UP Effect?   
    Server can select only levelup effect by id. Actual effect belong to client based on id from server.
     
×
×
  • Create New...

Important Information

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