Jump to content

Gorowann

Members
  • Posts

    6
  • Joined

  • Last visited

Everything posted by Gorowann

  1. The sql file mob_db.sql file is pre-renewall... but the mob_db.txt seems to be renewall. shouldn´t there one of each (pre/renewall) versions of sql and txt files. something like mob_db_re? so that the right db is loaded renwall or pre as defined at compile.
  2. I shouldn´t post something code related when my kids are around.... the else statement will never trigger and the txt version will not call mob_readdb(). I have only quick looked and have gone wrong by only looking at the { } that should be better, ...i hope... #ifndef TXT_ONLY mob_read_sqldb(); mob_read_sqlskilldb(); #else /* TXT_ONLY */ mob_readdb(); mob_readskilldb(); #endif
  3. open src/map/mob.c and find: #ifndef TXT_ONLY if(db_use_sqldbs) { mob_read_sqldb(); mob_read_sqlskilldb(); } else { #endif /* TXT_ONLY */ mob_readdb(); mob_readskilldb(); } replace with this and it should work: see my other post, or better wait till someone can confirm that the replacement works. [s]#ifndef TXT_ONLY if(db_use_sqldbs) { mob_read_sqldb(); mob_read_sqlskilldb(); } else { /* TXT_ONLY */ mob_readdb(); mob_readskilldb(); } #endif[/s] [/code[/s]] I´ve written a bugreport for this... hopefully i´m not that wrong... >.<
  4. Thanks! i was confused that I´m the one that reported that first... normaly when I found something someone else has postet it befor or it´s a mistake of mine. >.>
  5. I´ve created a patch for me and maybe someone else is interested in this too, the patch contains the sourcecode changes from 15003 to 15025 from eathena trunk. the archiv includes the patchfile (created against the rathena rev 15048), the zlib1.dll and the zdll.lib. test compiled with VC10, i hope that i haven´t breaked gcc sorry for my bad english... it´s hard to think when my 2 children are playing next to me. horrible loud... patch_files.7z
  6. I have changes my sqlserver from eathena to rathena trunk rev 15021 with renewall aktiv. Now i have a little problem Homunculis matk are allways zero. Have i done somethign wrong, or is this a generall bug atm?
×
×
  • Create New...