Raised This Month: $32 Target: $400
 8% 

Paused Chat - Adds ability to chat while server is paused.


Post New Thread Reply   
 
Thread Tools Display Modes
Plugin Info:     Modification:   ALL        Category:          Approver:   devicenull (200)
ToT | V!PER
Senior Member
Join Date: Jun 2004
Location: Germany
Old 06-26-2004 , 13:39   Paused Chat - Adds ability to chat while server is paused.
Reply With Quote #1

Adds ability to chat while server is paused.
It has been an old default plugin of AMX 0.93 and works flawlessly with AMXX 0.16.

Original Coded by: OLO
Attached Files
File Type: sma Get Plugin or Get Source (amx_pausedchat.sma - 2093 views - 1.7 KB)
ToT | V!PER is offline
Send a message via ICQ to ToT | V!PER
BigBaller
Veteran Member
Join Date: Mar 2004
Location: Everett, WA
Old 06-26-2004 , 19:23  
Reply With Quote #2

Doesnt AMXX already have this feature, I know when I paused my server people could still talk?
__________________

BigBaller is offline
ToT | V!PER
Senior Member
Join Date: Jun 2004
Location: Germany
Old 06-28-2004 , 10:45  
Reply With Quote #3

Yes, but only one line from each player.

With this plugin you can chat until server is unpaused ;-)
ToT | V!PER is offline
Send a message via ICQ to ToT | V!PER
BigBaller
Veteran Member
Join Date: Mar 2004
Location: Everett, WA
Old 06-28-2004 , 21:57  
Reply With Quote #4

ahh, I see good idea.
__________________

BigBaller is offline
EKS
Veteran Member
Join Date: Mar 2004
Location: Norway
Old 06-29-2004 , 07:27  
Reply With Quote #5

Hi Viper Long time

You forgot to put Olo in the topic title
Quote:
you didn't write the plugin: put the name of the author to the topic and to the post
__________________
Github archive for plugins, the repos for the other c++ projects are there to.
EKS is offline
ToT | V!PER
Senior Member
Join Date: Jun 2004
Location: Germany
Old 06-29-2004 , 17:56  
Reply With Quote #6

Quote:
Originally Posted by EKS
Hi Viper Long time

You forgot to put Olo in the topic title
Quote:
you didn't write the plugin: put the name of the author to the topic and to the post
I would, but topic name is too long ;)
ToT | V!PER is offline
Send a message via ICQ to ToT | V!PER
SubStream
Veteran Member
Join Date: Aug 2005
Location: USA
Old 05-08-2006 , 02:10  
Reply With Quote #7

All these great plugins from a while back. Does anyone know if this works on 1.71 ????
SubStream is offline
MaximusBrood
Veteran Member
Join Date: Sep 2005
Location: The Netherlands
Old 05-08-2006 , 03:56  
Reply With Quote #8

The OLOCode should be cleaned up so you can test it

EDIT:

OLOCode removed
Excuse my semicolon usage

Code:
/* AMX Mod script. * * (c) Copyright 2002-2003, OLO * This file is provided as is (no warranties). * * Make sure to disable anti-flood plugin during clanmatches * or just put this plugin before anti-flood plugin in plugins.ini * */ #include <amxmodx> #pragma semicolon 1 new Float:last_chat; new gmsgSayText; public pcSay(id) {     new Float:gametime = get_gametime();     if (gametime > last_chat)     {         last_chat = gametime + 0.01;         return PLUGIN_CONTINUE;     }     new name[32], message[192];     get_user_name(id, name, 31);     read_args(message,191);     remove_quotes(message);     format(message,191,"%c%s :    %s^n", 2, name, message);     message_begin( MSG_ALL , gmsgSayText, {0,0,0}, id);     write_byte(id);     write_string(message);     message_end();     return PLUGIN_HANDLED; } public pcSayTeam(id) {     new Float:gametime = get_gametime();     if (gametime > last_chat)     {         last_chat = gametime + 0.01;         return PLUGIN_CONTINUE;     }     new team[32], name[32], message[192], players[32], inum;     get_user_team(id, team, 31);     get_players(players, inum, "e", team);     read_args(message,191);     remove_quotes(message);     get_user_name(id,name,31);     format(message,191,"%c(%s) %s :    %s^n", 2, team, name, message);     for(new a = 0; a < inum; a++)     {         message_begin( MSG_ONE , gmsgSayText, {0,0,0}, players[a]);         write_byte(id);         write_string(message);         message_end();     }         return PLUGIN_HANDLED; } public plugin_init() {     register_plugin("Paused Chat","1.0","AMX-Default");         gmsgSayText = get_user_msgid("SayText");         register_clcmd("say","pcSay");     register_clcmd("say_team","pcSayTeam"); }
__________________
Released six formerly private plugins. Not active here since ages.
MaximusBrood is offline
SubStream
Veteran Member
Join Date: Aug 2005
Location: USA
Old 05-08-2006 , 11:14  
Reply With Quote #9

Are you saying that the code you posted is the same plugin but it works better?
SubStream is offline
MaximusBrood
Veteran Member
Join Date: Sep 2005
Location: The Netherlands
Old 05-08-2006 , 13:40  
Reply With Quote #10

Quote:
Originally Posted by SubStream
Are you saying that the code you posted is the same plugin but it works better?
I'm saying the code I posted is the same but reads better
__________________
Released six formerly private plugins. Not active here since ages.
MaximusBrood is offline
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 23:33.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode