Problem (Quest NPC)

ElAmO

Ethernity Developer
Developer
Feb 27, 2006
370
563
185
Mallorca, Spain
Hello, I would like to do one quest, but I have a problem, I would like to put that single puediera to be made once by person. I hope that thanks can help me

Sorry for my english
 

ElAmO

Ethernity Developer
Developer
Feb 27, 2006
370
563
185
Mallorca, Spain
I feel it you did not understand to me, what queria to say is that for example when a personage makes quest, no longer it can make it again
 
Upvote 0

Demonic

LOMCN VIP
VIP
Dec 1, 2003
1,806
2
185
Quest are done by Flags, the NPC of the quest checks the flag and wont allow to do again if written properly.
 
Upvote 0

Killmaster

Legend
Legendary
Golden Oldie
Loyal Member
Nov 13, 2003
3,967
27
294
[@Main]
#IF
check [569] 1 << ( This is a flag, a number or variable that npc checks)
#SAY
You have already won you prize\ \

<exit/@exit>

#ELSEACT
give (what ever item)
set [569] 1 <<(once you have given the item you set flag)

* so next time the person clicks on the npc it will go to '#say' because that flag has been set

Things u shud know that most flags start off set as [flag] 0 unless an npc has set it.


hope this helps :)..Just want to bere in mind this applies to mir 2 server files, not sure bout mir 3 as much worth a go tho

\DeathsDeciple
 
Last edited:
Upvote 0