Author Topic: CS Script  (Read 6720 times)

0 Members and 2 Guests are viewing this topic.

Particle

  • Chief Codemonger
  • Administrator
  • Centurian Lord
  • ********
  • Posts: 5,904
  • Reputation: +20/-4
    • Particle's Custom RPG
CS Script
« on: May 29, 2004 09:44 pm CDT »
Any CS players around here--does anybody know of a script to disable the text chat in CS?  I really just don't want to read it.  I use the orb skin which is broken in DoD when it comes to chat and it's wonderful!  Much more fun when people aren't unsavory womaning and lolololololol rotf hahahaha!!!!11111 blah keke ahahah at everybody's misfortune.

15 levels or a custom forum title to anybody who finds me a script.
« Last Edit: December 31, 1969 06:00 pm CST by Particle »
As a point of history:  Our last server clear was on September 27, 2004.  That is 4963 days ago (13.6 years) as of today.

If you're visiting after a long hiatus and have forgotten your password, try emailing me via the support form at http://www.pcrpg.org.

If your character is from after the 2004 clear but appears to have been deleted or reset, chances are it was caught in one of the inactive account purges over the years.  Backups were made before such events, so try the support form.

Jonah

  • Uber Menace
  • *******
  • Posts: 1,662
  • Reputation: +0/-0
(No subject)
« Reply #1 on: May 29, 2004 09:47 pm CDT »
Don't know of any such script, but can I have a custome title anyway?  :P
« Last Edit: December 31, 1969 06:00 pm CST by Jonah »


xRazorex: How big is an average 13 year old penis size?

BlAcK-IcE

  • Centurian Lord
  • ********
  • Posts: 2,643
  • Reputation: +0/-0
(No subject)
« Reply #2 on: May 29, 2004 11:58 pm CDT »
Quote from: "Jonah"
Don't know of any such script, but can I have a custome title anyway?  :P
« Last Edit: December 31, 1969 06:00 pm CST by BlAcK-IcE »

Lidge Farkley

  • Uber Menace
  • *******
  • Posts: 1,357
  • Reputation: +2/-3
    • http://www.angelfire.com/ca2/psychosworld2/
(No subject)
« Reply #3 on: May 30, 2004 12:23 am CDT »
blah blah blah.. I found a link see next post:
« Last Edit: May 30, 2004 12:41 am CDT by Lidge Farkley »
Lend your heart unto the divine mineral TOPAZ;
from which our reverent hearts and minds sprang.
Also Known As:  Alcoholic 007
My Page of tribes Tools and Helpful "FAQ" Stuff

Lidge Farkley

  • Uber Menace
  • *******
  • Posts: 1,357
  • Reputation: +2/-3
    • http://www.angelfire.com/ca2/psychosworld2/
(No subject)
« Reply #4 on: May 30, 2004 12:39 am CDT »
Here is a link:

http://www.techspot.com/tweaks/cstrike/print.shtml

Here is the part of the link which is helpful:
Code: [Select]
cl_showmessages "x". A value of 1 for x enables the display of messages
in multiplayer games, 0 will disable this. It's probably best to leave this
set to 1, although a bit of user discretion comes into this.

It pertains to:
Code: [Select]
Config files

The tweaks here can be either changed in your config.cfg or you may
make your own custom Config file for the game. If you want to make you
own config file then simply create a New Text Document, enter in the
settings & save the file as All files & name it "autoexec.cfg" (The "" will
disable saving the file as autoexec.cfg.txt instead). Depending on what
config file you are trying to edit, they should be located/saved in the
appropriate sub-directory, e.g. Team Fortress Classic config files should
be stored in the tfc subdirectory of where Half-Life is installed, e.g.
D:\Half-Life\tfc. Counter-Strike files are in the cstrike subdirectory, while
Half-Life uses the valve subdirectory, & so on.. If you wish you may name
it something other than autoexec, however the autoexec.cfg is

automatically loaded upon starting the respective Game-type. If named
other than autoexec.cfg you can load other customconfig.cfgs via the
console, e.g. exec customconfig.cfg.



NOTE  If you choose to make the settings in your own custom config file
then you can omit the "" from each setting. In the config.cfg there will
need to be a "x". E.g. In your config.cfg a setting would appear as follows,
r_texturemode "LINEAR_MIPMAP_LINEAR". while in your own
autoexec.cfg it would appear simply as r_texturemode
LINEAR_MIPMAP_LINEAR.




Peace.
« Last Edit: December 31, 1969 06:00 pm CST by Lidge Farkley »
Lend your heart unto the divine mineral TOPAZ;
from which our reverent hearts and minds sprang.
Also Known As:  Alcoholic 007
My Page of tribes Tools and Helpful "FAQ" Stuff

Particle

  • Chief Codemonger
  • Administrator
  • Centurian Lord
  • ********
  • Posts: 5,904
  • Reputation: +20/-4
    • Particle's Custom RPG
(No subject)
« Reply #5 on: May 30, 2004 08:10 am CDT »
That setting doesn's disable the chat text, sorry.  Thanks for trying though =)

Offer still stands.
« Last Edit: December 31, 1969 06:00 pm CST by Particle »
As a point of history:  Our last server clear was on September 27, 2004.  That is 4963 days ago (13.6 years) as of today.

If you're visiting after a long hiatus and have forgotten your password, try emailing me via the support form at http://www.pcrpg.org.

If your character is from after the 2004 clear but appears to have been deleted or reset, chances are it was caught in one of the inactive account purges over the years.  Backups were made before such events, so try the support form.

-eViL-

  • Minotaur Rager
  • ******
  • Posts: 880
  • Reputation: +0/-0
(No subject)
« Reply #6 on: May 30, 2004 11:48 am CDT »
#include <amxmod>

public plugin_init()
{
   register_plugin("No Chatting","1.0","AssKicR")
   register_clcmd("say","no_chat")
   register_clcmd("say_team","tno_chat")
   register_cvar("amx_stfu","1",0)
   register_cvar("amx_stfu_team","0",1)
   return PLUGIN_CONTINUE
}

public no_chat(id) {
   if (get_cvar_num("amx_stfu"))
      return PLUGIN_HANDLED
   return PLUGIN_CONTINUE
}

public tno_chat(id) {
   if (get_cvar_num("amx_stfu_team"))
      return PLUGIN_HANDLED
   return PLUGIN_CONTINUE
}
« Last Edit: December 31, 1969 06:00 pm CST by -eViL- »
There's nothing ever wrong but nothing's ever right
Such a cruel contradiction

Razore

  • Centurian Lord
  • ********
  • Posts: 2,116
  • Reputation: +1/-1
    • http://chaoko.tripod.com
(No subject)
« Reply #7 on: May 30, 2004 12:07 pm CDT »
Is that not for hosting a server, Evil?
« Last Edit: December 31, 1969 06:00 pm CST by Razore »

xRazorex: Yo
BlAcKIcE398: wtf u got me killed newb
BlAcKIcE398: block
BlAcKIcE398 signed off at 3:49:05 PM.

Particle

  • Chief Codemonger
  • Administrator
  • Centurian Lord
  • ********
  • Posts: 5,904
  • Reputation: +20/-4
    • Particle's Custom RPG
(No subject)
« Reply #8 on: May 30, 2004 01:45 pm CDT »
That's what I'm wondering.  This is for client side.
« Last Edit: December 31, 1969 06:00 pm CST by Particle »
As a point of history:  Our last server clear was on September 27, 2004.  That is 4963 days ago (13.6 years) as of today.

If you're visiting after a long hiatus and have forgotten your password, try emailing me via the support form at http://www.pcrpg.org.

If your character is from after the 2004 clear but appears to have been deleted or reset, chances are it was caught in one of the inactive account purges over the years.  Backups were made before such events, so try the support form.

Razore

  • Centurian Lord
  • ********
  • Posts: 2,116
  • Reputation: +1/-1
    • http://chaoko.tripod.com
(No subject)
« Reply #9 on: May 30, 2004 01:51 pm CDT »
That is for AMX mod while hosting =P
« Last Edit: December 31, 1969 06:00 pm CST by Razore »

xRazorex: Yo
BlAcKIcE398: wtf u got me killed newb
BlAcKIcE398: block
BlAcKIcE398 signed off at 3:49:05 PM.

-eViL-

  • Minotaur Rager
  • ******
  • Posts: 880
  • Reputation: +0/-0
(No subject)
« Reply #10 on: May 30, 2004 01:51 pm CDT »
i could make you a client side modification but any VAC servers you play on may call it a hack because it would be an unknown file in the folder.
« Last Edit: December 31, 1969 06:00 pm CST by -eViL- »
There's nothing ever wrong but nothing's ever right
Such a cruel contradiction

UnderGod

  • Centurian Lord
  • ********
  • Posts: 2,691
  • Reputation: +0/-0
(No subject)
« Reply #11 on: May 30, 2004 02:05 pm CDT »
Yeah.. VAC has gone nazi due to the high amount of cheaters.

You can't really do anything besides aliases anymore without getting nailed.
« Last Edit: December 31, 1969 06:00 pm CST by UnderGod »
"The right man in the wrong place can make all the difference in the world"

Particle

  • Chief Codemonger
  • Administrator
  • Centurian Lord
  • ********
  • Posts: 5,904
  • Reputation: +20/-4
    • Particle's Custom RPG
(No subject)
« Reply #12 on: May 30, 2004 03:23 pm CDT »
Quote from: "Razore"
That is for AMX mod while hosting =P


That's what I figured.  What I meant by "this" is what I was requesting.
« Last Edit: December 31, 1969 06:00 pm CST by Particle »
As a point of history:  Our last server clear was on September 27, 2004.  That is 4963 days ago (13.6 years) as of today.

If you're visiting after a long hiatus and have forgotten your password, try emailing me via the support form at http://www.pcrpg.org.

If your character is from after the 2004 clear but appears to have been deleted or reset, chances are it was caught in one of the inactive account purges over the years.  Backups were made before such events, so try the support form.

LastWish

  • What's Yours?
  • Uber Menace
  • *******
  • Posts: 1,743
  • Reputation: +0/-0
(No subject)
« Reply #13 on: May 30, 2004 05:24 pm CDT »
I think   ---->   hud_saytime_text "0"  <-----   should work, but I'm not sure (I uninstalled CS).
« Last Edit: December 31, 1969 06:00 pm CST by LastWish »

LastWish

  • What's Yours?
  • Uber Menace
  • *******
  • Posts: 1,743
  • Reputation: +0/-0
(No subject)
« Reply #14 on: May 30, 2004 07:10 pm CDT »
hud_saytext_time "0"

If the first one doesn't work, this is it.
« Last Edit: December 31, 1969 06:00 pm CST by LastWish »