Questions & Answers

Page 4 of 15 FirstFirst 12345678910111214 ... LastLast
Results 76 to 100 of 355
  1. #76
    Member lwirkk is offline
    MemberRank
    Jan 2007 Join Date
    60Posts
    Quote Originally Posted by bepetemish View Post
    i already posted a solution for the default.mrs :),
    I don't think i understand you 100% right now because its a little messy :) but who cares, take a look at the default.mrs part in Q&A main post.
    i have see. but i have saw:
    The my default.mrs and loadable.mrs later editable is 100% SUCESS. ^^ ....

  2. #77
    Account Upgraded | Title Enabled! Centrix is offline
    MemberRank
    Jan 2007 Join Date
    NetherlandsLocation
    696Posts
    I got a non-corrupted default/loadable/login.mrs too >.>

  3. #78
    Account Upgraded | Title Enabled! bepetemish is offline
    MemberRank
    Nov 2006 Join Date
    The NetherlandsLocation
    384Posts
    Well, im fine with client files that get corrupted when they get unpacked, this will be one of the things that will scare noobs when trying to hack my server, only pro hackers will continu but hee, i just ban those :)

  4. #79
    Account Upgraded | Title Enabled! vDrag0n is offline
    MemberRank
    Dec 2006 Join Date
    216Posts
    MatchServer from July...anyone fixed yet?

  5. #80
    Account Upgraded | Title Enabled! bepetemish is offline
    MemberRank
    Nov 2006 Join Date
    The NetherlandsLocation
    384Posts
    nope

  6. #81
    Valued Member republic is offline
    MemberRank
    Dec 2006 Join Date
    122Posts
    incase anyone wanted to know maybe you can add this to your question answers
    to add hp ap and Ammo to your drops take your droptabel from matchserver and put it in your system.mrs
    it works like this because system.mrs is out of date and droptable inside matchserver isnt
    Attached Thumbnails Attached Thumbnails gunz226.jpg   gunz227.jpg  

  7. #82
    Enthusiast lestad983 is offline
    MemberRank
    Aug 2005 Join Date
    Lima - PerLocation
    28Posts
    the problem which I have is with the MatchServer 14Jul2006 first that when activating the XTRAP does not activate the MatchServer.exe and the GUNZ.exe that we included our client, does not begin to load and closes the window. perhaps as it can be the problem, must use a present client but, use the one of the Web ijji and also with which one talks about in the forums, as it can fix that problem. An exact explanation but approaches the events.

  8. #83
    Member snlwg is offline
    MemberRank
    Jan 2007 Join Date
    Mansion killing goblinsLocation
    84Posts
    The post u have made was alright =)

  9. #84
    Account Upgraded | Title Enabled! vDrag0n is offline
    MemberRank
    Dec 2006 Join Date
    216Posts
    Any info about the shop there?

  10. #85
    Account Upgraded | Title Enabled! bepetemish is offline
    MemberRank
    Nov 2006 Join Date
    The NetherlandsLocation
    384Posts
    What do you want to know about the shop? Adding premium items? If so, yes its in Q&A.

    Q&A UPDATED, THE PROBLEM WAS THAT ALL TAGS CHANGED TO HTML TAGS SO THEY BECAME INVALID. PEACEOFPI REPAIRED THE TAGS AND SENDED ME THE PHPBB VERSION, TNX AGAIN.

  11. #86
    Valued Member Larceforever is offline
    MemberRank
    Dec 2004 Join Date
    SomewhereLocation
    124Posts
    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,@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)
    END
    some mistake on spInsertChar here is fix one

    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
    Last edited by Larceforever; 09-01-07 at 10:27 AM.

  12. #87
    Account Upgraded | Title Enabled! bepetemish is offline
    MemberRank
    Nov 2006 Join Date
    The NetherlandsLocation
    384Posts
    Tnx, updated.

  13. #88
    Valued Member Avunari is offline
    MemberRank
    Jan 2005 Join Date
    Somewhere.. There..Location
    133Posts
    Good work! Thanks

  14. #89
    Account Upgraded | Title Enabled! bepetemish is offline
    MemberRank
    Nov 2006 Join Date
    The NetherlandsLocation
    384Posts
    hehe no problem, but im not the only one that worked on this. But i guess you do noticed all the "credits to:" :)

  15. #90
    Account Upgraded | Title Enabled! MAXTRAXv2 is offline
    MemberRank
    Jan 2007 Join Date
    204Posts
    how do i sell premium items?

  16. #91
    Account Upgraded | Title Enabled! bepetemish is offline
    MemberRank
    Nov 2006 Join Date
    The NetherlandsLocation
    384Posts
    you can't,
    in the normal version of gunz you can't sell premiums either.
    The difference between the normal version is that you bought it for bounty instead of real money.

  17. #92
    Account Upgraded | Title Enabled! MAXTRAXv2 is offline
    MemberRank
    Jan 2007 Join Date
    204Posts
    is there some way of deleteing it like as in make some think to say you sold it but you realy deleted it

  18. #93
    Account Upgraded | Title Enabled! bepetemish is offline
    MemberRank
    Nov 2006 Join Date
    The NetherlandsLocation
    384Posts
    don't know yet.

  19. #94
    Proficient Member hlcm is offline
    MemberRank
    Jan 2007 Join Date
    153Posts
    @bepetemish : how to add quest map ?
    please make guild for me ... thanks a lot

  20. #95
    Account Upgraded | Title Enabled! bepetemish is offline
    MemberRank
    Nov 2006 Join Date
    The NetherlandsLocation
    384Posts
    I will see if i got time today, if i can't make it today i will try putting it in their tommorow.

  21. #96
    Valued Member Avunari is offline
    MemberRank
    Jan 2005 Join Date
    Somewhere.. There..Location
    133Posts
    In the loading background changing, It written "don't worry about getting the good files, i will upload them here" :P Where are they? thanks.

  22. #97
    Valued Member Komotost is offline
    MemberRank
    Jan 2007 Join Date
    114Posts
    If no one has anwsered to shop.xml then I shall do so now.

    First, you need to load shop.xml into your edtior (what ever you use, notepad, dreamweaver, what ever)

    Once its loaded you will see the php/xml headers

    PHP Code:
    <?xml version="1.0" encoding="euc-kr" ?>
    <XML id="shop">
    Then you will notice some notes in korean which are for nothing, really...

    (This is what they really are)

    <!-- Sinsang width -->
    <!-- Test -->
    Then, you will see

    Code:
        <!-- Dagger -->
        <SELL itemid="1" />
        <SELL itemid="11" />
        <SELL itemid="3" />
    the <!-- Dagger --> is simply saying which type of item is listed below

    [QUOTE] <SELL itemid="1" />[/QUOTE]

    Red does not change, Blue is the item ID of the item, which is listed in zitem.xml

    For example: Say you wanted to add the quest mode level 65 torn page to the shop, you can add it anywhere you would like, but I would suggest adding it to the quest section..

    Code:
        <!-- Quest Page -->
        <SELL itemid="200001" />
        <SELL itemid="200002" />
        <SELL itemid="200003" />
        <!--
        <SELL itemid="200004" />
        -->

    You will notice its already there, but it has the 'note' indicators around it, so its excluded as code and simply being skipped. So you want to add it, do this.

    Code:
        <!-- Quest Page -->
        <SELL itemid="200001" />
        <SELL itemid="200002" />
        <SELL itemid="200003" />
        <SELL itemid="200004" />
    You can do this for your own items, but simply add the code in both red and blew on a new line but change the item ID (blue) to the item ID you added, or want to add to the shop.

  23. #98
    Valued Member Avunari is offline
    MemberRank
    Jan 2005 Join Date
    Somewhere.. There..Location
    133Posts
    About changing loading background, When i'm doing "ren blabla Default.rar" The "blabla" File is just getting changed to "Default.rar" and There's nothing in the file.

  24. #99
    GunZ messiah peaceofpi is offline
    MemberRank
    Nov 2006 Join Date
    333Posts
    In case it isn't clear, this should be all you have to do.
    • Put old .mrs file somewhere
    • Open WinRAR
    • Navigate to the .mrs location
    • Right click it, repair, as ZIP
    • Extract new rebuilt archive

    If memory serves.

  25. #100
    Valued Member Komotost is offline
    MemberRank
    Jan 2007 Join Date
    114Posts
    Why don't you just use the mrs decompresser and write the batch file to unpack it? mrs.exe d Default.mrs (save as .bat)

    Also, Dont forget to MOVE the folder from the location of the MRS file or rename it. Sometimes (haven't found exactlly what all files this happens to) when you unpack the mrs files and leave it in the same folder as the mrs file with the same name, instead of reading the path inside the mrs file it runs it through the dir, example: Instead of looking in system.mrs for zitem.xml it will look in the folder system for the file zitem.xml and gunz wont load.



Advertisement