| automacro JoinChat { #console /(.*) 已加入這個聊天室/
 console /(.*) has joined the Chat Room/
 run-once 1
 call {
 pause 0.1
 if ($.lastMatch1 == GM01) goto next
 pause 0.1
 if ($.lastMatch1 == GM02) goto next
 pause 0.1
 if ($.lastMatch1 == GM03) goto next
 pause 0.1
 if ($.lastMatch1 == GM[0-99]) goto next
 pause 0.5
 [
 pause 2
 do c 這邊打上你要打的內容!!
 stop
 ]
 :next
 release JoinChat
 }
 }
 
 |