AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting (https://forums.alliedmods.net/forumdisplay.php?f=107)
-   -   [CSS] Remove lines damage teammate (https://forums.alliedmods.net/showthread.php?t=255547)

NeXoU 01-16-2015 07:21

[CSS] Remove lines damage teammate
 
Hello,

I search a functions for remove a lines of damage teammate, for remove line to player connect for exemple, i use this :

Code:

public OnPluginStart()
{
        HookEvent("player_connect", EVENT_PLAYER_CONNECT, EventHookMode_Pre);
}

public Action:EVENT_PLAYER_CONNECT(Handle:event, const String:name[], bool:dontBroadcast) 
{
    SetEventBroadcast(event, true);
}

But for a damage team mate i don't now...

Thank you in advance
NeXoU

Oshizu 01-16-2015 07:31

Re: [CSS] Remove lines damage teammate
 
Perhaps something like this:
PHP Code:

#include <sdktools>

public OnPluginStart()
{
    
HookUserMessage(GetUserMessageId("HintText"), MsgHook_HintTexttrue)
}

public 
Action:MsgHook_HintText(UserMsg:msg_idHandle:bf, const players[], playersNumbool:reliablebool:init)
{
    
decl String:str[128];
    
BfReadString(bfstrsizeof(str), false);
    if(
StrEqual(str"#Hint_try_not_to_injure_teammates"))
    {
        return 
Plugin_Handled;
    }
    return 
Plugin_Continue



NeXoU 01-16-2015 09:54

Re: [CSS] Remove lines damage teammate
 
No this code don't work.
Thank you in advance for reading

NeXoU 01-16-2015 10:13

Re: [CSS] Remove lines damage teammate
 
I have find it's ok.
Thank you

NeXoU 01-16-2015 13:10

Re: [CSS] Remove lines damage teammate
 
I have another problem, i don't now remove a sound of radio, i have remove a chat message of radio but for a sound i don't now...
Thank in advance for reading

Peace-Maker 01-17-2015 04:46

Re: [CSS] Remove lines damage teammate
 
I know how to.
Thank you

NeXoU 01-17-2015 15:34

Re: [CSS] Remove lines damage teammate
 
Quote:

Originally Posted by Peace-Maker (Post 2250222)
I know how to.
Thank you

Can you help me ? How you Can block a sound of radio ?
Thank you in advance


All times are GMT -4. The time now is 20:04.

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