PDA

View Full Version : Adventure points by Quests


AK1122
05-08-2004, 12:36 AM
Granting adventure points by using quests... is it possible to code?

Would be a great idea to be able to use adventure points as a quest reward system. Any input would be great. Thank you.

Dave987
05-08-2004, 01:51 AM
sub EVENT_SAY
{
if($text =~ /Hail/i)
{
quest::say("Greetings $name! Have 10 LDoN Points!");
quest::setldonpoint(10,1);
}
}


http://www.eqemulator.net/forums/viewtopic.php?t=14114&highlight=setldonpoint

AK1122
05-08-2004, 02:07 AM
doh thx :oops: