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 NickHough

  1. NickHough

    Lucidsoft - User Panel

    No one replied so i thought i'd best. You're better off loading in your Spec_Item/propitem file into a table in SQL, then having a separate table for the propitem.txt.txt entries and doing lookups (inner joins on _TXT fields). It's reletively easy to accomplish this, but the painful bit is...
  2. NickHough

    [Releases] Search Inventory

    But i'm also sure you're not the first person to use it. If i remember correctly Vendetta Flyff was the first server to use inventory search in the fashion you've implemented!
  3. NickHough

    [HELP] Used Debug mode / Error

    Hey, Stack = Type of memory. This typically happens with a buffer overflow. Things to always check are: Array (denoted by [num] or *) Lengths (szLinkChar in your chase) -> Increase size, find the largest size it's trying to read in and add a few extra for safety. Possible overrites by others...
  4. NickHough

    C# Flyff Patcher

    I'm happy to re-compile this with VS 2015 and 17. However the Nuget problem is likely due to it not finding the correct version of the needed packages from the Nuget manager. I'd recommend downloading the nuget packages manually, the version i used to compile this originally was 2.3.0...
  5. NickHough

    C# Flyff Patcher

    Updated OP original link
  6. NickHough

    C# Flyff Patcher

    Sorry forgot to respond to this, yeah you can't patch the file after the patcher runs. Which is why it tries to check to see if it exists before actually requiring the dll. That way it can download and initialize the patcher properly.
  7. NickHough

    C# Flyff Patcher

    #Added use for Titanium users.
  8. NickHough

    C# Flyff Patcher

    Thanks
  9. NickHough

    How to use ACCOUNT_TBL or ACCOUNT_TBL_DETAIL to create a email confirmation?

    Although true, the OP said he wanted to use ACCOUNT_TBL to do this. However i do recommend your way, but again you don't need a whole database like some servers, for this, you just need a new table in ACCOUNT_DBF -> They still relate to the account database if you think about it as they are...
  10. NickHough

    How to use ACCOUNT_TBL or ACCOUNT_TBL_DETAIL to create a email confirmation?

    Ow re-designing the structure would be a waste of time, it wouldn't boost performance at all. I mean i've got MSSQL enterprise 2012 and it works absolutely fine without many delays. Nothing else could realistically be done, except removing all logging as it takes up a ton of space :)
  11. NickHough

    How to use ACCOUNT_TBL or ACCOUNT_TBL_DETAIL to create a email confirmation?

    Never really used Gamecode, m_chLoginAuthority is entire game authority across all characters (GM status), Session is probably session ID for website
  12. NickHough

    How to use ACCOUNT_TBL or ACCOUNT_TBL_DETAIL to create a email confirmation?

    If you wish too, you can have a php script run every day to remove accounts that haven't click the link for say 30 days. But you would have to add another column called DateSent or something. That way if Activated = 0 and DateSent > 30 days it will delete all account data
  13. NickHough

    C# Flyff Patcher

    Hello All, I thought i best release my patch client as promised. This patcher is built in C# to replace the horribly built C++ version released with the Flyff source code. Requirements: .NET 4.0 or higher. Visual Studio 2013 or 2015. Includes: Uses original Flyff un-encrypted list.txt...
  14. NickHough

    How to use ACCOUNT_TBL or ACCOUNT_TBL_DETAIL to create a email confirmation?

    You can handle it in ACCOUNT_TBL, you've got to add the following columns to your table. Activated -> Bit/Int ActivationKey -> varchar(32) or varchar(128) -------- Depending on Hash used to generate Key Then on your website, send an email with the activation key to the email address they...
  15. NickHough

    Private Shop

    Care to elaborate on what you want? As that statement doesn't give enough detail, also Perin doesn't natively exist in the private shop source.
Back
Top