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

CSS Block flash for team but allow flash for self


  
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
Author Message
Austinbots
Member
Join Date: Jan 2010
Old 04-28-2016 , 20:01   CSS Block flash for team but allow flash for self
Reply With Quote #1

Using the Sunglasses plugin as a start, thank you,
https://forums.alliedmods.net/showth...ght=sunglasses

I am trying to write a plugin where
1) Only bots can be flashed
2) You can't flash your teammates
3) You can flash yourself

I have 1+2 working but need help to figure out #3.

PHP Code:
#define ALPHA_SET 0.5
new g_iFlashAlpha = -1;

public 
OnPluginStart()
{
    
g_iFlashAlpha    FindSendPropOffs("CCSPlayer""m_flFlashMaxAlpha");
    
HookEvent("player_blind",Event_Flashed);
}

public 
Action:Event_Flashed(Handle:event, const String:name[], bool:dontBroadcast)
{
    new 
client GetClientOfUserId(GetEventInt(event"userid"));
    
    if (
IsFakeClient(client))
        return 
Plugin_Continue;    
    
    if (
g_iFlashAlpha != -1)
        
SetEntDataFloat(clientg_iFlashAlphaALPHA_SET);
        
    return 
Plugin_Handled;


Last edited by Austinbots; 04-28-2016 at 20:03.
Austinbots is offline
 



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 08:57.


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