Raised This Month: $51 Target: $400
 12% 

Message don't want to get blocked


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
einsfuhrer
Member
Join Date: Jun 2019
Old 10-08-2019 , 07:13   Message don't want to get blocked
Reply With Quote #1

So I changed a bit in sneaKs cash message removal plugin.

I changed from cash messages to the message you get when you plant the bomb: http://prntscr.com/pgela6

And here is the code, but it doesn't block the message, anyone know what's wrong?

PHP Code:
#include <sourcemod>
#pragma newdecls required

public Plugin myinfo 
{
    
name "Remove Cash & Points Messages (CS:GO)"
    
author "sneaK"
    
version "1.3",
    
description "Disables certain messages in chat",
    
url "https://snksrv.com"
};

public 
void OnPluginStart()
{
    
HookUserMessage(GetUserMessageId("TextMsg"), RemoveMessagetrue);
}

public 
Action RemoveMessage(UserMsg msg_idBfRead msg, const int[] playersint playersNumbool reliablebool init)
{
    
char buffer[64];
    
PbReadString(msg"params"buffersizeof(buffer), 0);
    
    if (
StrEqual(buffer"#Cstrike_TitlesTXT_Planting_Bomb"))
    {
        return 
Plugin_Handled;
    }
    return 
Plugin_Continue;

einsfuhrer is offline
Ilusion9
Veteran Member
Join Date: Jun 2018
Location: Romania
Old 10-08-2019 , 07:47   Re: Message don't want to get blocked
Reply With Quote #2

Thats a radio message, not TextMsg. Search for all usermessages types, there should be the Radio type.
__________________
Ilusion9 is offline
einsfuhrer
Member
Join Date: Jun 2019
Old 10-08-2019 , 12:16   Re: Message don't want to get blocked
Reply With Quote #3

Quote:
Originally Posted by Ilusion9 View Post
Thats a radio message, not TextMsg. Search for all usermessages types, there should be the Radio type.
Worked, ty
einsfuhrer is offline
Reply



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 14:36.


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