GunZ Server Status

Page 2 of 2 FirstFirst 12
Results 26 to 43 of 43
  1. #26
    RageZone GunZ | Ex-Owner Ricky Blaze is offline
    MemberRank
    Nov 2009 Join Date
    New YorkLocation
    608Posts

    Re: GunZ Server Status

    This looks sexy, nicely done bro.

  2. #27
    Animu Addicted Number12 is offline
    MemberRank
    Apr 2008 Join Date
    Old Sunny CALocation
    1,264Posts

    Re: GunZ Server Status

    very very nice
    10/10.
    Like how the bars fill, show the # of players and max players and it fills with each different server it has differ colour. ^.^

  3. #28
    What year is this? pluke001 is offline
    MemberRank
    Nov 2008 Join Date
    LithuaniaLocation
    941Posts

    Re: GunZ Server Status

    fields could be bigger so text would fit nicer o_O
    nice though

  4. #29
    Valued Member LegacyCode is offline
    MemberRank
    Aug 2009 Join Date
    HyruleLocation
    129Posts

    Re: GunZ Server Status

    Quote Originally Posted by number12 View Post
    very very nice
    10/10.
    Like how the bars fill, show the # of players and max players and it fills with each different server it has differ colour. ^.^
    The colors are based on how full the server is not on the
    server name.

  5. #30
    RageZone GunZ | Ex-Owner Ricky Blaze is offline
    MemberRank
    Nov 2009 Join Date
    New YorkLocation
    608Posts

    Re: GunZ Server Status

    Quote Originally Posted by LegacyCode View Post
    The colors are based on how full the server is not on the
    server name.
    Oh, alright like tht wasnt obvious haha. But yea wht color did you put for test server? or non?

  6. #31
    Valued Member LegacyCode is offline
    MemberRank
    Aug 2009 Join Date
    HyruleLocation
    129Posts

    Re: GunZ Server Status

    Quote Originally Posted by Ricky Blaze View Post
    Oh, alright like tht wasnt obvious haha. But yea wht color did you put for test server? or non?
    The server called "TestServer" was turned off and it showed
    the text "offline" and because it doesn't contain any players
    there is no need for the bar to be filled with a color.

  7. #32
    Doggie And Rice. Military is offline
    MemberRank
    Jun 2009 Join Date
    Here and AboutLocation
    3,302Posts

    Re: GunZ Server Status

    imma give this a another try

  8. #33
    RageZone GunZ | Ex-Owner Ricky Blaze is offline
    MemberRank
    Nov 2009 Join Date
    New YorkLocation
    608Posts

    Re: GunZ Server Status

    Quote Originally Posted by LegacyCode View Post
    The server called "TestServer" was turned off and it showed
    the text "offline" and because it doesn't contain any players
    there is no need for the bar to be filled with a color.
    Im saying if it was online, what is it set as the color?

  9. #34
    Valued Member LegacyCode is offline
    MemberRank
    Aug 2009 Join Date
    HyruleLocation
    129Posts

    Re: GunZ Server Status

    Quote Originally Posted by Ricky Blaze View Post
    Im saying if it was online, what is it set as the color?
    Please read the above post's there is no set color for a server name.
    It will change depending on the amount of players it calculates
    the percentage of the users online based on the fields "CurrPlayer" and "MaxPlayer", From that percentage it selects one of the three colors.
    Last edited by LegacyCode; 25-11-09 at 11:02 PM.

  10. #35
    RageZone GunZ | Ex-Owner Ricky Blaze is offline
    MemberRank
    Nov 2009 Join Date
    New YorkLocation
    608Posts

    Re: GunZ Server Status

    Quote Originally Posted by LegacyCode View Post
    Please read the above post's there is no set color for a server name.
    It will change depending on the amount of players it calculates
    the percentage of the users online based on the fields "CurrPlayer" and "MaxPlayer", From that percentage it selects one of the three colors.
    Oh ok my bad, thanks for explaining it.

  11. #36
    Apprentice Iamrealyemo is offline
    MemberRank
    Nov 2009 Join Date
    12Posts

    Re: GunZ Server Status

    real cool dude ! 100/10

  12. #37
    Account Upgraded | Title Enabled! Creativity is offline
    MemberRank
    Feb 2009 Join Date
    127.0.0.1Location
    492Posts

    Re: GunZ Server Status

    I've been having some problems with this so would appreciate some help,

    $database['host'] = 'I presume this would be the server name / lan ip or would it be the ODBC soruce?';
    $database['name'] = 'database in the SQL server or ODBC source?';
    $database['user'] = 'sa';
    $datanase['pass'] = 'pass ofc';
    $database['driver'] = 'SQL Server';

    I tried changing these things, tried making a system and user DSN, with native server and native client, but its too much to test without being 100% sure what the things above want :p

    Thanks

  13. #38
    Valued Member Pauliinho is offline
    MemberRank
    Apr 2009 Join Date
    140Posts

    Re: GunZ Server Status

    Quote Originally Posted by Creativity View Post
    I've been having some problems with this so would appreciate some help,

    $database['host'] = 'I presume this would be the server name / lan ip or would it be the ODBC soruce?';
    $database['name'] = 'database in the SQL server or ODBC source?';
    $database['user'] = 'sa';
    $datanase['pass'] = 'pass ofc';
    $database['driver'] = 'SQL Server';

    I tried changing these things, tried making a system and user DSN, with native server and native client, but its too much to test without being 100% sure what the things above want :p

    Thanks
    I Fixed Mine making the config like this :

    Code:
    <?php
    # ------------------------------------- #
    # ------ Server Status 4 Gunz --------- #
    # ------------------------------------- #
    # Made By     : LegacyCode              #
    # Fix  By     : Pauliinho
    # ------------------------------------- #
    # File        : config.php              #
    # Last Edited : 14/oct/09               #
    # ------------------------------------- #
    
    #-------------------------------------- #
    # --- ODBC Configuration (DataBase) --- #
    #-------------------------------------- #
    $database['host'] = 'PC\SQLEXPRESS';
    $database['name'] = 'GunzDB';
    $database['user'] = '';
    $datanase['pass'] = '';
    $database['driver'] = 'SQL Server';
    #-------------------------------------- #
    ?>
    Just Config Like that and will work

  14. #39
    Valued Member LegacyCode is offline
    MemberRank
    Aug 2009 Join Date
    HyruleLocation
    129Posts

    Re: GunZ Server Status

    Quote Originally Posted by Pauliinho View Post
    I Fixed Mine making the config like this :

    Code:
    <?php
    # ------------------------------------- #
    # ------ Server Status 4 Gunz --------- #
    # ------------------------------------- #
    # Made By     : LegacyCode              #
    # Fix  By     : Pauliinho
    # ------------------------------------- #
    # File        : config.php              #
    # Last Edited : 14/oct/09               #
    # ------------------------------------- #
    
    #-------------------------------------- #
    # --- ODBC Configuration (DataBase) --- #
    #-------------------------------------- #
    $database['host'] = 'PC\SQLEXPRESS';
    $database['name'] = 'GunzDB';
    $database['user'] = '';
    $datanase['pass'] = '';
    $database['driver'] = 'SQL Server';
    #-------------------------------------- #
    ?>
    Just Config Like that and will work
    There is nothing to fix about it.
    its just some settings fille it differs
    for everyone.

    i left my settings there as example.

    -------------------------
    host : MSSQL server.
    name : Name of the database.
    user : MSSQL username if used.
    pass : MSSQL password if used.
    driver : Driver used "SQL Server" or "SQL Native Client"
    --------------------------

    the host often uses "your-pc-name\SQLEXPRESS" if the
    MSSQL server is on the same machine.
    Last edited by LegacyCode; 29-11-09 at 10:28 AM.

  15. #40
    Valued Member Pauliinho is offline
    MemberRank
    Apr 2009 Join Date
    140Posts

    Re: GunZ Server Status

    Quote Originally Posted by LegacyCode View Post
    There is nothing to fix about it.
    its just some settings fille it differs
    for everyone.

    i left my settings there as example.

    -------------------------
    host : MSSQL server.
    name : Name of the database.
    user : MSSQL username if used.
    pass : MSSQL password if used.
    driver : Driver used "SQL Server" or "SQL Native Client"
    --------------------------

    the host often uses "your-pc-name\SQLEXPRESS" if the
    MSSQL server is on the same machine.
    When i put sa and my pw the status stop working

  16. #41
    Adrian - Gunz Addict Adriann is offline
    MemberRank
    Oct 2008 Join Date
    Miami, FLLocation
    658Posts

    Re: GunZ Server Status

    Quote Originally Posted by KillerStefan View Post
    Looks good, I like how the bar fills up the more people are playing.
    yea i like that and the percentage :) great release

  17. #42
    Be a kicker than cheater. cheaterastic is offline
    MemberRank
    Dec 2009 Join Date
    764Posts

    Re: GunZ Server Status

    PLS put a tutorial on what we will edit on this php pages....

    I just edit the config php...
    id,pass,server and DB



    THERE IS ERRORS>

  18. #43
    Infraction Banned Dylanw/<3 is offline
    MemberRank
    Jul 2010 Join Date
    New YorkLocation
    103Posts

    Re: GunZ Server Status

    Beast release.I like it. HOLY SHIT I JUST BUMPED AND OLD TOPIC. Please delete my post, I did not realise it.
    Last edited by Dylanw/<3; 01-08-10 at 05:43 PM.



Page 2 of 2 FirstFirst 12

Advertisement