How do I do this?

Results 1 to 13 of 13
  1. #1
    Enthusiast deathxel is offline
    MemberRank
    Oct 2007 Join Date
    32Posts

    How do I do this?

    Hi guys. I managed to setup my server with this tutorial: http://forum.ragezone.com/f245/tut-j...-guide-205502/

    Now i would like to a few things:

    - How do i setup a registration website?

    - How do i change the server name?

    - How do i change settings (such as default starting money, music playing during gameplay, images shown on loading screen, etc)?

    - Do i have to use no-ip so that when i restart my computer people can connect to my server? (cuz yknow when u reconnect ur ip changes..)

    - Once i edit the .mrs file by editing it with the mrs.exe and making it into a folder, how do i apply these settings?

    - How do i add new weapons, models, etc?

    - What are the admin commands?

    Thanks.


  2. #2
    Account Upgraded | Title Enabled! sexy fire slash is offline
    MemberRank
    Oct 2007 Join Date
    Canada B.C. Currently A Developer.Location
    553Posts

    Re: How do I do this?

    Death.

    Make GunZ Site: Go To Release Section And Find GunZWebPackage And Find A Guide.

    Change Server Name: Go To Messages.xml Inside System.mrs And Find The Current Name Of The Server And Change It To What Ever You Like.

    Changing Settings: Go In Mysql And Edit Table Called dbo.SpInsertChar Inside Stored Procedures and change the money you will find a line that says @Face @something here i forget and hen 0, 0, 0 etc to change bounty edit the second "0".

    Editing Loading screen And Images: Edit Default.mrs And Loadable.mrs inside interface.

    Changing Music: Edit BGM.mrs And Use A bgm Converter And Convert 6 Of Your Songs And Rename Them To Names Of The Ones Inside BGM.mrs Except For The One That Says Fin.

    New Weapons: Go In The Release Section And You Can Find A Tut There.

    Admin Commands: Depends What Server You Are Using.

    Last Step: UPDATE FILELIST.XML INSIDE SYSTEM.MRS OR YOU WILL GET NOMSG INSIDE THE GAME.

    Hope I Helped.

    Oh And I Want To Know How To Add Commands.

    Since I Am Helping A Lot Of People I Hope My Infracion Gets Taken Away.

  3. #3
    Banned MAXTRAXv3 is offline
    BannedRank
    Jan 2007 Join Date
    Perth, WesternLocation
    2,252Posts

    Re: How do I do this?

    - How do i change the server name?; hex edit gunz.exe and find the name that it currently say in the login(ctrl + F) change it to what you want if you still have some of the old name there type "."(a dot) over it and save

  4. #4
    Enthusiast deathxel is offline
    MemberRank
    Oct 2007 Join Date
    32Posts

    Re: How do I do this?

    thanks sexy fire slash - another thing - how do i change the icon of gunz? as in the image of Gunz.exe?

    Also, last time i changed the loading screen images, it worked but when i got to the login screen my cursor was gone. what happened?

  5. #5
    Account Upgraded | Title Enabled! sexy fire slash is offline
    MemberRank
    Oct 2007 Join Date
    Canada B.C. Currently A Developer.Location
    553Posts

    Re: How do I do this?

    Changing ICon Of GunZ You Need To Create An Image You Want And Make It .ico And Then Open The Thing You Want ICon Changed With PE Explorer And Change It.

    And About The Cursor I Don't Have Any Idea Of What Happened.

    What Did You Do?

    Rofl Max Don't Edit My Posts I Don't Like It.
    Last edited by sexy fire slash; 11-12-07 at 12:35 AM.

  6. #6
    Enthusiast deathxel is offline
    MemberRank
    Oct 2007 Join Date
    32Posts

    Re: How do I do this?

    Quote Originally Posted by sexy fire slash View Post
    Changing ICon Of GunZ You Need To Create An Image You Want And Make It .ico And Then Open The Thing You Want ICon Changed With PE Explorer And Change It.

    And About The Cursor I Don't Have Any Idea Of What Happened.

    What Did You Do?


    for the cursor thing, i dont know what happened all i changed was the .jpgs of the loading screen images

    can u explain better the icon of gunz? so r u saying u create an image as .ico? wats PE explorer?

    by the way u were wrong - in messages.xml there is nothing talking about server name. i couldnt find anything. Im talking about the server name displayed at the login screen. so help me find it please.

    u said update filelist.xml.. come on man explain more dude ur explanations dont make sense. what do you mean update?

  7. #7
    Account Upgraded | Title Enabled! sexy fire slash is offline
    MemberRank
    Oct 2007 Join Date
    Canada B.C. Currently A Developer.Location
    553Posts

    Re: How do I do this?

    Bah. It Is In Messages.xml. Ok What Is The Current Name That It Shows For The Servers?

  8. #8
    Enthusiast deathxel is offline
    MemberRank
    Oct 2007 Join Date
    32Posts

    Re: How do I do this?

    LegacyGamers is the current name displayed for the server name at the login screen

    so in what way do i edit Filelist.xml?

  9. #9
    Account Upgraded | Title Enabled! 7-Eleven is offline
    MemberRank
    Oct 2007 Join Date
    LalaLandLocation
    714Posts

    Re: How do I do this?

    He's using Dec server. He doesn't need to update filelist.

  10. #10
    Valued Member Komotost is offline
    MemberRank
    Jan 2007 Join Date
    114Posts

    Re: How do I do this?

    Locator.exe sends the server name to the client so they can connect...

    Since you are using an old server version and old runnable you are actually connection with the debug server which was renamed, So you need to hex it to what you want..

    As for the bounty, I will quote one of my posts I made yesterday..

    Quote Originally Posted by Komotost View Post
    Im a little late on this, I havent been around for a while...

    This is NOT true... You CAN change the items, bounty, level, etc, Of the character being created...

    The list of items that is on the character creating menu is in system\strings.xml and the strings for the item is actually stored in your database...

    I havent messed with a server in a very long time, so I will just tell you which string it is in, You can figure out what values are for what (Shouldnt be hard if you look at the character table, just a hint)

    Ok I just downloaded on of the sql db and here is where it is at...


    Code:
    /****** Object:  StoredProcedure [dbo].[spInsertChar]    Script Date: 03/10/2007 01:32:44 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    CREATE PROCEDURE [dbo].[spInsertChar]
        @nAID INT,
        @nCharIndex INT,
        @szName nvarchar(32),
        @nSex INT,
        @nHair INT,
        @nFace INT,
        @nCostume INT
    AS
    BEGIN
        SET NOCOUNT ON;
        
        DECLARE @cnt INT
        SELECT @cnt=COUNT(*)
        FROM Character
        WHERE AID = @nAID
        
        DECLARE @cid INT
        SELECT @cid=COUNT(*)
        FROM Character
    
        INSERT INTO Character
        VALUES(@nAID,@szName,@cnt,1,@nSex,@nCostume,@nFace,@nHair,NULL,0,99999999,0,0,0,0,0,0,0,0,0,0,0,0,@cnt,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NULL,getdate(),getdate(),0)
    END
    GO
    @nAID,@szName,@cnt,1,@nSex,@nCostume,@nFace,@nHair,NULL,0,99999999,0,0,0,0,0,0,0,0,0,0,0,0,@cnt,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NULL,getdate(),getdate(),0

    Is what you are looking for...

    Ok, I no longer have the database I edited on my computer so, I will tell you a rough idea of how to do it...

    Ok, The Costume is what you select such as Gun Priest, etc...

    You need to return the value for that and run a what/if/what ever it is for sql (I dont recall, it was my only time really working with it) anyways, Run it through the what/if/what ever command until the integer is equal to the one set in the sql...

    So, Now lets break this down (I know I said I was going to, But since I dont have the sql for you anymore I can at least do this)

    @nAID,@szName,@cnt,1,@nSex,@nCostume,@nFace,@nHair,NULL,0,99999999,0,0,0,0,0,0,0,0,0,0,0,0,@cnt,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NULL,getdate(),getdate(),0

    Account ID, Account Name, Character Number, Character Sex, Costume Selected, Face Selected, Hair Selected, Null, EXP, Bounty, Etc, Etc, Etc...


    Just look in your dbo.Character

    The sql might not be in exact order, But very close... Just need to change a 0 to the item number you want them to start with, YOu can find the 0 to change...

    Good luck

    Gondie/Komotost

  11. #11
    Account Upgraded | Title Enabled! sexy fire slash is offline
    MemberRank
    Oct 2007 Join Date
    Canada B.C. Currently A Developer.Location
    553Posts

    Re: How do I do this?

    Quote Originally Posted by deathxel View Post
    LegacyGamers is the current name displayed for the server name at the login screen

    so in what way do i edit Filelist.xml?
    You Don't Need To Edit Filelist.xml If You Can Attach Your Messages.xml File. And Tell Me What You Want The Name To Be.

    Edit: also add gunz.exe or what ever ur using maybe its theduel.exe im not sure.

  12. #12
    Enthusiast deathxel is offline
    MemberRank
    Oct 2007 Join Date
    32Posts

    Re: How do I do this?

    guys i got another question. For some reason, i managed to change the starting money of a new character but when u reconnect with that character he gets loads of money like 1295212 or something i dont remember the exact number. How do i fix that?

    il post the stuff u guys talked about later

  13. #13
    Account Upgraded | Title Enabled! sexy fire slash is offline
    MemberRank
    Oct 2007 Join Date
    Canada B.C. Currently A Developer.Location
    553Posts

    Re: How do I do this?

    Just Use Kekkus Server Files.



Advertisement