$variable = abc
Code: Select all
automacro auto {
console /^hello $variable$/ # I know it's worng
...
...
}
Can anyone help me? Thanks!

Moderator: Moderators
Code: Select all
automacro auto {
console /^hello $variable$/ # I know it's worng
...
...
}
Code: Select all
automacro start {
console /^hello (.*)$/
call {
do c hi
$x = $.lastMatch1
do c var = $x
}
}
automacro bot1 {
var x = aaa
timeout 5
call {
do c I'm bot aaa
}
}
automacro bot2 {
var x = bbb
timeout 5
call {
do c I'm bot bbb
}
}