[Help]Edit Quest Drop L2J 

Newbie Spellweaver
Joined
Dec 15, 2007
Messages
12
Reaction score
0
Hey guys, this is my first post^^ and i need help. I need to edit the quest drop in my l2j based server , for example want to edit the prize of a quest ad make that if u complete the quest u obtain for example a c grade weapone or somthing else.
 
gameserver/data/jscript/quests/ find the quest you want and edit __init__.py, right?

For example if you want the quest "An adventure begins" to give as reward an akat long bow you must open the quest init_py file with notepad and add:

#REWARDS
ADENA = 57
SCROLL_OF_ESCAPE_GIRAN = 7559
MARK_OF_TRAVELER = 7570
AKAT_LONG_BOW = 283 <----- add this line (weapon name and weapon id)

then you will have to add this to guest given items too:

st.giveItems(SCROLL_OF_ESCAPE_GIRAN,1)
st.giveItems(MARK_OF_TRAVELER, 1)
st.giveItems(AKAT_LONG_BOW, 1) <----- add this line (name and quantity)

i think this should work
 
Upvote 0
Back