var/regex/quote_regex=new/regex(@{“”([^”*)””})
var/quote_match=quote_regex.Find(message)
while(quote_match)
var/quote=quote_regex.group(1)
Problem description:
Its giving back quote_regex.group: undefined proc.
How do I define this under a mob/proc anyway?
Im trying to fix a say verb that catches quotation’s any help is appreciated.