ID:267227
 
Is it possible to create a proc from which I type in the sentece(s) then it takes that proc and it's words/sentences/letterrs, then creates them in-game whenever that proc is started?
mob/verb/say(T as text)
procstart(T)

proc/procstart(var/T)
sayit(T)

proc/sayit(var/T)
world <<"INGAME: [USR]:[T]"

like that??

procstart could be like a swear check..then if theres no bad words.call sayit.
In response to Siientx (#1)
Yes, but I'd also next the actual proc, which is the thing I was asking about.
In response to Thief Jack (#2)
What?
In response to Siientx (#3)
I wasn't asking for what you gave me, I was asking for the proc that actually did the work.