I want to stop people from saying kursses in my game.I want to make it a diffrent word.How would i do that?
Thanks!
-Kappa the Imp
ID:266481
![]() Mar 18 2002, 3:47 pm
|
|
![]() Mar 18 2002, 3:50 pm
|
|
http://www.byond.com/hub/ hub.cgi?qd=hubIndex;hub=823;channel=1182 - Theodis's Language Filter. I'm sure you can edit it to do what you want, just look around in there.
|
Here I made one.
mob/verb/Say(T as text) var/list/Words=list() Words.Add("fuck") var/check=findtext(T,Words[1]) if(check) T="HUSDAS" world<<"[usr]: [T]" else world<<"[usr]: [T]" |
mob/verb/WorldTalk(T as text) Whats wrong?I try it and it doesn't work. -Kappa the Imp |
Now i came up with this,it was close of working but didn't,sorry for the censoring(in the code).
mob/verb/WorldTalk(T as text) Please help me. -Kappa the Imp |