Mapquest and Q-Function

Play Now

NewHope

Golden Oldie
Golden Oldie
Nov 18, 2005
1,311
28
184
Is there a way to connect the two?
For example:

In mapquest i set a quest to kill 20 hens via an npc.
Now could i get Q-Function to read that quest and let me insert a script that will bring up a line of text in the chat box everytime a hen is killed?

@KillMob(mobname) doesn't work.
 

Ceef

LOMCN Veteran
Veteran
Sep 1, 2003
352
22
95
#IF
CHECK [001]
#ACT
CALCVAR HUMAN HENSKILLED +1
#ELSEACT
@exit

? something like that?

Or...

#IF
CHECKVAR Human HensKilled >= 10
#ACT
goto @exit
#ELSEACT
CALCVAR Human HensKilled + 1
SAVEVAR Human HensKilled ..\QuestDiary\Variables\Integral.txt
break
 
Upvote 0