Get Started
·
Register
·
Login
Posts
ID:267227
Favorites
Creations
Medals
Text System.
in
Developer Help
[Tips]
ID:267227
Jan 19 2003, 9:59 pm
Thief Jack
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?
#1
Jan 19 2003, 10:30 pm
Siientx
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.
#2
Jan 19 2003, 10:32 pm
In response to
Siientx
(#1)
Thief Jack
Yes, but I'd also next the actual proc, which is the thing I was asking about.
#3
Jan 19 2003, 10:33 pm
In response to
Thief Jack
(#2)
Siientx
What?
#4
Jan 20 2003, 2:22 pm
In response to
Siientx
(#3)
Thief Jack
I wasn't asking for what you gave me, I was asking for the proc that actually did the work.
Copyright © 2013 BYOND. All rights reserved.
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.