Jump to content

ngoclong19

Members
  • Posts

    18
  • Joined

  • Last visited

About ngoclong19

  • Birthday 01/21/1991

Profile Information

  • Gender
    Male
  • Location
    Vietnam
  • Server
    localhost
  • Github: ngoclong19

ngoclong19's Achievements

Poring

Poring (1/15)

0

Reputation

  1. //quick option to disable all renewal option, used by ./configure //#define PRERE #ifndef PRERE Like the comment said, if you want to disable all renewal options, just remove '//' before '#define PRERE', so this ONE line is uncomment, no need to touch other lines. Your server will run in pre-renewal mode. The C code means: "I defined PRERE (so I'm wanting this server running in pre-renewal mode. After that line is a condition check, #ifndef PRERE means 'if not defined PRERE', of course I defined PRERE above so that check is false, and everything after that check is skipped. In the original file, #define PRERE is commented (//#define PRERE) so when the check occurs, PRERE is not defined before, and it return true (if not defined? check), and every options which define renewal settings after that check is enable." The commented lines makes no sense to a C compiler, its sole purpose is to make code easier to read for human and make auto-doc tools do their job. If A then B is something like normal English, so if A is wrong we do not do B and vice versa.
  2. No, I didn't mean remove //#define PRERE, I meant uncomment //#define PRERE, so it'll become #define PRERE.
  3. the server read automaticaly pre re folder Db ? You only need to uncomment line 7. Don't touch line 8 as you did above, it will raise an error when compiling. The server will look for pre-re db folder.
  4. Please get the latest revision from https://github.com/rathena/rathena. To disable all renewal option, uncomment the line '#define PRERE' in src\config\renewal.h
  5. Does the server provide any message?
  6. After this, does it have: [status]: Map-Server 0 connected: 863 maps [...] [status]: Map-server 0 loading complete [...] If so, this is normal, as it is a "status" not an "error".
  7. Maybe you should create a new directory and checkout.
  8. Maybe you should try Build->Rebuild Solution. The latest revision is here: https://github.com/rathena/rathena/
  9. It seems that you are using the old SVN base. You can checkout the new git base via https://github.com/rathena/rathena/trunk (subversion). Just right click your sources folder, TortoiseSVN->Relocate. If your change are in the db/import folder, they will be keep intact. For the source mod, I cannot tell if they works with the newer version or not. Uhm sorry, I'm quite confused. So I'll create a new folder and check-out using this: https://github.com/rathena/rathena/trunk Then what about this part: " Just right click your sources folder, TortoiseSVN->Relocate. If your change are in the db/import folder, they will be keep intact. " Sources folder, meaning my old Trunk? What do I need to put on the link on the Relocate box? Thanks. Yes, I mean your old trunk. Right click this folder, point to TortoiseSVN->Relocate and put that github link on the Relocate box. I supposed you use TortoiseSVN, for other client please read their documents. Or you can create a new folder and checkout, then copy your change to that folder.
  10. "Select the default DB to be used by double-clicking its name in the SCHEMAS list in the sidebar." I think you just need to do as it says. Please update your data/luafiles514 folder here: https://subversion.assembla.com/svn/client-side-translation/. What is your client's version?
  11. http://rathena.org/board/topic/82726-2013-ragexe-and-diff-up-to-date-2013-08-07/ Read above for the latest official supported client. http://rathena.org/board/topic/84746-tutorial-how-to-create-ragnarok-offline-2013-client-tutorial/ Above for the guide.
  12. The problem is application crash (APPCRASH). What is game.exe? When and how did this problem pop up? Please provide more informations so we can figure it out.
  13. It seems that you are using the old SVN base. You can checkout the new git base via https://github.com/rathena/rathena/trunk (subversion). Just right click your sources folder, TortoiseSVN->Relocate. If your change are in the db/import folder, they will be keep intact. For the source mod, I cannot tell if they works with the newer version or not.
×
×
  • Create New...