i want a msg to po up ...

Join Discord

BlueJeans

Dedicated Member
Dedicated Member
Apr 12, 2004
202
0
63
i want a msg to pop up ...

EDIT the title is suposed to say "i want a msg to pop up ..." so pop not po lol

ok i want to make an npc, when you kill a certian mob ( in this case 1 in 5 tongs),
mssage you so far iv done this

in market_def iv put

Code:
[@main]
#IF
check [009] 1
#SAY
Sorry Mate You Have Done This Quest \ \ 
<Close/@exit>
#ELSESAY
Hello there, if you kill some tongs I will give you a prize\\
<Ok Kool/@accept>\
<No thanks/@exit>
#ELSEACT
goto checkquest

[@checkquest]
#IF
Check [008] 1
#SAY
I see you have killed 5 tongs, well done.\
Please <continue/@prize>
#ELSEACT
goto main_1

[@accept]
#ACT
Set [009] 1
#SAY
You are ready to begin your quest, good luck\
<Goodbye/@exit>

[@prize]
#ACT
Give gold 100000
#SAY
Here, have some gold !\

And in the MapQuest.TXT iv got...

Code:
D10031  [403]    1      BigApe           *               Q1403
D10032  [403]    1      BigApe           *               Q1403
D1004   [403]    1      BigApe           *               Q1403
D10051  [403]    1      BigApe           *               Q1403
D10052  [403]    1      BigApe           *               Q1403
D10053  [407]    1      RedEvilApe       *               Q1407
D10071  [409]    1      RedMoonEvil1  EvilApeOil         Q14091
D10054  [412]    1      GreyEvilApe      *               Q1412
D10062  [413]    1      RedMoonEvil      *               Q14132
0       [008]    1      Tongs       Benedictionoil       Q1234

and in MapQuest_Def under Q1234.txt iv got

Code:
[@main]
#IF
check [009] 1
#ACT
break

#IF
random 5
check [008] 1
#ACT
set [009] 1
#SAY
Congratz, you killed some tongs now come back and speak to me!\
<Okay/@exit>
#ELSESAY
killed um but done feel to good bout it ill kill some more\  \
<Close/@exit>

but it aint wrkin i click on the npc it says

"Hello there, if you kill some tongs I will give you a prize"

so i kill like 20 tongs (that i spawned my self) an nothin come up so i click on the npc again an he says

"Sorry Mate You Have Done This Quest"

so could some 1 tell me what is rong with it ?
 
Last edited:

andykid131

Golden Oldie
Golden Oldie
Mar 16, 2006
621
3
53
135
at the moment it says your killing them in BW, make sure you are or change the map number

Psycho
 

lifco

Untrusted Member
Legendary
Golden Oldie
Loyal Member
Jul 6, 2004
3,400
66
195
UK/Italy
you have just bumped a 3+year old post :P

i tho it was strange when i so it in the 1.4 bit of the forums, best you look at the date when posting but hay your on 10 post count now congrats

as for bluejeans post i think this was his problem check [009] 1

lif
 

GuildWars

Dedicated Member
Dedicated Member
Sep 28, 2004
164
0
62
Re: i want a msg to pop up ...

Code:
[@main]
#IF
check [009] 1
check [010] 1
#SAY
Sorry Mate You Have Done This Quest \ \ 
<Close/@exit>
#ELSESAY
Hello there, if you kill some tongs I will give you a prize\\
<Ok Kool/@accept>\
<No thanks/@exit>
 
[@checkquest]
#IF
Check [008] 1
#SAY
I see you have killed 5 tongs, well done.\
Please <continue/@prize>
#ELSEACT
goto main_1
 
[@accept]
#ACT
Set [009] 1
#SAY
You are ready to begin your quest, good luck\
<Goodbye/@exit>
 
[@prize]
#ACT
Give gold 100000
set [010] 1
#SAY
Here, have some gold !\

And in the MapQuest.TXT iv got...

Code:
D10031  [403]    1      BigApe           *               Q1403
D10032  [403]    1      BigApe           *               Q1403
D1004   [403]    1      BigApe           *               Q1403
D10051  [403]    1      BigApe           *               Q1403
D10052  [403]    1      BigApe           *               Q1403
D10053  [407]    1      RedEvilApe       *               Q1407
D10071  [409]    1      RedMoonEvil1  EvilApeOil         Q14091
D10054  [412]    1      GreyEvilApe      *               Q1412
D10062  [413]    1      RedMoonEvil      *               Q14132
0       [009]    1      Tongs      *               Q1234

and in MapQuest_Def under Q1234.txt iv got

Code:
[@main]
#IF
check [009] 1
random 5
#ACT
set [008] 1
#SAY
Congratz, you killed some tongs now come back and speak to me!\
<Okay/@exit>
#ELSESAY
killed um but done feel to good bout it ill kill some more\  \
<Close/@exit>

Fixed. Its an old post but w/e :P

I hope this helps you, if not Galore to LOMCN!!! lol.. jk folks
 
Last edited: