Makinga Faenor Xml L2J 

Joined
Nov 16, 2006
Messages
833
Reaction score
0
Well i want add my own eveny, work like it, all mobs drop thsi item (9818) the event never finish and the players can change it for weapons and armors...

now i did it
Code:
<Event ID="Special Drop" Active="29 Nov 2008">
 <Droplist>
  <AllDrop Items="9818"
   Count="5"
   Chance="25%">
  </AllDrop>
 </Droplist>
 <Message 
  Type="OnJoin"
  Msg="Special Drop:\Get Angelic Essence from the monsters and get items or reward...\n(You can change it with GmShop)">
 </Message>
 
</Event>

But i get error when server is loading.... Please help me...

OFFTOPIC: i want kwon to how i can save the players chat and gm actions, i active this option from options.properties but dont work..
 
I have this...

jujogual - Makinga Faenor Xml - RaGEZONE Forums
 
Upvote 0
after alldrop chance theres /> not >
and you might consider adding that <EventEnd>
just put in <Active="1 Dec 2008-31 Dec 2011", i bet you wont even host the server for that long
 
Upvote 0
spelling mistakes are your fault, not medal events'
and active time is probably wrong if you put only 1 date, it kinda works only 1 day, that would be logical at least
 
Upvote 0
i did the changes that you tell me and...
jujogual - Makinga Faenor Xml - RaGEZONE Forums

Look the file:
Code:
<Event ID="Special Drop" Active="01 Dec 2008-31 Dec 2008">
	<Droplist>
		<AllDrop Items="9818"
			Count="5"
			Chance="25%">
		</AllDrop>
	</Droplist>
	<Message 
		Type="OnJoin"
		Msg="Special Drop:\nGet Angelic Essence from the monsters and get items or reward...\n(You can change it with GmShop)">
	</Message>	
</Event>

What i must do...
 
Last edited:
Upvote 0
FIX I EDIT IT:
Code:
<Event ID="Special Drop" Active="01 Dec 2008-31 Dec 2008">
	<Droplist>
		<AllDrop Items="9818"
			[COLOR="Red"]Count="5"[/COLOR]
			Chance="25%">
		</AllDrop>
	</Droplist>
	<Message 
		Type="OnJoin"
		Msg="Special Drop:\nGet Angelic Essence from the monsters and get items or reward...\n(You can change it with GmShop)">
	</Message>	
</Event>

I CHANGE TO Count="1,1"
 
Upvote 0
Back