pop ups

Play Now

Xx69xX

Golden Oldie
Golden Oldie
Dec 2, 2005
2,152
159
250
is it possible to have a message popup saying you are not allowed to enter a cave at a certain level instead of using an npc?
 

neptuneshaun

Golden Oldie
Golden Oldie
Jun 17, 2007
550
3
105
This is a question i asked a while ago, this was posted by bon, took 2 mins to find on search

ye u can

in map info put :

CHECKQUEST(Q1100)

then goto
C:\Mirserver\M2Server\Envir\MapQuest_def

and then either edit Q1100 there... or just change it... eg CHECKQUEST(Q222) then make a file called Q222

then put inside that folder

[@main]
#IF
checkitem townteleport 1
#ACT
SENDMSG 6 "You passed through into the next floor"
#ELSEACT
give townteleport 1
SENDMSG 6 "You passed through into the next floor, heres a free tt"


soemthing like that, wouldnt bother doin that for all floors tho lol
 
Upvote 0

Xx69xX

Golden Oldie
Golden Oldie
Dec 2, 2005
2,152
159
250
This is a question i asked a while ago, this was posted by bon, took 2 mins to find on search

thanks

i do search before i post stuff, its just in this particular case i wasent sure on what exacly i would be searching for.

cheers though
 
Upvote 0

Bon

Legend
Legendary
Jul 29, 2004
6,741
342
330
Kent, UK
to futher add to my noobish post... do it like this


in MAPINFO add these CHECKQUEST(Q100) NEEDSET_ON(100)

then in mapquest_def, make a txt file called Q100.txt and put somethng like this in


[@main]
#IF
CHECK [100] 1
#ACT
break

#IF
checklevelex > 39
#ACT
SET [100] 1
break

#ELSESAY
Sorry you must be above level 40 to enter here!\ \

of course, u could always scrap the bit where it sets the flag 100 ... and in the [@levelup] bit do

[@levelup]
#IF
CHECKLEVELEX = 40
#ACT
SET [100] 1



but thats up 2 u
 
Upvote 0

Xx69xX

Golden Oldie
Golden Oldie
Dec 2, 2005
2,152
159
250
to futher add to my noobish post... do it like this


in MAPINFO add these CHECKQUEST(Q100) NEEDSET_ON(100)

then in mapquest_def, make a txt file called Q100.txt and put somethng like this in




of course, u could always scrap the bit where it sets the flag 100 ... and in the [@levelup] bit do

[@levelup]
#IF
CHECKLEVELEX = 40
#ACT
SET [100] 1



but thats up 2 u

thanks im trying them out now

EDIT:

Thanks it worked perfect
 
Last edited:
Upvote 0