Script

Chris22

LOMCN Veteran
Veteran
Jun 10, 2009
372
1
45
Hi folks, i want an script to tele all players on a set map into another map at a set time, im just not sure were this script would go Qmanage ? Qfunction? and what script heading i need to put it under :huh:

Thanks
 

Praktica

Dedicated Member
Dedicated Member
Jun 16, 2009
240
1
45
England
Basically like lastmanstanding?
neither QFunction or Qmanage.

on your npc you will need;

#IF
DAYOFWEEK MON/TUE/WED/THU/FRI/SAT/SUN
TIME X(HOUR) y(MINUTE)
#ACT
MAPMOVE X(MapFileName) Y(Coordinate:-1) Z(Coordinate:-2)
 
Upvote 0

Chris22

LOMCN Veteran
Veteran
Jun 10, 2009
372
1
45
Basically like lastmanstanding?
neither QFunction or Qmanage.

on your npc you will need;

#IF
DAYOFWEEK MON/TUE/WED/THU/FRI/SAT/SUN
TIME X(HOUR) y(MINUTE)
#ACT
MAPMOVE X(MapFileName) Y(Coordinate:-1) Z(Coordinate:-2)

I dont want people clicking an npc, i want it so all people on a specific map will be teleported at the same time, i want it to be auto, im sure there is a way to do it somehow.
 
Upvote 0

Praktica

Dedicated Member
Dedicated Member
Jun 16, 2009
240
1
45
England
Ah yea I get what you mean
I think the only way thats possible, is to put a check on it such as;

#IF
CHECKMONMAP
#ACT
RECALLGROUP

something along those lines
 
Upvote 0