AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   New Plugin Submissions (https://forums.alliedmods.net/forumdisplay.php?f=26)
-   -   Ultimate Chat + Addons (https://forums.alliedmods.net/showthread.php?t=236576)

devilicioux 08-29-2014 14:06

Re: Ultimate Chat + Addons
 
Good Job First of all .. :)

I am using ultimate chat color .. and ultimate chat tag ..
1 problem i am encountering is i am trying to hide '/' commands and its not working..
The same plugin used to work before .. but it isnt working now.. Dont know the issue..
I am not using any other chat hooking plugin..

Here ..

Quote:

Originally Posted by ConnorMcLeod (Post 1745525)

PHP Code:

#include < amxmodx >

public plugin_init( ) 
{
    
register_plugin"Hide Slash Commands""1.0.0""Kreation" );
    
register_clcmd"say""CmdSay" );
    
register_clcmd"say_team""CmdSay" );
}

public 
CmdSayid )
{
    new 
szArg[4];
    
read_argsszArgcharsmaxszArg ) );
    
remove_quotesszArg );

    return 
szArg[0] == '/' PLUGIN_HANDLED_MAIN PLUGIN_CONTINUE;




georgik57 08-29-2014 14:48

Re: Ultimate Chat + Addons
 
Quote:

Originally Posted by devilicioux (Post 2191497)
Good Job First of all .. :)

I am using ultimate chat color .. and ultimate chat tag ..
1 problem i am encountering is i am trying to hide '/' commands and its not working..
The same plugin used to work before .. but it isnt working now.. Dont know the issue..
I am not using any other chat hooking plugin..

Here ..

use plugin_handled not plugin_handled_main and list the plugin name between the plugins that have those say commands and ultimate chat

Vivo 08-29-2014 17:05

Re: Ultimate Chat + Addons
 
Quote:

Originally Posted by devilicioux (Post 2191497)
Good Job First of all .. :)

I am using ultimate chat color .. and ultimate chat tag ..
1 problem i am encountering is i am trying to hide '/' commands and its not working..
The same plugin used to work before .. but it isnt working now.. Dont know the issue..
I am not using any other chat hooking plugin..

Here ..

Quote:

Originally Posted by Black Rose (Post 2141909)
I thought that some other plugin was supposed to block them.
If not, you can use this:

Code:
#include <amxmodx> #include <cstrike> new gCommands[][] = {     "/" } public plugin_init() {         register_plugin("Block", "1.0", "[ --{-@ ]");         set_task(0.8, "PlaceAlmostLastInQue"); } public PlaceAlmostLastInQue() {     register_clcmd("say", "HandleSay");     register_clcmd("say_team", "HandleSay"); } public HandleSay(id) {         if ( ! is_user_connected(id) )         return PLUGIN_CONTINUE;         static Text[192];     read_args(Text, charsmax(Text));     remove_quotes(Text);     trim(Text);         if ( ! Text[0] )         return PLUGIN_HANDLED;         for ( new i ; i < sizeof gCommands ; i++ ) {         if ( equali(Text, gCommands[i], strlen(gCommands[i])) )             return PLUGIN_HANDLED;     }         return PLUGIN_CONTINUE; }


devilicioux 09-01-2014 14:07

Re: Ultimate Chat + Addons
 
Quote:

Originally Posted by Vivo (Post 2186877)
Bug !
It's strange i know !
Player see the messages on my servers like that...

When i dissabled ultimate chat no problem, I don't have another chat plugin and i know what i'm talking about xD

Same Problem .. Any Fix Available ?

Vivo 09-01-2014 19:05

Re: Ultimate Chat + Addons
 
Quote:

Originally Posted by devilicioux (Post 2192671)
Same Problem .. Any Fix Available ?

Yes now many players have this problem....

Spywar 09-12-2014 15:40

Re: Ultimate Chat + Addons
 
1 Attachment(s)
I use ultimate chat and i have a problem: If I am dead,I see the chat lines double...with the tag *DEAD* or *ALIVE* and then normal with the nick of the player...check the picture...

Someone knows?

Vivo 09-22-2014 14:03

Re: Ultimate Chat + Addons
 
Black Rose Where have you been man ?
I'll explain the problem, With last valve cs 1.6 client update ( beta's one ), We can't see chat with your plugin, We see admin name as s1, and message as s2, Please try to use beta cs 1.6 client version and fix the plugin, Now i'm not use any chat plugin because your plugin was best one, But now i'm disappointed.

MeinHerzBrennt 10-28-2014 08:11

Re: Ultimate Chat + Addons
 
Hello,

so this problem people are talking about in posts above..
..is it still an active and ongoing problem for CS 1.6 servers
or has it been managed recently, and it's safe to add the plugin? :D

Thanx!

Vivo 10-28-2014 08:26

Re: Ultimate Chat + Addons
 
Quote:

Originally Posted by MeinHerzBrennt (Post 2216912)
Hello,

so this problem people are talking about in posts above..
..is it still an active and ongoing problem for CS 1.6 servers
or has it been managed recently, and it's safe to add the plugin? :D

Thanx!

Problem still. :(

Vivo 01-13-2015 12:45

Re: Ultimate Chat + Addons
 
@Black Rose Still alive ?
Your plugins have problem with beta counter-strike update.


All times are GMT -4. The time now is 16:51.

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