Here is what I wish to match
And I'm trying to take all three coordinates and then add 300 to the final one. My following trigger:
Is matching only the following:
I don't know what the problem is.
Lua Scripting. MUSHClient v4.84
Quote:
Mon Calamari MC80 Cruiser: Independence 1357 -2245 4112
Mon Calamari MC80 Cruiser: Independence 1357 -2245 4112
And I'm trying to take all three coordinates and then add 300 to the final one. My following trigger:
<triggers>
<trigger
custom_colour="6"
enabled="y"
group="CapTracking"
ignore_case="y"
make_bold="y"
make_italic="y"
make_underline="y"
match="Mon Calamari MC80 Cruiser\: Independence (.*?) (.*?) (.*?)"
name="IndependanceTracking"
regexp="y"
send_to="12"
sequence="100"
>
<send>IndependenceLocation = ("%3"+300)
Note("%1")
Note("%2")
Note("%3")
Note(IndependenceHyper3)</send>
</trigger>
</triggers>
Is matching only the following:
Quote:
Mon Calamari MC80 Cruiser: Independence 1357 -2245 4112
Mon Calamari MC80 Cruiser: Independence 1357 -2245 4112
I don't know what the problem is.
Lua Scripting. MUSHClient v4.84