Ok here goes, I'm trying to use my prompt to grab variables from, such as balance and equilibrium.
Currently my prompt is
8360h, 5944m, 33900e, 29394w, 27% cexkdb|0/0|0/0|0/0|99-
My prompt trigger is
^(?pval.health:\d+)h, (?pval.mana:\d+)m, (?pval.endurance:\d+)e, (?pval.willpower:\d+)w,
It matches at this point but every time I try to expand it to match everything I need it to match it messes up. Also I'm trying to grab the varibable based off the position of e and x in that prompt
I know that in zmud the coding for grabbing something like that is #if (%pos;x,%5)) {#var balance 1} {#var balance 0};#if (%pos(e,%5)) {#var equib 1} {#var equib 0}
Currently my prompt is
8360h, 5944m, 33900e, 29394w, 27% cexkdb|0/0|0/0|0/0|99-
My prompt trigger is
^(?pval.health:\d+)h, (?pval.mana:\d+)m, (?pval.endurance:\d+)e, (?pval.willpower:\d+)w,
It matches at this point but every time I try to expand it to match everything I need it to match it messes up. Also I'm trying to grab the varibable based off the position of e and x in that prompt
I know that in zmud the coding for grabbing something like that is #if (%pos;x,%5)) {#var balance 1} {#var balance 0};#if (%pos(e,%5)) {#var equib 1} {#var equib 0}