GunZ Download Center

Page 7 of 11 FirstFirst 1234567891011 LastLast
Results 91 to 105 of 154
  1. #91
    Omer Omer is offline
    MemberRank
    Sep 2006 Join Date
    2,912Posts

    Re: GunZ Download Center

    I guess something with the items =P

  2. #92
    Omer Omer is offline
    MemberRank
    Sep 2006 Join Date
    2,912Posts

    Re: GunZ Download Center

    More Updates Added ! July Matchserver + Client Added!

  3. #93
    Enthusiast I_AM_1337 is offline
    MemberRank
    Jan 2007 Join Date
    30Posts

    Re: GunZ Download Center

    When I try to put Wamp online, it says "The service has not been started".

  4. #94
    Member FridgeWheeL is offline
    MemberRank
    Nov 2006 Join Date
    52Posts

    Re: GunZ Download Center

    Hey GuyZ

    The Guide looks realy kewl and im unfortunatly t work now so cant run all the files in the right enviroment but i'm downloading the files so long for when i get home.

    I had 2 questions 1, i see the client link doen't work to filefront, but by the looks of it the international one should do fine??

    2: I'm having problems downloading from rapidshare in South Africa since always so i need a mirror for the Patch and unpacker. Can someone be so generous on helping me out there?

    Thank you in advance.

    Looking foward to it :drinks_ch

  5. #95
    Apprentice gamerx9191 is offline
    MemberRank
    Jul 2006 Join Date
    5Posts

    Re: GunZ Download Center

    very nice guide.. ive got a question tho.. when it says "Now go back to your 'MRS' folder and create a new 'Text File' with any name you like, but in the file type:".. what do i type? theres just a blank spot :\

  6. #96
    Novice Ketamine is offline
    MemberRank
    Mar 2007 Join Date
    2Posts

    Re: GunZ Download Center

    [CODE]
    [LEFT][COLOR=#000000]<html>
    <head>
    <title>GunZ User Account Register</title>
    <style>
    body {
    color: #003300;
    font-family: Verdana, Arial, Serif;
    font-size: 10pt;
    }
    input {
    border: 1px solid #003300;
    color: #003300;
    background: #DDDDDD;
    font-family: Verdana, Arial, Serif;
    font-size: 10pt;
    }
    tr {
    font-size: 10pt;
    }
    a:link {
    text-decoration: none;
    color: #003300;
    }
    a:visited {
    text-decoration: none;
    color: #003300;
    }
    a:active {
    text-decoration: none;
    color: #003300;
    }
    a:hover {
    text-decoration: none;
    color: #FF6600;
    }
    </style>
    </head>
    <body>
    <div align="center">
    <?php
    $srvip
    = "snaity.no-ip.org";
    $srvport = "6000";
    $mssql_user = "sa";
    $mssql_pass = "******";
    $mssql_database = "gunzsrv";
    $mssql_host = "LOCALMACHINE\SQLEXPRESS";
    $conn = mssql_connect($mssql_host, $mssql_user, $mssql_pass);
    mssql_select_db($mssql_database);
    ?>
    <FORM METHOD=POST ACTION="<?php echo $_SERVER['PHP_SELF']; ?>?act=register">
    <table cellspacing=0 border=0>
    <tr>
    <td colspan=2 style="border: 1px solid #003300; background: #DDDDDD;"><CENTER><A rel="nofollow" HREF="<?php echo $_SERVER['PHP_SELF']; ?>">GunZ User Account Register</A></CENTER></td>
    </tr>
    <tr>
    <td style="border-left: 1px solid #003300">User ID:</td>
    <td style="border-right: 1px solid #003300"><INPUT TYPE="text" NAME="login"></td>
    </tr>
    <tr>
    <td style="border-left: 1px solid #003300">Password:</td>
    <td style="border-right: 1px solid #003300"><INPUT TYPE="password" NAME="senha1"></td>
    </tr>
    <tr>
    <td style="border-left: 1px solid #003300">Retype Password:</td>
    <td style="border-right: 1px solid #003300"><INPUT TYPE="password" NAME="senha2"></td>
    </tr>
    <tr>
    <td style="border-left: 1px solid #003300">Email:</td>
    <td style="border-right: 1px solid #003300"><INPUT TYPE="text" NAME="email"></td>
    </tr>
    <tr>
    <td style="border: 1px solid #003300; border-top: 0px;" colspan=2><CENTER><INPUT NAME="Cadastrar" VALUE="Cadastrar" TYPE="submit"></CENTER></td>
    </tr>
    </table>
    </FORM>
    <?php

    if ($_GET['act'] == 'register')
    {
    $user = anti_injection($_POST['login']);
    $pass1 = anti_injection($_POST['senha1']);
    $pass2 = anti_injection($_POST['senha2']);
    $email = anti_injection($_POST['email']);
    if (
    valida(Array($user,$pass1,$pass2,$email)) == true)
    {
    if (
    $pass1 == $pass2)
    {
    if (
    ereg("([0-9,a-z,A-Z])", $user))
    {
    if (
    ereg("^([0-9,a-z,A-Z]+)([.,_]([0-9,a-z,A-Z]+))*[@]([0-9,a-z,A-Z]+)([.,_,-]([0-9,a-z,A-Z]+))*[.]([0-9,a-z,A-Z]){2}([0-9,a-z,A-Z])?$", $email))
    {
    $query = mssql_query("SELECT * FROM Accounts WHERE UserID='$user'");
    $num_rows = mssql_num_rows($query);
    if (
    $num_rows == 0)
    {
    $query = mssql_query("SELECT * FROM Accounts WHERE E_Mail='$email'");
    $num_rows = mssql_num_rows($query);
    if (
    $num_rows == 0)
    {
    $query = mssql_query("INSERT INTO Accounts (UserID, Password, E_Mail) VALUES ('$user','$pass1','$email')");
    if (!
    $query)
    {
    echo
    ":: Error on account register try later ::<br>";
    }
    else
    {
    echo
    ":: Account has been registered ::<br>";
    }
    }
    else
    {
    echo
    ":: Email in use ::<br>";
    }
    }
    else
    {
    echo
    ":: User in use ::<br>";
    }
    }
    else
    {
    echo
    ":: Invalid Email ::<br>";
    }
    }
    else
    {
    echo
    ":: Only use Numbers and Letters in User ID ::<br>";
    }
    }
    else
    {
    echo
    ":: Password not equal with other ::<br>";
    }
    }
    }

    $query = mssql_query("SELECT * FROM Accounts");
    $num_rows = mssql_num_rows($query);
    echo
    "Total Accounts: ".$num_rows."<br>";

    echo
    "<br>Server Status: ";
    $fp = @fsockopen($srvip, $srvport, $errno, $errstr, 1);
    if (!
    $fp) {
    echo
    "<font style='color: #FF3300'>Offline</br>";
    } else {
    echo
    "<font style='color: #009933'>Online</br>";
    fclose($fp);
    }

    [COLOR=#ff8000]// Fun

  7. #97
    Enthusiast valsha is offline
    MemberRank
    Jan 2005 Join Date
    DallasLocation
    43Posts

    Re: GunZ Download Center

    Where i can get LGKeiz's DB?
    I search all treads but havent seen no links.

  8. #98
    Omer Omer is offline
    MemberRank
    Sep 2006 Join Date
    2,912Posts

    Re: GunZ Download Center

    updated again :p

  9. #99
    Novice fox19 is offline
    MemberRank
    Aug 2006 Join Date
    1Posts

    Re: GunZ Download Center

    Can anyone help me, Im not sure how to make an admin account.

    Do i do it in the character database?

    Please help, many thanks, Fox.

  10. #100
    Apprentice b_todays is offline
    MemberRank
    Nov 2004 Join Date
    viet namLocation
    6Posts

    Re: GunZ Download Center

    Quote Originally Posted by Omer View Post

    July Match server -
    [DOWNLOAD]
    July Client -
    http://forum.ragezone.com/attachment...8-julygunz.rar
    =====TOOLS&FILES=====


    =====Server Files=====
    Mirror 1[DOWNLOAD]
    Mirror 2 [DOWNLOAD]
    Both Pass Words Are ragezone.com
    =====DataBase=====
    [DOWNLOAD]
    Pass is Mythical
    =====Clients=====
    [DOWNLOAD]
    =====Tools=====
    Legacy Gamers Patch (For IP Input) - [DOWNLOAD]
    Mrs Unpacker - [DOWNLOAD]
    =====MYSQL=====
    [DOWNLOAD]
    =====MAPS=====
    MidNight Maze-[DOWNLOAD]
    Snow town-[DOWNLOAD] (Password : LegacyGamers.net)
    Snow Temple- [DOWNLOAD]
    Pirate Docks - [DOWNLOAD]
    Metal Town - [DOWNLOAD]
    Dark Mansion - [DOWNLOAD]
    Dark Town - [DOWNLOAD]
    3D Training Town -
    [DOWNLOAD]



    =====SKINS=====

    =====ITEMS=====
    GM Jacket - [DOWNLOAD]
    =====WebSites=====
    PHP Register Website - [DOWNLOAD][PREVIEW]Pass is HexGuard
    GunzWeb 3-[DOWNLOAD][REG FIX](MUST HAVE)[PREVIEW]
    GunZWeb X - [DOWNLOAD][PREVIEW]
    GunZ Web Evolution -
    [DOWNLOAD]
    I can't down Client, pls check again....

  11. #101
    ShinROSE Owner Tohma is offline
    MemberRank
    Sep 2006 Join Date
    270Posts

    Re: GunZ Download Center

    Update the client please

  12. #102
    Omer Omer is offline
    MemberRank
    Sep 2006 Join Date
    2,912Posts

    Re: GunZ Download Center

    Look at the top of the 2nd or 3rd post dude. btw woot 100th post on thread: P

  13. #103
    ShinROSE Owner Tohma is offline
    MemberRank
    Sep 2006 Join Date
    270Posts

    Re: GunZ Download Center

    Sorry i'm new here^^

    On the forum i saw we can use the IGunz Client but realy don't understand how you can have all nagunz stuff with a simple Igunz...

    I just want to know what client i have to use ^^

    Sorry for my noob style xD

  14. #104
    Omer Omer is offline
    MemberRank
    Sep 2006 Join Date
    2,912Posts

    Re: GunZ Download Center

    Just patch it :p

  15. #105
    Enthusiast ranggilostboys is offline
    MemberRank
    Nov 2006 Join Date
    MalaysiaLocation
    28Posts

    Re: GunZ Download Center

    client link dead!!!



Advertisement