21/07/2008 Gunz Matchserver

Page 1 of 8 12345678 LastLast
Results 1 to 15 of 108
  1. #1
    HeroGamers Developer emisand is offline
    MemberRank
    Mar 2006 Join Date
    UruguayLocation
    330Posts

    21/07/2008 Gunz Matchserver

    Hello,

    I have seen some people saying that they have this server files.
    As I don't want them to have any advantage and prevent them from selling this, I'm releasing them.

    I didn't made any fix in this release, I just edited the server.ini to remove br gunz passwords and ip addresses and edited the matchserver to remove maiet information.

    Server Files:
    Mirror 1: http://www.megaupload.com/?d=527K5JVB
    Mirror 2: http://rapidshare.com/files/32542611...atchServer.rar

    Full Client from BR Gunz for this matchserver (25/07/2008):
    http://www.megaupload.com/?d=C0ZINFEH

    Client Update from BR Gunz for this matchserver (25/07/2008):
    http://www.megaupload.com/?d=XG01AA01

    Tables and Procedures for Gamble Items
    Credits to Theoretical

    Code:
    USE [GunzDB]
    GO
    /****** Object:  Table [dbo].[GambleItem]    Script Date: 12/24/2009 21:33:37 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[GambleItem](
    	[GIID] [int] NOT NULL CONSTRAINT [DF_GambleItem_GIID]  DEFAULT ((1)),
    	[Name] [varchar](64) NOT NULL,
    	[Description] [varchar](64) NULL,
    	[Price] [int] NOT NULL,
    	[StartDiffMin] [int] NOT NULL,
    	[LifeTimeMin] [int] NOT NULL,
    	[Opened] [int] NOT NULL,
    	[IsCash] [int] NOT NULL,
     CONSTRAINT [PK_GambleItem] PRIMARY KEY CLUSTERED 
    (
    	[GIID] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    
    GO
    SET ANSI_PADDING OFF
    
    
    USE [GunzDB]
    GO
    
    
    USE [GunzDB]
    GO
    /****** Object:  StoredProcedure [dbo].[spGetGambleItemList]    Script Date: 12/24/2009 21:34:27 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    
    CREATE PROC [dbo].[spGetGambleItemList] AS
    BEGIN
    	SELECT GIID,Name,Description,Price,StartDiffMin,LifeTimeMin,Opened,IsCash FROM
    GambleItem ORDER BY GIID ASC
    END
    
    
    /****** Object:  Table [dbo].[GambleRewardItem]    Script Date: 12/24/2009 21:33:56 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    CREATE TABLE [dbo].[GambleRewardItem](
    	[GIID] [int] NOT NULL CONSTRAINT [DF_GambleRewardItem_GIID]  DEFAULT ((1)),
    	[ItemIDMale] [int] NOT NULL,
    	[ItemIDFemale] [int] NOT NULL,
    	[RentHourPeriod] [int] NOT NULL,
    	[RatePerThousand] [int] NOT NULL,
     CONSTRAINT [PK_GambleRewardItem] PRIMARY KEY CLUSTERED 
    (
    	[GIID] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    
    
    
    
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    
    CREATE PROC [dbo].[spGetGambleRewardItem] AS
    BEGIN
    	SELECT GIID,ItemIDFemale,ItemIDMale,RentHourPeriod,RatePerThousand FROM
    GambleRewardItem ORDER BY GIID ASC
    END
    Use it at your own risk.
    Last edited by emisand; 25-12-09 at 05:05 AM. Reason: Added client links and Gamble Items Tables and Procs.


  2. #2

    Re: 21/07/2008 Gunz Matchserver

    Thanks Emisand.Merry Christmas.

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

    Re: 21/07/2008 Gunz Matchserver

    nice thank you.

  4. #4
    Account Upgraded | Title Enabled! alfredao is offline
    MemberRank
    Jan 2008 Join Date
    Coronel FabriciLocation
    705Posts

    Re: 21/07/2008 Gunz Matchserver

    Very Nice, Thanks ;D

  5. #5
    (。◕‿‿◕。) Nobody666 is offline
    MemberRank
    Oct 2008 Join Date
    1,773Posts

    Re: 21/07/2008 Gunz Matchserver

    Thanks alot.

  6. #6
    Doggie And Rice. Military is offline
    MemberRank
    Jun 2009 Join Date
    Here and AboutLocation
    3,301Posts

    Re: 21/07/2008 Gunz Matchserver

    I think I should release the 2008 BR Client, but I can do that tomorrow

  7. #7
    HeroGamers Developer emisand is offline
    MemberRank
    Mar 2006 Join Date
    UruguayLocation
    330Posts

    Re: 21/07/2008 Gunz Matchserver

    Here you have the client for this matchserver:

    ftp://fpatch.levelupgames.com.br/gun...e_20080725.exe

  8. #8
    Doggie And Rice. Military is offline
    MemberRank
    Jun 2009 Join Date
    Here and AboutLocation
    3,301Posts

    Re: 21/07/2008 Gunz Matchserver

    Quote Originally Posted by emisand View Post
    Here you have the client for this matchserver:

    ftp://fpatch.levelupgames.com.br/gun...e_20080725.exe
    nvm lol, I got it from there.

  9. #9
    Account Upgraded | Title Enabled! alfredao is offline
    MemberRank
    Jan 2008 Join Date
    Coronel FabriciLocation
    705Posts

    Re: 21/07/2008 Gunz Matchserver

    Can you post the DB? With new Stored procedures.

    spGetGambleItemList, spGetGambleRewardItem, spChangeGambleItemToRewardItem, spGetTeamID4, spTeam4WinTheGame, etc

  10. #10
    HeroGamers Developer emisand is offline
    MemberRank
    Mar 2006 Join Date
    UruguayLocation
    330Posts

    Re: 21/07/2008 Gunz Matchserver

    Quote Originally Posted by alfredao View Post
    Can you post the DB? With new Stored procedures.

    spGetGambleItemList, spGetGambleRewardItem, spChangeGambleItemToRewardItem, spGetTeamID4, spTeam4WinTheGame, etc
    I will not release that now.

  11. #11
    Account Upgraded | Title Enabled! alfredao is offline
    MemberRank
    Jan 2008 Join Date
    Coronel FabriciLocation
    705Posts

    Re: 21/07/2008 Gunz Matchserver

    Quote Originally Posted by emisand View Post
    I will not release that now.
    ok, thanks :(

  12. #12
    Account Upgraded | Title Enabled! RodiSR is offline
    MemberRank
    Oct 2009 Join Date
    313Posts

    Re: 21/07/2008 Gunz Matchserver

    Nice release emisand so im seeing you and lambda returning back at ragezone, cool this is a good christmas.
    Btw the link from the 2008 br client dosn't work, It isn't in the update folder from the ftp.
    Last edited by RodiSR; 24-12-09 at 08:15 PM.

  13. #13
    HeroGamers Developer emisand is offline
    MemberRank
    Mar 2006 Join Date
    UruguayLocation
    330Posts

    Re: 21/07/2008 Gunz Matchserver

    Im not returning back to this fucking community, Im just releasing this to prevent other fags to sell this shit or to believe they are better.
    Last edited by emisand; 24-12-09 at 08:18 PM.

  14. #14
    Novice jessika_ is offline
    MemberRank
    Jun 2009 Join Date
    4Posts

    Re: 21/07/2008 Gunz Matchserver

    thanks emisand DX

  15. #15
    Doggie And Rice. Military is offline
    MemberRank
    Jun 2009 Join Date
    Here and AboutLocation
    3,301Posts

    Re: 21/07/2008 Gunz Matchserver

    Quote Originally Posted by emisand View Post
    Im not returning buck to this fucking community, Im just releasing this to prevent other fags to sell this shit or to believe they are better.
    well said



Page 1 of 8 12345678 LastLast

Advertisement