Flag problem.

Join Discord

Bromen

Dedicated Member
Dedicated Member
Mar 6, 2008
93
2
55
Manchester, UK
Okay, so i want this NPC to give out one HeavenRune on clicking and no more. But my flags dont seem to be working properly and can keep clicking for multiple runes.

[@main]
#IF
CHECKFLAG [504] 1
#ACT
GOTO @Complete
BREAK

#IF
CHECKFLAG [504] 0
#ACT
Set [504] 1
Give HeavenRune 1
#Say
Greetings <$USERNAME>, i am Saint Cathryn...\
I am the Patron Saint of Kindness, and banisher of\
Envy... Your progress impresses me. Heres a special\
signature of your visit to me, it will let Vyrio know\
of your visit to me.... Farewell, and good luck, great\
<$USERNAME>.\
<Thanks, St. Cathryn/@exit>\

[@Complete]
You found me, welldone. Find the other 6 Saints \
and return to Vyrio....\
<Okay/@exit>\
 

Viper

LOMCN Veteran
Veteran
Feb 14, 2007
519
1
125
Newcastle
Okay, so i want this NPC to give out one HeavenRune on clicking and no more. But my flags dont seem to be working properly and can keep clicking for multiple runes.

[@main]
#IF
CHECKFLAG [504] 1
#ACT
GOTO @Complete
#ELSEACT
GOTO @Start


[@Start]
#IF
CHECKFLAG [504] 0
#ACT
Set [504] 1
Give HeavenRune 1
#Say
Greetings <$USERNAME>, i am Saint Cathryn...\
I am the Patron Saint of Kindness, and banisher of\
Envy... Your progress impresses me. Heres a special\
signature of your visit to me, it will let Vyrio know\
of your visit to me.... Farewell, and good luck, great\
<$USERNAME>.\
<Thanks, St. Cathryn/@exit>\

[@Complete]
You found me, welldone. Find the other 6 Saints \
and return to Vyrio....\
<Okay/@exit>\


try that:)
 
Upvote 0

Bromen

Dedicated Member
Dedicated Member
Mar 6, 2008
93
2
55
Manchester, UK
Okay did it your way Viper... And got this....

Quest problem: CHECKFLAG [504] 1 Row:2 Filename: .\Envir\Npc_def\St_Joseph-0.txt
[2/1/2009 5:09:34 PM] Quest problem: CHECKFLAG [504] 0 Row:10 Filename: .\Envir\Npc_def\St_Joseph-0.txt

I'll try changing itt CHECK [] instead of CHECKLFLAG
 
Upvote 0

Viper

LOMCN Veteran
Veteran
Feb 14, 2007
519
1
125
Newcastle
Okay did it your way Viper... And got this....

Quest problem: CHECKFLAG [504] 1 Row:2 Filename: .\Envir\Npc_def\St_Joseph-0.txt
[2/1/2009 5:09:34 PM] Quest problem: CHECKFLAG [504] 0 Row:10 Filename: .\Envir\Npc_def\St_Joseph-0.txt

I'll try changing itt CHECK [] instead of CHECKLFLAG



yea looks like its a checkflag error
 
Upvote 0