Robot Spawning Question

wanabee

Golden Oldie
Golden Oldie
Jul 10, 2004
723
4
125
newbury
Hi All,
I have a question which i hope can get answerd, I whish to use robot to spawn mobs on a set day at a set time but only want the mobs to spawn if the others have been killed, I will try and explain below what i want.

this is my monster list which i will spawn say everyday at say 5:00pm on a set map using robot. the robot is using mob mission to spawn to set cords ( map 3 cords are 331 328) now what i want the robot to check before sending anymore is have the mobs been killed at these cords.

i think i will have to use killmon but not sure how to get this to work on this map without killing every other mob. basicaly i want whats happens on euro with past bichion mobs spawning to portal.

[@INV5]
#IF
#ACT
MISSION 3 331 328 MISSION
PARAM1 383
PARAM2 358
PARAM3 2
PARAM4 10
MOBPLACE mirking
MOBPLACE IncarnatedWT
MOBPLACE IncarnatedZT
MOBPLACE DarkDevil
 

jewjewbee

Dedicated Member
Dedicated Member
May 5, 2007
99
2
55
use
#IF
CHECKMONMAP 10 what it does: if there's less then 10 mobs on the map then it's false
or
CHECKRANGEMONCOUNT mapname x y range = 5 what it does: checks on map called 'mapname' arround x,y coords if there are 5 mobs in a range, options: =,<,>,>=
or
CHECKMAPMONCOUNT mapname > 5 what it does: same as above but for monsters on the map
or

added a new npc command: CHECKREALMONMAP, works same way as CHECKMONMAP except instead of counting all the mobs on the map including pets this command doesnt count pets only 'normal' mobs
 
Upvote 0

wanabee

Golden Oldie
Golden Oldie
Jul 10, 2004
723
4
125
newbury
use
#IF
CHECKMONMAP 10 what it does: if there's less then 10 mobs on the map then it's false
or
CHECKRANGEMONCOUNT mapname x y range = 5 what it does: checks on map called 'mapname' arround x,y coords if there are 5 mobs in a range, options: =,<,>,>=
or
CHECKMAPMONCOUNT mapname > 5 what it does: same as above but for monsters on the map
or

added a new npc command: CHECKREALMONMAP, works same way as CHECKMONMAP except instead of counting all the mobs on the map including pets this command doesnt count pets only 'normal' mobs


Hi ta for replying but what does this bit mean (options: =,<,>,>=)
 
Upvote 0