home *** CD-ROM | disk | FTP | other *** search
/ Top 50 Space / SPACE.bin / data / siege / siege.ace / scripts / censor.cs < prev    next >
Encoding:
Text File  |  1999-03-19  |  2.0 KB  |  50 lines

  1. ///////////////////////////////////////////////////////////////////////////////
  2. // Chat censor strings (MUST BE LOWER CASE!)
  3. ///////////////////////////////////////////////////////////////////////////////
  4. //
  5. //NOTE TO TRANSLATORS. These are BAD WORDS which are blanked out in messages when the
  6. //"Censor chat messages" option is enabled in the shell. You don't have
  7. //to translate them literally. Just put whatever words you think proper
  8. //for your language in the list. 
  9. //
  10. //Note that the parser is pretty dumb, and just looks for the sequence of
  11. //characters. For example, we can't censor "ASS" in english because words like
  12. //"assure", "assume", "pass" etc., would be partially blanked out.
  13. //Also if you have multiple word forms of the same obscene word, put the longest 
  14. //first. For example put "cocksucker" before "cock." If you don't do this, the
  15. //parser will partially censor the word on the first pass and miss the rest of it.
  16. //For example, if "cock" is before "cocksucker" in the list, cocksucker would get
  17. //modified to #@$!sucker on the first pass and the rest of it would be missed because
  18. //the partially censored form no longer matches a word in the list.
  19. //
  20.  
  21. $censor::word0    = "bitch";
  22. $censor::word1    = "cocksucker";
  23. $censor::word2    = "cock";
  24. $censor::word3    = "cunt";
  25. $censor::word4    = "damn";
  26. $censor::word5    = "dick";
  27. $censor::word6    = "douchebag";
  28. $censor::word7    = "faggot";
  29. $censor::word8    = "asshole";
  30. $censor::word9    = "motherfucker";
  31. $censor::word10   = "fuck";
  32. $censor::word11   = "nigger";
  33. $censor::word12   = "piss";
  34. $censor::word13   = "prick";
  35. $censor::word14   = "pussy";
  36. $censor::word15   = "rape";
  37. $censor::word16   = "shit";
  38. $censor::word17   = "vagina";
  39. $censor::word18   = "vulva";
  40. $censor::word19   = "anus";
  41. $censor::word20   = "anal";
  42. $censor::word21   = "crap";
  43. $censor::word22   = "kike";
  44. $censor::word23   = "penis";
  45. $censor::word24   = "poop";
  46. $censor::word25   = "rectum";
  47. $censor::word26   = "semen";
  48. $censor::word27   = "sperm";
  49.  
  50.