Sending a Auto msg usin robot...

Mu online season 21 - grand opening

Bon

Legend
Legendary
Jul 29, 2004
6,741
342
330
Kent, UK
Its not workin lol.. any1 tell me wot ive done wrong?

in Robot.txt

System MudWall
System LMS
System LMSSUN
System LMSLAST
System LMSSUNLAST

in C:\MirServer\M2Server\Envir\Robot_def\AutoRunRobot.txt

#AutoRun NPC RUNONDAY 20:00 @MudWall
#AutoRun NPC RUNONDAY 18:00 @LMS
#AutoRun NPC RUNONDAY 18:00 @LMSSUN
#AutoRun NPC RUNONDAY 19:04 @LMSLAST
#AutoRun NPC RUNONDAY 18:04 @LMSSUNLAST

in C:\MirServer\M2Server\Envir\Robot_def\RobotManage.txt

;´Ë½ÅΪ»úÆ÷ÈËרÓýű¾£¬ÓÃÓÚ»úÆ÷ÈË´¦Àí¹¦ÄÜÓõĽű¾¡£
[@SendRedMsg]
#IF
#ACT
SENDMSG 0 "MudWall Conflict has Begun, Everyone may participate"

[@MudWall]
#ACT
SENDMSG 0 "MudWall Conflict has Begun, Everyone may participate"
[@LMS]
#IF
DAYOFWEEK TUE
#ACT
LINEMSG 1 "LastManStanding has Begun, Please speak to LastManStanding"
LINEMSG 2 "NPC In BW SafeZone (330:270) To enter, 5mins Remaining!"
#IF
DAYOFWEEK THU
#ACT
LINEMSG 1 "LastManStanding has Begun, Please speak to LastManStanding"
LINEMSG 2 "NPC In BW SafeZone (330:270) To enter, 5mins Remaining!"
#ELSEACT
SENDMSG 0 "no no no no"
break
[@LMSSUN]
#IF
DAYOFWEEK SUN
#ACT
SENDMSG 0 "LastManStanding has Begun, Please speak to LastManStanding"
SENDMSG 0 "NPC In BW SafeZone (330:270) To enter, 5mins Remaining!"
break
#ELSEACT
SENDMSG 0 "no no no no"
break
[@LMSLAST]
#IF
DAYOFWEEK TUE
#ACT
SENDMSG 0 "1 Minute Sign up time left for LastManStanding!! Please see"
SENDMSG 0 "NPC In BW SafeZone (330:270) To enter, 1min Remaining!"
break
#IF
DAYOFWEEK THU
#ACT
SENDMSG 0 "1 Minute Sign up time left for LastManStanding!! Please see"
SENDMSG 0 "NPC In BW SafeZone (330:270) To enter, 1min Remaining!"
break
#ELSEACT
SENDMSG 0 "no no no no"
break
[@LMSSUNLAST]
#IF
DAYOFWEEK SUN
#ACT
SENDMSG 0 "1 Minute Sign up time left for LastManStanding!! Please see"
SENDMSG 0 "NPC In BW SafeZone (330:270) To enter, 1min Remaining!"
break
#ELSEACT
SENDMSG 0 "no no no no"
break

i even tried with it bein this

#AutoRun NPC SEC 10 @LMS

but still no luck

what am i doin wrong plz? ;)
 

BloodDemon

Golden Oldie
Golden Oldie
Jul 20, 2003
649
19
155
Darlington, UK
ok i think i know, for every system you use u need a text document linked to it, you currently have autorunrobot.txt set up correctly but notings calling it as

system MudWall

is looking for MudWall.txt in robot_def if you get me. So to get it to work rename autorunrobot.txt to MudWall.txt. You ultimatly only need 1 system declared youve done overkill lol

Hope it helps let me know if it doesnt

Take care
Chris
 
Upvote 0

Dookie

LOMCN Veteran
Veteran
Aug 5, 2004
294
1
45
Looks ok to me. But i'll post an example of one i've got working on Meteora for you to compare it to. I got a bit confused when using the Robot system to, so i'm not sure if all of this is needed, but it defo works.

AutoRunRobot.txt
Code:
#AutoRun NPC HOUR 24 @PotionQuest

RobotManage.txt
Code:
[@PotionQuest]
#IF
DAYOFWEEK Sun
#ACT
CLEARNAMELIST Quest/PotionQuest/start.txt
;CalcVar Human PotionQuest1 = 0
;SaveVar Human PotionQuest1 Integral.txt
;CalcVar Human PotionQuest2 = 0
;SaveVar Human PotionQuest2 Integral.txt
;CalcVar Human PotionQuest3 = 0
;SaveVar Human PotionQuest3 Integral.txt
;CalcVar Human PotionQuest4 = 0
;SaveVar Human PotionQuest4 Integral.txt
BREAK
#ELSEACT
BREAK

*The Human Variables don't work obviously (There just in so i know whats going on) but the CLEARNAMELIST does.

PotionQuest.txt (In Robot folder)
Code:
#AUTORUN NPC HOUR 24 @PotionQuest

Not sure if the PotionQuest.txt is needed but it works, so take a look. Pretty sure it works the same as TD's files as well.

-Lind
 
Last edited:
Upvote 0

Bon

Legend
Legendary
Jul 29, 2004
6,741
342
330
Kent, UK
ok i think i know, for every system you use u need a text document linked to it, you currently have autorunrobot.txt set up correctly but notings calling it as
system MudWall

is looking for MudWall.txt in robot_def if you get me. So to get it to work rename autorunrobot.txt to MudWall.txt. You ultimatly only need 1 system declared youve done overkill lol

Hope it helps let me know if it doesnt

Take care
Chris



ah i get u, thanks m8

i just changed it to : System AutoRunRobot

and its fine now

thx a lot
 
Last edited:
Upvote 0