[2.3] Robot to spawn a boss and shout out

Join Discord

marcmulhern3

Dedicated Member
Dedicated Member
Jan 14, 2009
60
7
34
Been struggling to get this to work :(
In Robot.txt ive got:
System AutoRunRobot

In AutorunRobot Ive got:
#AutoRun NPC SEC 60 [MENTION=12682]test[/MENTION]

In Robot Manage ive got:
[Test]
#IF
checkmonmap ImpiriusLairKR 0
#ACT
MONGENEX ImpiriusLairKR Impirius 20 20 1 1
SENDMSG 0 "Impirius has Spawned!"
#ELSEACT
Break

I basically want it to check to see if the boss is already out. If it is out then do nothing.

If its not out then to spawn 1 and do a shout. Atm it just seems to keep shouting and spawning loads of the boss :/
 

wock

Dedicated Member
Dedicated Member
Apr 4, 2009
145
0
42
[Test]
#IF
checkmonmap ImpiriusLairKR = 0

should it not be like that ?
 
Upvote 0

Tai

HEAD CAPTAIN
Staff member
Administrator
May 11, 2003
14,310
2
2,694
515
United Kingdom
no,

Code:
checkmonmap ImpiriusLairKR 0

is correct

Change

Code:
[Test]

to

Code:
[@ Test]

without the space
 
Upvote 0

marcmulhern3

Dedicated Member
Dedicated Member
Jan 14, 2009
60
7
34
Ok its set to [MENTION=12682]test[/MENTION] and the shoutout works and the mob spawn works. However the check for the mob on the map isnt working. I just keep getting loads of bosses spawn >.<

[[MENTION=12682]test[/MENTION]]
#IF
checkmonmap ImpiriusLairKR 0
#ACT
MONGENEX ImpiriusLairKR 20 20 Impirius 1 1
SENDMSG 0 "Impirius has Spawned!"
#ELSEACT
Break

---------- Post added at 06:45 PM ---------- Previous post was at 06:10 PM ----------

managed to fix this :)
Here is how i have done it incase any1 else looks this up in the future.

[[MENTION=12682]test[/MENTION]]
#IF
checkmonmap ImpiriusLairKR 1
#ACT
#ELSEACT
MONGENEX ImpiriusLairKR 20 20 Impirius 1 1
SENDMSG 0 "Impirius: I HAVE RETURNED! WHO DARES TO CHALLENGE ME?!"
 
Upvote 0

neo16uk

LOMCN Veteran
Veteran
Aug 20, 2006
563
14
125
Ok its set to [MENTION=12682]test[/MENTION] and the shoutout works and the mob spawn works. However the check for the mob on the map isnt working. I just keep getting loads of bosses spawn >.<

[[MENTION=12682]test[/MENTION]]
#IF
checkmonmap ImpiriusLairKR 0
#ACT
MONGENEX ImpiriusLairKR 20 20 Impirius 1 1
SENDMSG 0 "Impirius has Spawned!"
#ELSEACT
Break

---------- Post added at 06:45 PM ---------- Previous post was at 06:10 PM ----------

managed to fix this :)
Here is how i have done it incase any1 else looks this up in the future.

[[MENTION=12682]test[/MENTION]]
#IF
checkmonmap ImpiriusLairKR 1
#ACT
#ELSEACT
MONGENEX ImpiriusLairKR 20 20 Impirius 1 1
SENDMSG 0 "Impirius: I HAVE RETURNED! WHO DARES TO CHALLENGE ME?!"

thanks bud was looking for some just like this XD
 
Upvote 0