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 belette321

  1. belette321

    Gunz 1.5 (2011 files) Complete Databases

    Dead links.. Multixa mirror (script file): You must be registered for see element. Multixa mirror (.bak file): You must be registered for see element.
  2. belette321

    GunZ 1.5 (Summer of 2011) Source.

    Multixa mirror link: You must be registered for see element.
  3. belette321

    [PHP]Account, character and clan self-management usefull includes.

    If you put it in my file you no more need to put the session_start(); inside inc_auth.php, inc_client.php, inc_clan.php or inc_logout... because it will initialize session for each page.
  4. belette321

    [PHP]Account, character and clan self-management usefull includes.

    sessions probably.. or odbc connection error..
  5. belette321

    [PHP]Account, character and clan self-management usefull includes.

    No, anti sql injection.. //The well-known antisql injection. Bad enough, it's needed. function antisql($sql) { $sql = preg_replace(sql_regcase("/(from|select|insert|delete|where|drop table|show tables|#|--|\\\\)/"),"",$sql); $sql = str_replace("'", "''", $sql); $sql = trim($sql); $sql =...
  6. belette321

    [PHP]Account, character and clan self-management usefull includes.

    <?PHP session_start(); if(file_exists('./inc/inc_'. $_GET['a'] .'.php')) {include('./inc/inc_'. $_GET['a'] .'.php'); } elseif($_GET['a'] == '') {include('./inc/inc_login.php');} else{echo 'This page does not exist !';} ?>
  7. belette321

    [PHP]Account, character and clan self-management usefull includes.

    session_start(); or just put it automatic on php.ini "session.auto_start = 1" and don't forget to create a folder for your sessions by changig this 'session.save_path = "C:/SESSIONS/"' and create a folder named SESSIONS in C:\.
  8. belette321

    [PHP]Account, character and clan self-management usefull includes.

    Good weed make me release good thing. :):
  9. belette321

    [PHP]Account, character and clan self-management usefull includes.

    Okay so, here is some old files (it's coming from my second website) so it's possible that code is unreadable because i was young when i maded it. You must be registered for see element. Password: oldstuff How adding it to a themplate: <?PHP if(file_exists('./inc/inc_'. $_GET['a']...
  10. belette321

    [C#]WindowsDetection Class

    Lol, nottin' is perfect, i know. I know someone who did that, using DASM with ollydbg (i think it was Nova). I personally work with high-level language witch is more simple to understand then ASM, which is vertualy exactly like binary (in facts). I mean i just posted that simple code as class...
  11. belette321

    [C#]WindowsDetection Class

    I just gave WindowsDetection class, witch is only a single part of the entier code. To make it more hard to bypass, you only need to create a dll that is injected in the Gunz and restart a services that start the exe and automaticly restart it if someone crash it.. The dll can also contain a...
  12. belette321

    [C#]WindowsDetection Class

    Man it's only the WindowsDetection class, i also have the AntiDllInjection class.. Anyway it's work because the function is xProcess.MainWindowTitle.Contains(x) and xProcess.ProcessName.Contains(x).
  13. belette321

    [C#]WindowsDetection Class

    This is not C# it's VB or VB.NET BTW codes updated.
  14. belette321

    Top Error as shoe

    Wrong section ! /Report
  15. belette321

    [C#]WindowsDetection Class

    iPowerOn, it's a good one too :thumbup:
Back
Top