my bash_table has a few names it and it works on triggers but it wont display cannot seem to figure out why.
i fill it with another alias that uses this to capture
then i would assume this would display the table
but it shows it as empty.
alias
pklist..is
--- thanks in advance for any help with this as it has been a journey getting as far as i have carefully going threw many post in here by nick and others.
i fill it with another alias that uses this to capture
<aliases>
<alias
name="pkmode"
match="pkmode (?P<bashed>([A-z][a-z]+))"
enabled="y"
group="autobash"
regexp="y"
send_to="12"
sequence="100"
>
<send>EnableTrigger("punch",true)
EnableTrigger("repunch",true)
EnableTriggerGroup("autobash",true)
EnableTriggerGroup("Tankmode",false)
EnableTriggerGroup("Assistmode",false)
EnableTriggerGroup("Bashmode",false)
EnableTriggerGroup("disarm",false)
EnableTimer("rescuecasters",false)
EnableTimerGroup("assistbot101",false)
EnableTimer("assist",false)
EnableTimerGroup("Assistmode",false)
Note("pkmode")
bash_table = bash_table or {}
bash_table.%<bashed> = true
Alertbox = assert (GetWorld ("Alertbox"),"Alertbox not open")
-- gets the world
Alertbox:ColourNote("black", "white", "Basher AUTO BASHING %<bashed>")</send>
</alias>
</aliases>
then i would assume this would display the table
but it shows it as empty.
alias
pklist..is
<aliases>
<alias
match="pklist"
enabled="y"
send_to="12"
keep_evaluating="y"
sequence="100"
>
<send>bash_table = bash_table or {}
Note(table.concat (bash_table, ","))
t_t =
{
"the",
"quick",
"brown",
"fox",
"jumped",
}
Note(table.concat (t_t, ","))</send>
</alias>
</aliases>
--- thanks in advance for any help with this as it has been a journey getting as far as i have carefully going threw many post in here by nick and others.