i have see. but i have saw:
The my default.mrs and loadable.mrs later editable is 100% SUCESS. ^^ ....
Printable View
I got a non-corrupted default/loadable/login.mrs too >.>
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 :)
MatchServer from July...anyone fixed yet?
nope
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
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.
The post u have made was alright =)
Any info about the shop there?
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.
some mistake on spInsertChar here is fix oneCode: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
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
Tnx, updated.
Good work! Thanks
hehe no problem, but im not the only one that worked on this. But i guess you do noticed all the "credits to:" :)
how do i sell premium items?
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.
is there some way of deleteing it like as in make some think to say you sold it but you realy deleted it
don't know yet.
@bepetemish : how to add quest map ?
please make guild for me ... thanks a lot
I will see if i got time today, if i can't make it today i will try putting it in their tommorow.
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.
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
Then you will notice some notes in korean which are for nothing, really...PHP Code:<?xml version="1.0" encoding="euc-kr" ?>
<XML id="shop">
(This is what they really are)
Then, you will seeQuote:
<!-- Sinsang width -->
<!-- Test -->
the <!-- Dagger --> is simply saying which type of item is listed belowCode:<!-- Dagger -->
<SELL itemid="1" />
<SELL itemid="11" />
<SELL itemid="3" />
[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.
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.Code:<!-- Quest Page -->
<SELL itemid="200001" />
<SELL itemid="200002" />
<SELL itemid="200003" />
<SELL itemid="200004" />
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.
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.
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.