View Single Post
  #9  
Old 11-08-2007, 03:22 AM
Switch Switch is offline
o.o
Switch's Avatar
Join Date: Jan 2007
Location: Philadelphia
Posts: 3,038
Switch has a spectacular aura about
Send a message via MSN to Switch
Quote:
Originally Posted by Skyld View Post
PHP Code:
//#CLIENTSIDE

function onCreated()
{
  
this.badwords = {"one""two""three"};
}

function 
onPlayerChats()
{
  for (
temp.wordplayer.chat.tokenize())
  {
    if (
temp.word in this.badwords)
    {
      
player.chat "bzzt";
    }
  }

... to do it using tokens of the player's chat text.
What's the : for and what's it mean, so I can use it later? Also, what's a ? used for in some scripts after the name of a string or something... offtopic on that bu wanted to know xD
Quote:
Originally Posted by Novo View Post
PHP Code:
function onPlayerChat()
{
  
player.chat "";

This'll prevent any vulgar words in any language from being said.
lurvsu!
__________________
Oh squiggly line in my eye fluid. I see you lurking there on the peripheral of my vision.
But when I try to look at you, you scurry away.
Are you shy, squiggly line?
Why only when I ignore you, do you return to the center of my eye?
Oh, squiggly line, it's alright, you are forgiven.
Reply With Quote