Add item drop just for the quest holder

MoGuri

New member
Messages
34
Points
0
Hello, im doing some quests, but i was checking and i dont know how to do this. I want to do some quests in WoW Style, this means that maybe, you should hunt for Seals, and gather some quest item but, if the seals would only drop the quest item If you have the quest active and have less than the maximun quest items.

This can be done?

 
Last edited by a moderator:
something like:

- script questdrop -1,{
end;
 
OnNPCKillEvent:
//add quest variable check here to proceed if true or cancel if false
switch(killedrid)
{
case 1086: getitem 4128,1; end; //or add here
case 1039: getitem 4147,1; end;
default: end;
}
end;
}
 
Yeah, i was thinking about that, thanks for confirming that to me!
default_smile.png


 
Back
Top