Jump to content

Secrets

Developer
  • Posts

    588
  • Joined

  • Days Won

    45

Everything posted by Secrets

  1. I wear the shirt to official server's events. Shirt: $25 Feeling: Priceless
  2. Sakexe clients are no longer officially supported.
  3. You may try importing this in Tokei's Server Database Editor and export it as rA database, or you can use Herc's mob_db.sql as base and strip the SQL stuffs out.
  4. You have to modify System/itemInfo.lua instead of those 2 txt files.
  5. Version 1.

    682 downloads

    MVP Ladder - Instanced Edition is a rewrite of the MVP Ladder event that is included in rAthena project custom NPC folder. It retains 90% of original functionality except multiple parties can participate in the ladder without having to wait for the other party to finish anymore.
    Free
  6. File Name: MVP Ladder - Instanced Edition File Submitter: Secrets File Submitted: 24 Sep 2016 File Category: Games, Events, Quests Content Author: Secretdataz, Euphy MVP Ladder - Instanced Edition is a rewrite of the MVP Ladder event that is included in rAthena project custom NPC folder. It retains 90% of original functionality except multiple parties can participate in the ladder without having to wait for the other party to finish anymore. Click here to download this file
  7. Suggestion: use setiteminfo and setitemscript to automagically alter the item database.
  8. rAthena is currently written in C, not C++. However, Lighta and I are currently working on refactoring the source bit by bit to C++.
  9. set command is deprecated. Use direct assignment instead. For example: #CASHPOINTS += (.@amount*10);
  10. https://rathena.org/wiki/GDB
  11. You can compile the exe on your computer and upload it to your server if you wanna save disk space. Or even better, use Linux instead.
  12. Numbers prefixed with `0x` are in hexadecimal format (base 16, with range of 0 to F), so you can't add these up like they are base 10 numbers. You might want to add base 10 numbers (1 2 4 8 ...) we noted together without adding 0x prefix instead.
  13. We don't have any critical bug that occurred from using 2015 clients opened on our issue tracker, so it's safe to assume that it works.
  14. Mob modes in the wiki is outdated. Please refer to doc directory in your emulator directory instead.
  15. That still counts as stealing. Other people stealing stuffs doesn't make you stealing the same thing right. People with mindset like yours should not exist here.
  16. You're right. Using Thai RO client might be the cause of this issue, because it doesn't have Doram sprite yet. คิดว่าน่าจะเป็นเพราะใช้ตัวเกมเซิฟไทย ลองใช้ของเซิฟเกาหลีดูนะ
  17. I don't think you can. If you want the data file tRO provides, replacing tRO's exe with corresponding one from kRO will work just fine.
  18. To disable renewal, uncommenting PRERE define is enough. #define PRERE You don't have to comment literally every lines, and doing so will cause things to break.
  19. You have to start from option index 0 or the option will not appear client-side.
  20. For further reference: You can use this regular expression in Find and Replace (Regex mode) function of Notepad++ to easily convert Herc scripts. Find : npctalk "(.+)",(.+); Replace with : npctalk $2 + " : $1"; There might be some calls which are not covered by this regex, such as calls with no string literals. Anyways, this should speed you up
×
×
  • Create New...