Jump to content

zeusc137

Members
  • Posts

    42
  • Joined

  • Last visited

Everything posted by zeusc137

  1. I think you can focus on what you want to do with the logs as they already exist so you might find something else you could test using it, if I understand your situation maybe try creating a new NPC from scratch that given a MVP ID you tell the last 10 players who hit it
  2. I feel happy and relieved by looking at how much you've acomplished! I get stuck most of the time trying to make my game match with kRO as much as I can You're inspiring some people thank you! -- Have a great weekend everyone!
  3. Hello there! I understand now! I was encrypting it using "GRF Editor", however I didn't go through the option where I had that "Generate cps.dll" option... But I found it later using the window menu, thank you!
  4. Hi everyone, In case anyone is looking how to encrypt your GRF and create your own CPS.DLL using this window: You just have to click on "Tools" using GRF Editor and it's the second one starting from the bottom:
  5. Hi there! I hope all is good! What about if my "ragnarok.grf" works without encryption, and I want to encrypt it? I added a key "123123" to my "ragnarok.grf" and it stopped working... Should I just copy another "cps.dll" from another private server that uses any encryption? Thanks in advance for any help!
  6. Hey! Have you ever found some tips on this? I wanted to add some custom aura when the user has specific item in inventory.
  7. Hello there, Happy Friday!!! Any chance you would have some progress to share on this?
  8. I posted this question in the wrong place, but if you get here using clients later than 2010-08-03 you also have to check `src/char/char.cpp` and change this part: ``` -#if PACKETVER >= 20100803 - charserv_config.char_config.char_del_option = CHAR_DEL_BIRTHDATE; -#else +// #if PACKETVER >= 20100803 + // charserv_config.char_config.char_del_option = CHAR_DEL_BIRTHDATE; +// #else charserv_config.char_config.char_del_option = CHAR_DEL_EMAIL; -#endif +// #endif ```
  9. I was able to fix this one making sure I was reading the correct mapInfo file!
  10. Hey! Thanks for that! However I was not able to find this ExternalSettings file ( I asked ChatGPT too, but maybe this is Client side?) Could you also help me find this one? Thanks!
  11. Hi everyone! Actually it's not working quite as I'd expect as I'm still not able to delete using the email confirmation. This is on my `conf/char_athena.conf` (I did stop and start the server 2 times to test it this time!!!) ``` // Restrict character deletion by BaseLevel // 0: no restriction (players can delete characters of any level) // -X: you can't delete chars with BaseLevel <= X // Y: you can't delete chars with BaseLevel >= Y // e.g. char_del_level: 80 (players can't delete characters with 80+ BaseLevel) char_del_level: 0 // Amount of time in seconds by which the character deletion is delayed. // Default: 86400 (24 hours) // NOTE: Requires client 2010-08-03aragexeRE or newer. char_del_delay: 60 // Restrict character deletion by email address or birthdate. // This restricts players from changing the langtype and deleting characters. // Defaults based on client date. // 1: Email address // 2: Birthdate // 3: Email address or Birthdate // IMPORTANT! // - This config only works for clients that send 0x0068 or 0x01fb for delete request. // - Use langtype 1 for newer clients (2013+), to use 0x01fb. // - Clients that are not using 0x0068 or 0x01fb, only use birthdate (YYMMDD) as default. char_del_option: 1 // Restrict character deletion as long as he is still in a party or guild // 0: No restriction is applied // 1: Character cannot be deleted as long as he remains in a party // 2: Character cannot be deleted as long as he remains in a guild // 3: Character cannot be deleted as long as he remains in a party or guild(default) char_del_restriction: 3 ``` I got this email from database: [email protected] and tried like this: But get the following error message:
  12. After changing that in rathena I was able to fix it on my 2021-11-17_Ragexe_1637052357.exe client with this setting on WARP:
  13. Hello there! thank you for this!!! Could you also point what *.sql files for guild emblem I need? I can't find anytyhing inside /sql-files in rathena repo! Thanks again!!!
  14. Thanks @Chaos92! I'm starting to understand this! I'm also using this branch: https://github.com/datawulf/rathena/tree/skillupd From this PR to rebalance skills: https://github.com/rathena/rathena/pull/7024 I think the latest clients don't read clientinfo.xml anymore, right? (Any tip to workaround that?) Thank you for the guidance and sorry for asking so many questions around the forum! haha
  15. Thank you very much for this sir! I was finding very hard to find documentation and search things inside the forum! Are there some tips you could provide as well for someone like us who wants it badly 4th classes in our servers? -- Have a great weekend people!!!
  16. Hi @konishiwa! I have the 3rd classes working only! Do you think we could try to help each other? Did you find any tutorial or anything else? I’m planning to maintain my server for very long time so I want to research on it if you have any starting point or documentation to share I appreciate. Have a great weekend everyone!!
  17. With that I was able to use 3rd class, but it still DON'T work for 4th class... Is there something I should know already by now? My NPC turned me into a novice again and the @job command don't work for any of those 4th jobs as follows:
  18. I fixed for 3rd classes but it's not working with 4th jobs! Maybe I'm using a client that is too old? I'm using *2019-06-05*
  19. This is my server in case any one of you want to check it out: http://www.zeus-bro.net/ It's currently in English but I'm planning to translate it to pt_BR soon! Also, I didn't create the Thor Patcher yet so it opens through "RagnaZeus.exe" file!
  20. Hello everyone! I'm having some progress I'm really proud I could start running my server but now I'm trying to find how to make it work with 3rd/4th classes I have everything I need from CLIENT side to run that and I think my rathena was configured correctly, so why my `@jog 4060` to Dragon Night fails? Thank you so much! I promise I will answer other people one day too because I've been asking so many questions! haha -- Have a great weekend everyone! Mine I hope it's gonna be coding fun stuff for my RO server I
  21. Thank you! I was able to fix the names of the items using an appropriated iteminfo_EN.lua when I was applying recommendations on Warp/Nemo! The one thing I'm not sure right now how to fix is this message at the top (maybe I have to just delete it for now until I create my own art?):
  22. Good call! Thank you for that! Would you mind telling me where can I find this? I just cloned latest rathena and I was too newbie to find it myself! hahaha EDIT: I found this at `src/config/packets.hpp`! Thank you @Winterfox ``` #ifndef PACKETVER /// Do NOT edit this line! To set your client version, please do this instead: /// In Windows: Add this line in your src\custom\defines_pre.hpp file: #define PACKETVER YYYYMMDD /// In Linux: The same as above or run the following command: ./configure --enable-packetver=YYYYMMDD #define PACKETVER 20211103 #endif ```
  23. Hello, thanks for passing by! I'm trying to use NEMO to modify this 2019-06-05hRagExeRE.exe applying recommended but this is how it looks: I know this is CLIENT issue because my other client 2019-06-05fRagexe.exe was working just fine! What should I do? I'm trying to create my own private server with Renewal + 4th classes.
×
×
  • Create New...