|
chamenas Wizard
Joined: 26 Mar 2008 Posts: 1547
|
Posted: Thu Apr 24, 2008 5:03 pm
Odd output |
Here's the trigger:
Code: |
#wait 400
#say Loading movement trigger...
#regex movement {^I see no(?: \w+)? log here.$} {#if (@loading="off") {
#6 {#send "drag all.@currentboard n"
drag all.@current_board e
drag all.@current_board s
drag all.@current_board w
drag all.@current_board d }
} {
loading="off"
}
} {General Triggers|Crafting}
|
Here's it failing:
I see no log here.
drag all.@currentboard n
drag all.@currentboard n
drag all.@currentboard n
drag all.@currentboard n
drag all.@currentboard n
drag all.@currentboard n
It clearly has current_board in the trigger, so why does it take out the underscore? |
|
|
|
Rahab Wizard
Joined: 22 Mar 2007 Posts: 2320
|
Posted: Thu Apr 24, 2008 5:43 pm |
Look at line 4 of your script, the line that starts #6. The underscore is missing.
|
|
|
|
chamenas Wizard
Joined: 26 Mar 2008 Posts: 1547
|
Posted: Thu Apr 24, 2008 5:55 pm |
Ack! My attention to detail is terrible
|
|
|
|
|
|