Page 1 of 2

[Help]Take A Look Here Guys Plz

Posted: Sun Jan 10, 2010 10:05 am
by Dios
Hey guys i have a problem with my custom gm shops :S
i use gracia epilogue client and latest rev of l2java..well my problem is that when i try to click to buy some items for example:
S80 weapons (button) i got dc critical error and dissconects me :s plz can any1 solve my problem? :cry:

p.s i use a gracia final gmshop with final xml multisell...it used to work on epilogue l2jofficial pack :s...
edited: i tryied to copy and edit a epilogue xml multisell and same problem each time i want to go to itemlist on gmshop its disconnect me :s plz help

here is a photo: http://i778.photobucket.com/albums/yy70 ... t00000.jpg
when i push the button s grade armors (not only) its disconnects me
and when it disconnects me it says this:
Lineage Crush report:

2010.1.10 12:52:13
OS : Windows XP 5.1 (Build: 2600)
CPU : AuthenticAMD AMD Athlon(tm) 64 X2 Dual Core Processor 5200+ @ 2715 MHz 2047MB RAM
Video : ATI Radeon HD 3600 Series (6999)
PosCode : LS1(148) 147009:26619:-2201 2/1 [481]

General protection fault!

History: UNetworkHandler::Tick <- Function Name=MultiSellListPa <- UGameEngine::Tick <- UpdateWorld <- MainLoop

plz help :/

p.s and how i suppose to get an answer :S i dont know which is the right section soz for double post plz help

Re: [Help]Problem With GmShop

Posted: Sun Jan 10, 2010 6:32 pm
by Deadmeat
Sounds like you have an error in one of your HTML or XML files or you used an HTML tag the L2 Client does not support, you can also get this error if your HTML file is to long.

Re: [Help]Take A Look Here Guys Plz

Posted: Sun Jan 10, 2010 6:46 pm
by Dios
Here Are Codes:
<html><title>GM Shop</title>
<body>
<center>
<table width=230>
<tr><td><br></td></tr>
<tr>
<td align=center><img src="icon.armor_t91_uf_i00" width=32 height=32></td>
<td align=center><button value="S-80" action="bypass -h npc_%objectId%_multisell 90029" width=85 height=26 back="L2UI_ct1.button_df" fore="L2UI_ct1.button_df"></td>
<td align=center><img src="icon.armor_t93_ue_i00" width=32 height=32></td>
</tr>
<tr><td><br></td></tr>
<tr>
<td align=center><img src="icon.armor_t89_ul_i00" width=32 height=32></td>
<td align=center><button value="S Grade" action="bypass -h npc_%objectId%_multisell 90000" width=85 height=26 back="L2UI_ct1.button_df" fore="L2UI_ct1.button_df"></td>
<td align=center><img src="icon.armor_t88_u_i00" width=32 height=32></td>
</tr>
<tr><td><br></td></tr>
</table>
<button value="Back" action="bypass -h npc_%objectId%_Link merchant/99999.htm" width=85 height=20 back="L2UI_ct1.button_df" fore="L2UI_ct1.button_df">
</center>
</body>
</html>

and


<?xml version='1.0' encoding='utf-8'?>
<!-- Imperial Crusader Breastplate -->
<list>

<item id="1">
<ingredient id="57" count="2000000000"/>
<production id="6373" count="1"/>
<production id="6374" count="1"/>
<production id="6376" count="1"/>
<production id="6375" count="1"/>
<production id="6378" count="1"/>
<production id="6377" count="1"/>
</item>
<item id="2">
<ingredient id="57" count="2000000000"/>
<production id="6379" count="1"/>
<production id="6381" count="1"/>
<production id="6380" count="1"/>
<production id="6382" count="1"/>
</item>
<item id="3">
<ingredient id="57" count="2000000000"/>
<production id="6383" count="1"/>
<production id="6385" count="1"/>
<production id="6384" count="1"/>
<production id="6386" count="1"/>
</item>
</list>


do you see any problem? :S
why every time i push the button to show me the list of items which can be bought i get dc :S

Re: [Help]Take A Look Here Guys Plz

Posted: Sun Jan 10, 2010 6:59 pm
by Deadmeat
Did you type this in or copy and paste it from your files and I see you have two XML files which XML file did you copy and paste here the 90000.xml or the 90029.xml file?

Re: [Help]Take A Look Here Guys Plz

Posted: Sun Jan 10, 2010 7:12 pm
by Dios
i c/p this xml from a gmshop ct2.3 from mxc...i tryied to c/p a xml which already exist in multysell and rename it and add these stuff but pointless i still get dc:(
this xml is 90000..

Re: [Help]Take A Look Here Guys Plz

Posted: Mon Jan 11, 2010 6:32 am
by janiii
it is something custom that makes you d/c . we can't know what you did. post your code in code tags (just edit the post where you posted the code, no need to post it again, just add code tags) . probably you just used some different characters that client doesn't support and you don't see them. or it is the blank line between list and first item tag. just check the code.

or try this one:

Code: Select all

<?xml version="1.0" encoding="UTF-8"?><list>	<item id="1">		<ingredient id="57" count="2000000000"/>		<production id="6373" count="1"/>		<production id="6374" count="1"/>		<production id="6376" count="1"/>		<production id="6375" count="1"/>		<production id="6378" count="1"/>		<production id="6377" count="1"/>	</item>	<item id="2">		<ingredient id="57" count="2000000000"/>		<production id="6379" count="1"/>		<production id="6381" count="1"/>		<production id="6380" count="1"/>		<production id="6382" count="1"/>	</item>	<item id="3">		<ingredient id="57" count="2000000000"/>		<production id="6383" count="1"/>		<production id="6385" count="1"/>		<production id="6384" count="1"/>		<production id="6386" count="1"/>	</item></list>

Re: [Help]Take A Look Here Guys Plz

Posted: Mon Jan 11, 2010 12:56 pm
by Dios
janiii wrote:it is something custom that makes you d/c . we can't know what you did. post your code in code tags (just edit the post where you posted the code, no need to post it again, just add code tags) . probably you just used some different characters that client doesn't support and you don't see them. or it is the blank line between list and first item tag. just check the code.

or try this one:

Code: Select all

<?xml version="1.0" encoding="UTF-8"?><list>	<item id="1">		<ingredient id="57" count="2000000000"/>		<production id="6373" count="1"/>		<production id="6374" count="1"/>		<production id="6376" count="1"/>		<production id="6375" count="1"/>		<production id="6378" count="1"/>		<production id="6377" count="1"/>	</item>	<item id="2">		<ingredient id="57" count="2000000000"/>		<production id="6379" count="1"/>		<production id="6381" count="1"/>		<production id="6380" count="1"/>		<production id="6382" count="1"/>	</item>	<item id="3">		<ingredient id="57" count="2000000000"/>		<production id="6383" count="1"/>		<production id="6385" count="1"/>		<production id="6384" count="1"/>		<production id="6386" count="1"/>	</item></list>
its not only my xml i said i tryied to buy from a retail npc merchant that it already exist in game not edited by me and i get dc..i tried to set your code and i continue to have the problem :/


this is the npc retail wich i tried:

Code: Select all

<html><body>Merchant Galladuchi:<br>To be a legendary warrior, you need a one-of-a-kind weapon, the sort of thing bards will sing about for generations!<br>We can provide you that, but I'm sorry to say that we cannot accept Adena as payment. We only accept <font color="LEVEL">crystals</font>.<br>If you require new armor or other rare items, please speak with my wife.<br><a action="bypass -h npc_%objectId%_multisell 300974001">Trade weapons.</a><br><a action="bypass -h npc_%objectId%_Quest">Quest</a></body></html>
and here is the multysell:

Code: Select all

<?xml version="1.0" encoding="UTF-8"?>	<!-- Trader Galladucci (Luxury Shop) Weapons --><list>	<item id="1">		<ingredient id="1460" count="579" />		<ingredient id="1459" count="1737" />		<production id="78" count="1" />	</item>	<item id="2">		<ingredient id="1460" count="579" />		<ingredient id="1459" count="1737" />		<production id="91" count="1" />	</item>	<item id="3">		<ingredient id="1460" count="579" />		<ingredient id="1459" count="1737" />		<production id="92" count="1" />	</item>	<item id="4">		<ingredient id="1460" count="579" />		<ingredient id="1459" count="1737" />		<production id="142" count="1" />	</item>	<item id="5">		<ingredient id="1460" count="579" />		<ingredient id="1459" count="1737" />		<production id="148" count="1" />	</item>	<item id="6">		<ingredient id="1460" count="579" />		<ingredient id="1459" count="1737" />		<production id="229" count="1" />	</item>	<item id="7">		<ingredient id="1460" count="579" />		<ingredient id="1459" count="1737" />		<production id="243" count="1" />	</item>	<item id="8">		<ingredient id="1460" count="579" />		<ingredient id="1459" count="1737" />		<production id="267" count="1" />	</item>	<item id="9">		<ingredient id="1460" count="579" />		<ingredient id="1459" count="1737" />		<production id="284" count="1" />	</item>	<item id="10">		<ingredient id="1460" count="579" />		<ingredient id="1459" count="1737" />		<production id="300" count="1" />	</item>	<item id="11">		<ingredient id="1460" count="579" />		<ingredient id="1459" count="1737" />		<production id="7892" count="1" />	</item>	<item id="12">		<ingredient id="1460" count="579" />		<ingredient id="1459" count="1737" />		<production id="7900" count="1" />	</item></list>
i get dc from this npc too :S i think it is pack's probel i compiled it 2 times without any errors but i have this problem any idea why? :/

Re: [Help]Take A Look Here Guys Plz

Posted: Mon Jan 11, 2010 1:24 pm
by janiii
do you have problems with each multisell?

i do not have such problem, checked Galladucci now, and everything works fine, no d/c, no error. so probably it is problem of your client. try to update your client properly, without any client modifications. really no idea what else could make you problems with clean core/dp .

Re: [Help]Take A Look Here Guys Plz

Posted: Mon Jan 11, 2010 1:33 pm
by Dios
i updated it already with PTS to Live Conversion zip file.
:/
what should i do now...?tell me your ideas and ill make them ste by step plz help me solve this problem :'(

Re: [Help]Take A Look Here Guys Plz

Posted: Mon Jan 11, 2010 1:34 pm
by Notorious
Delete systemfolder, run updater and let it finish, then press "Checking Files" and let it download the rest of the files. You're client may not be fully up to date.

Re: [Help]Take A Look Here Guys Plz

Posted: Mon Jan 11, 2010 1:40 pm
by Dios
0k

Re: [Help]Take A Look Here Guys Plz

Posted: Mon Jan 11, 2010 1:54 pm
by Dios
hey i updated it now what?...i use a patched system to log in this one http://www.maxcheaters.com/forum/index. ... c=103216.0

Re: [Help]Take A Look Here Guys Plz

Posted: Mon Jan 11, 2010 1:59 pm
by janiii
lol. and you wonder why you have problems. probably the system you have is from the older gracia epilogue release. did you also change min and max client protocol revision in your config?
why you even update your client when after that you replace the system folder with some crap? ppl, try to use your head.. update your client and don't mod your client!!! you will see wonders, you will get no more d/c on multisell!
janiii wrote:do you have problems with each multisell?

i do not have such problem, checked Galladucci now, and everything works fine, no d/c, no error. so probably it is problem of your client. try to update your client properly, without any client modifications. really no idea what else could make you problems with clean core/dp .

Re: [Help]Take A Look Here Guys Plz

Posted: Mon Jan 11, 2010 2:01 pm
by Dios
nop protocols are 146 min and max 146...tell me which patch i should use? :S

Re: [Help]Take A Look Here Guys Plz

Posted: Mon Jan 11, 2010 2:07 pm
by Dios
k i got it so i have to update it and after that set my ip in l2.ini right?oh and delete gameguard..