oh thanks for the yellbox ... I was just about to edit the title though
ok time to try out the command
prontera,159,183,5 script pcre_match 1_F_MARIA,{ input .@t$; if ( "([a-z])$" ~= .@t$ ) npctalk "It's a "+ $@regexmatch$[0]; close;L_1: npctalk "It's a "+ $@p2$; end;OnInit: defpattern 1, "^[^:]+: (|d{2})?([a-z]).$", "L_1"; activatepset 1; end;}prontera,155,183,5 script regexp 1_F_MARIA,{ input .@t$; if ( regexp("([a-z])$", .@t$ ) ) npctalk "It's a ... "; close;}
Haru's regular expression ...this is bug ... why that only accept a,z,- ... three characters only
regexp in this plugin is accurate, can accept anything between abcde...z
but cannot export the result set
the symbol for the end line, has to be $
defpattern ... works great as many members already using it
but the symbol for the end line, has to be .$
omg, so many patterns !