Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Recent content by rzmpyske

  1. R

    Me again lol

    I doubt it. Wild is applying the changes that does not seem to be possible without source code. At least they can rebuild whole Raiderz.exe, which requires to be produced from source and compiler.
  2. R

    Me again lol

    Why do you think everything is stored on the database, when the bunch of XML files provided in the server files directory? Spreading irresponsible and baseless solution just confuse people and helpless at all. If you have database system installed on your PC, you can quickly query what kind of...
  3. R

    [Release]RaiderZ Updated Version - Client/Server/Src/DB

    Remember that the server files released in this thread is based (and modificated) on 2011 alpha files, which is more older than Bolas; 2013 files. Applying 2013 DB to 2-years outdated server files cause a lot of compatibility issues of course, and fixing all of them require too much efforts. So...
  4. R

    [Release]RaiderZ Updated Version - Client/Server/Src/DB

    If you really think so, you won't even able to make it work, regardless of which RDBMS is used. It's not that simple than you think.
  5. R

    [Github] RaiderZ Alpha to NA Client Source WIP (Merry Early Christmas!)

    Look for LDBTaskLogin::Completer::CheckError() and delete password comparison. If I'm right, this is comparing the SHA-1 hashed password and the plain text password.
  6. R

    [Github] RaiderZ Alpha to NA Client Source WIP (Merry Early Christmas!)

    You need to insert your account into rz_accountdb_test. I saw same tables and functions in rz_gamedb_test but I think these are existing for no reasons.
  7. R

    [Github] RaiderZ Alpha to NA Client Source WIP (Merry Early Christmas!)

    By seeing the SQL script on repo, a rz_account_insert() function ignores p_password parameter and all passwords will be set to 'blue'.
  8. R

    [Solved]rz_item_equip fix for updated sources

    Re: rz_item_equip fix for updated sources That's because PostgreSQL supports function overloading. It's just same as other languages: void foo( int a ) { std::cout << "abcd" << std::endl; } void foo( short a ) { std::cout << "efgh" << std::endl; } int main( int argc, char* argv[] ) {...
  9. R

    [Solved]rz_item_equip fix for updated sources

    Re: rz_item_equip fix for updated sources That was a simple mistake an author made. The correct call must be: CALL RZ_ITEM_EQUIP (%I64d, '%d', '%d', '%d', %s, '%d', '%d', '%d') In PostgreSQL, a smallint argument must be represented as string literal (or explicitly casted). Or you might need to...
Back
Top