Questions & Answers

Page 1 of 15 12345678911 ... LastLast
Results 1 to 25 of 355
  1. #1
    Account Upgraded | Title Enabled! bepetemish is offline
    MemberRank
    Nov 2006 Join Date
    The NetherlandsLocation
    384Posts

    Post Questions & Answers

    Questions & Awnsers
    of problems and the awnsers for them on the forum, credits for taking the time to do it goes to BEPETEMISH. Developer of DaVD Gunz.
    1. Questions awnsered about standard editing:
      • 1.1 How to add Quest Mode?
      • 1.2 How to change the starting level and bounty?
      • 1.3 How to add premium items?
      • 1.4 How to change weapon values?
      • 1.5 How to change login background?
      • 1.6 How to change the loading screen? (corrupt image files fixed)
      • 1.7 How to pack and unpack .mrs?
    2. Questions awnsered about server control:
      • 2.1 What are the GM Commands?
      • 2.2 How to make a Register Website?
      • 2.3 How to Upgrade to match server(14 Jul 2006, english version)?
    Q. 1.1 How to add Quest Mode?
    A.
    • <Part 1: Activate quest; credits to: Buga>
    Hi I know that too many people has problems with Quest, Here i have the Solution.

    First You need to add a Field at Character TABLE.
    The Column you have to ADD is QuestItemInfo and is VARCHAR (MAX)

    How to add the table:
    Go to the SQL SERVER MANAGEMENT STUDIO.
    Connect to the server
    Expand your DB
    Expand at tables,
    Right Click at Fields
    And select New Field
    So there you have to put the name (QuestItemInfo), then the type of data: varchar (MAX) , and then you check the box that says Allow NULL data.
    You are done with the Field
    Pictures to as extra support: (tnx to emisand)
    Picture 1
    Picture 2


    Then you need to Install this procedure:
    Code:
    CREATE PROCEDURE [dbo].[spSelectCharQuestItemInfoByCID]
    @nCID INT
    AS
    BEGIN
    -- SET NOCOUNT ON added to prevent extra result sets from
    -- interfering with SELECT statements.
    SET NOCOUNT ON;
     
    SELECT QuestItemInfo FROM Character Where CID = @nCID
     
    END
    How to install:
    Go to Procedures and Right Click there and select New Query, there u paste this code and click at Execute.
    • <Part 2.1: Working out the bugs, Editing config.ini; Credits to: emisand>
    Go to your match server folder,
    Open config.ini,
    you will see this line ;MODE="test",
    delete the ; so you will get MODE="test",
    now save it.
    • <Part 2.2: Solve nomsg bug; Credits to: AT.H.K>
    download this gunz.exe:
    Gunz.rar

    Put this gunz.exe in the gunz client folder instead of the origional. (back-up your origional)

    On to the database:
    Collapse the GunDB , Programmability then Stored Procedures like so:


    Now right click dbo.spInsertChar and press modify like this :D :


    Ok so thats done a window to the right of it will pop up:


    And DELETE all the text like it shows in that picture ^ .

    and PASTE this in it
    Code:
    set ANSI_NULLS ON
    set QUOTED_IDENTIFIER ON
    GO
    ALTER 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,50,@nSex,@nCostume,@nFace,@nHair,NULL,0,100000,0,0,0,0,0,0,0,0,0,0,0,0,@cnt,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,null)
    END
    • <Part 2.3: Quest doesn't show up as match type?>
    Open ChannelRule.xml
    Let all channel rules look like this:
    Code:
    <CHANNELRULE id="0" name="novice">
    <MAP name="Mansion"/>
    <MAP name="Prison"/>
    <MAP name="Prison II"/>
    <MAP name="Station"/>
    <MAP name="Battle Arena"/>
    <MAP name="Town"/>
    <MAP name="Snow_Town"/>
    <MAP name="Ruin"/>
    <MAP name="Dungeon"/>
    <MAP name="Castle"/>
    <MAP name="Island"/>
    <MAP name="Garden"/>
    <MAP name="Factory"/>
    <MAP name="Port"/>
    <MAP name="Lost Shrine"/>
    <MAP name="Stairway"/>
    <MAP name="Hall"/>
    <MAP name="Catacomb"/>
    <MAP name="Shower Room"/>
     
    <GAMETYPE id="0" />
    <GAMETYPE id="1" />
    <GAMETYPE id="2" />
    <GAMETYPE id="3" />
    <GAMETYPE id="4" />
    <GAMETYPE id="5" />
    <GAMETYPE id="6" />
    <GAMETYPE id="7" />
    <GAMETYPE id="8" />
    </CHANNELRULE>
    What you do here is adding GAMETYPE 7, game type 7 is quest mode. So add quest to the channels you want, you don't need to give all channels quest available.
    • <Part 2.4: Character walks out screen; Credits to: emisand>
    Add the table:
    Go to the SQL SERVER MANAGEMENT STUDIO.
    Connect to the server
    Expand your DB
    Expand at tables,
    Right Click at Columns
    And select New Column
    So there you have to put the name (QuestItemInfo), then the type of data: varchar (MAX) , and then you check the box that says Allow NULL data.
    You are done with the Field



    Q. 1.2 How to change the starting level and bounty?
    A.
    <Editing; credits to: Bepetemish>

    Open your database,
    browse to spInsterChar, (its under Stored Procedures)
    right click it and choose "modify"
    find the part

    Code:
    VALUES(@nAID,@szName,@cnt,50,@nSex,@nCostume,@nFac e,@nHair,NULL,0,100000,0,0,0,0,0,0,0,0,0,0,0,0,@cn t,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,NULL)
    50 = starting level
    100000 = starting bounty
    Note that you will start naked so you need to give peaple starting money so they can buy their gear.


    Q. 1.3 How to add Premium Items?
    A.
    • <Part 1: Editing shop.xml; Credits to: hunter1577 and zozole003>
    Go to your match server folder, (mine is located in C:\gunzserver\match server\)
    Make a back-up of shop.xml
    Open shop.xml
    Delete everything inside
    Now paste this:
    [code]
    <?xml version="1.0" encoding="euc-kr" ?>
    <XML id="shop">
    <!--
    Last edited by bepetemish; 18-01-07 at 02:30 PM.


  2. #2
    C/C++ Programmer SirMaster is offline
    MemberRank
    Mar 2006 Join Date
    500Posts
    already posted solution for Friend System(Credits to Me(SirMaster) and Mythicals): Search: [Solution]ADD Friend and [Solution]GetFriendList

  3. #3
    Account Upgraded | Title Enabled! MAXTRAXv2 is offline
    MemberRank
    Jan 2007 Join Date
    204Posts
    you know how you say: How to install:
    Go to Procedures and Right Click there and select New Query, there u paste this code and click at Execute.

    where is Procedures?(pic would be good)
    thx for info!

  4. #4
    Account Upgraded | Title Enabled! Dark Thoot is offline
    MemberRank
    Sep 2005 Join Date
    NapoliLocation
    246Posts
    Adding map is simple download map and repleace into GunZ client(Folder map).For fix friendlist there are 2 topic of SirMaster:
    AddFriend:
    http://forum.ragezone.com/gunz-onlin...dd-206170.html
    GetFriendList:
    http://forum.ragezone.com/gunz-onlin...st-206236.html

  5. #5
    Account Upgraded | Title Enabled! bepetemish is offline
    MemberRank
    Nov 2006 Join Date
    The NetherlandsLocation
    384Posts
    Dark Thoot, i know its easy :). But im searching for some maps so i can kinda make a map pack and then post it with the step-by-step adding map tutorial. And you can make map adding more advanced :), if you make a whole new map (not editing a exsiting one) you will need to make a .xml script that indicates spawn points and all that kind of stuff. But that will come when their is a tool released to make new maps.

    Tnx for those links. Now i don't have to search for myself :)

  6. #6
    Account Upgraded | Title Enabled! MAXTRAXv2 is offline
    MemberRank
    Jan 2007 Join Date
    204Posts
    plz help me on what i posted!

  7. #7
    Account Upgraded | Title Enabled! bepetemish is offline
    MemberRank
    Nov 2006 Join Date
    The NetherlandsLocation
    384Posts
    working on it, but im not at home. So i will need to find a picture someone else posted and edit it. Or help me with that!, make a picture of your database with all menu's extracted and pm it to me. Then i will edit the pic and post it here.

  8. #8
    Account Upgraded | Title Enabled! Dark Thoot is offline
    MemberRank
    Sep 2005 Join Date
    NapoliLocation
    246Posts
    Quote Originally Posted by bepetemish View Post
    Dark Thoot, i know its easy :). But im searching for some maps so i can kinda make a map pack and then post it with the step-by-step adding map tutorial. And you can make map adding more advanced :), if you make a whole new map (not editing a exsiting one) you will need to make a .xml script that indicates spawn points and all that kind of stuff. But that will come when their is a tool released to make new maps.

    Tnx for those links. Now i don't have to search for myself :)
    Yes it isn't simple..... I read somewere for editing map need PhotoshopCS,is righ??(and unpack maps)

  9. #9
    Account Upgraded | Title Enabled! bepetemish is offline
    MemberRank
    Nov 2006 Join Date
    The NetherlandsLocation
    384Posts
    you need photoshop CS 1, 2 or 3(beta) with DDS plugin. But thats to edit maps, just painting the wall.
    Last edited by bepetemish; 04-01-07 at 12:33 PM.

  10. #10
    Valued Member republic is offline
    MemberRank
    Dec 2006 Join Date
    122Posts
    /gtgod
    /gtspn
    /gtclear
    /gtreload
    /gtsc
    /gtfin
    /gtweaknpcs

    how to work those commands and also

    how to fix the bounty going into negative numbers after quest ?

  11. #11
    Account Upgraded | Title Enabled! bepetemish is offline
    MemberRank
    Nov 2006 Join Date
    The NetherlandsLocation
    384Posts
    /gtgod
    /gtspn
    /gtclear
    /gtreload
    /gtsc
    /gtfin
    /gtweaknpcs
    i think you just need to type them when you are playing without a char that got administrator rights.

    how to fix the bounty going into negative numbers after quest ?
    Unknown yet, let me know how when you know.

  12. #12
    Account Upgraded | Title Enabled! MAXTRAXv2 is offline
    MemberRank
    Jan 2007 Join Date
    204Posts
    im useing your gunz.exe and i changed the sever config but i still get
    nomsg E-1
    error, wtf?

    oh and to change the music just Unpack bgm.mrs convert music to ogg files rename to the origional files and packup bgm.mrs agen(backup old one)

  13. #13
    MentaL's Slave Keith is offline
    LegendRank
    Nov 2004 Join Date
    2,671Posts
    holy mother of - thanks lol

  14. #14
    Account Upgraded | Title Enabled! bepetemish is offline
    MemberRank
    Nov 2006 Join Date
    The NetherlandsLocation
    384Posts
    Quote Originally Posted by MAXTRAXv2 View Post
    im useing your gunz.exe and i changed the sever config but i still get

    nomsg E-1

    error, wtf?



    oh and to change the music just Unpack bgm.mrs convert music to ogg files rename to the origional files and packup bgm.mrs agen(backup old one)


    If you got a good converter that can convert random music files to .ogg files i will put it in the Q&A list.



    And do you get the nomsg E-1 when creating a character?

    (pm me and i will help you out)





    holy mother of - thanks lol
    Tnx for sticky this :)

  15. #15
    Account Upgraded | Title Enabled! MAXTRAXv2 is offline
    MemberRank
    Jan 2007 Join Date
    204Posts
    any one know here i can get an older default.mrs ?

  16. #16
    Account Upgraded | Title Enabled! bepetemish is offline
    MemberRank
    Nov 2006 Join Date
    The NetherlandsLocation
    384Posts
    Quote Originally Posted by MAXTRAXv2 View Post
    im useing your gunz.exe and i changed the sever config but i still get
    nomsg E-1
    error, wtf?
    Owww, it isn't my gunz.exe, im releasing it but someone else made it. The problem is i don't know who made it, so i give credits to nobody.

  17. #17
    Account Upgraded | Title Enabled! MAXTRAXv2 is offline
    MemberRank
    Jan 2007 Join Date
    204Posts
    how do i get my sever online?
    i setup the config for match sever and did a port checkport_check and i got this
    No response from MSSQL 139.168.228.74!
    No response from HTTP 139.168.228.74!
    139.168.228.74 GunZ Server Port OK!
    but i cant conected?
    do i need MSSQL online? if so how do i do that?

  18. #18
    Account Upgraded | Title Enabled! MAXTRAXv2 is offline
    MemberRank
    Jan 2007 Join Date
    204Posts
    how do i get MSSQL online plz help!
    No response from MSSQL 139.168.228.74!
    No response from HTTP 139.168.228.74!
    139.168.228.74 GunZ Server Port OK!

    btw i got all quest maps and all monster mrs files

  19. #19
    Account Upgraded | Title Enabled! bepetemish is offline
    MemberRank
    Nov 2006 Join Date
    The NetherlandsLocation
    384Posts
    hmmm, sorry MAXTRAXv2 but i don't know how to solve this. I havn't tried to get my server only yet, right now its only used to build on it and my lil brothers are playing on it thruw network (not hamachi).
    So can't help you with this.

    Searching for the Japan Gunz Folder, someone got it?

  20. #20
    Account Upgraded | Title Enabled! MAXTRAXv2 is offline
    MemberRank
    Jan 2007 Join Date
    204Posts
    yer well its not all in jgunz, lol
    ill put upload here in an hour(the time that it takes to upload)

  21. #21
    Account Upgraded | Title Enabled! bepetemish is offline
    MemberRank
    Nov 2006 Join Date
    The NetherlandsLocation
    384Posts
    i got most of the files, except jgunz and kgunz. So thats the only things i need to combine all stuff and proceed with my major item list :)

  22. #22
    Valued Member republic is offline
    MemberRank
    Dec 2006 Join Date
    122Posts
    http://forum.ragezone.com/gunz-relea...ng-206728.html
    okay is there a guide on exactly how to setup server.ini ect and how to use locater on those files

    and also a guide how to set up the php for registration ?

  23. #23
    Apprentice Shimigami is offline
    MemberRank
    Jan 2007 Join Date
    5Posts
    i have question.. when the server will up.. n where to download the link?

  24. #24
    Account Upgraded | Title Enabled! bepetemish is offline
    MemberRank
    Nov 2006 Join Date
    The NetherlandsLocation
    384Posts
    republic, the registration isn't finished. I saw a post of someone with more information but i can't find it back. Tommorow or maiby today i will update it.

    Shimigame about which server are you talking? DaVD? RageZone?

  25. #25
    Valued Member republic is offline
    MemberRank
    Dec 2006 Join Date
    122Posts
    what about the match server thing O_o it dont work for me



Page 1 of 15 12345678911 ... LastLast

Advertisement