Page 1 of 1

Error Event Faenor!

Posted: Mon Aug 01, 2011 3:39 pm
by crazyshock
If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision Number: Last Revision High Five Beta
L2JDP Revision Number:Last Revision High Five Beta

My erro is em anex.
http://imageshack.us/photo/my-images/89/err01.png/
I added the normal event. But this message appears in the log Gameserver

Re: Error Event Faenor!

Posted: Mon Aug 01, 2011 4:22 pm
by janiii
provide your faenor xml.

Re: Error Event Faenor!

Posted: Mon Aug 01, 2011 7:04 pm
by crazyshock

Code: Select all

<Event ID="Medal" Active="24 Dec 2008-26 Dec 2099">    <Droplist>        <AllDrop Items="5961" Count="1" Chance="50%" />        <AllDrop Items="5963" Count="1" Chance="68%" />    </Droplist>    <Message Type="OnJoin" Msg="Event" /><EventEnd>    <Take From="AllPlayers">        <Item ItemID="5961-5963"></Item>    </Take></EventEnd></Event> 

Re: Error Event Faenor!

Posted: Mon Aug 01, 2011 7:14 pm
by janiii
the drop count has to be a min,max value

Code: Select all

<Event ID="Medal" Active="24 Dec 2008-26 Dec 2099">    <Droplist>        <AllDrop Items="5961" Count="1,1" Chance="50%" />        <AllDrop Items="5963" Count="1,1" Chance="68%" />    </Droplist>    <Message Type="OnJoin" Msg="Event" /><EventEnd>    <Take From="AllPlayers">        <Item ItemID="5961-5963"></Item>    </Take></EventEnd></Event> 

Re: Error Event Faenor!

Posted: Mon Aug 01, 2011 7:55 pm
by crazyshock
Thanks!