Anyone know how to make maps boot ppl

Join Discord

mistodon

Dedicated Member
Dedicated Member
Apr 16, 2003
200
61
125
Anyone help me out on this plz as i have a few maps i want to change so they boot ppl after a certain amount of time.
 

Far

tsniffer
Staff member
Developer
May 19, 2003
20,179
30
2,783
540
you can do 2 thing.

use an npc to teleport you in the map, and simple use the TIMERECALL function

or. use a mapquest, starts effect as soon as someone walks on to a map.

add this on the end of your map in mapinfo.
CHECKQUEST(timerecall)

then goto mapquest_def folder, and make a txt file called timerecall.txt

in that txt file, add this

[@main]
#IF
#ACT
TIMERECALL 3
#SAY
You time three minutes.


that will recall you just outside the map after 3 minutes. if you want to make it more complicated, and make it so you can only walk in to the map once, then i will explain that later.
 

mistodon

Dedicated Member
Dedicated Member
Apr 16, 2003
200
61
125
i just want ppl to teleport back out of map after say an hour. I have a npc to tele them to the map just need to know what to put in it to make ppl be recalled after so long
 

stan

Guest
simple just put
[@tele] ( whatever the command is u have for the map)
#IF
checklevel 40 ( blah blah or whateva)
#ACT
mapmove xxxx xxx xxx <-- map name and coords
timerecall 60 < - recalls the player after 1 hour
 

Lothomadric

LOMCN Veteran
Veteran
Loyal Member
Dec 19, 2003
278
0
62
Bichon-Wall, With Bob the Chef
Simple Npc Script:
Code:
[@Main]
Do u want to be teled into Mists kool\
map? I can only stay there an hr though..\
<Yes!!!/@tele>\
<No Thnx/@Exit>\

[@tele]
#IF
**Put something here, like item/lvl/class checker**
#ACT
Mapmove 3 330:330 *Mapmove [color=blue]map number, co-ords[/color]*
timerecall 60 *timerecall [color=blue]time in minutes to be recalled[/color]*
#ELSEACT
Goto @No!

[@No!]
#Say
Sorry, u can't go to mists map.... ur warlord :P

That should do it m8 ;)
 
Last edited: