View Single Post
FoxMulder
Senior Member
Join Date: Jan 2009
Location: Orlando, FL
Old 04-17-2011 , 12:31   Re: Get player color? Red -1 | Green 822083583 | Blue 1546715135 | Alpha -2
Reply With Quote #2

Try this

PHP Code:
#include <sourcemod>
#pragma semicolon 1

new m_clrRender;

public 
Plugin:myinfo =
{
    
name "Test script",
    
author "KK",
    
description "Test script",
    
version "0.1",
    
url "http://www.attack2.co.cc/"
};

public 
OnPluginStart()
{
    
RegConsoleCmd("sm_mycolor"Command_MyColor);
    
m_clrRender FindSendPropOffs("CTFPlayer""m_clrRender");
}
 
public 
Action:Command_MyColor(clientargs)
{
    
PrintToChat(client"You color are Red %i | Green %i | Blue %i | Alpha %i "GetEntData(clientm_clrRender1), GetEntData(clientm_clrRender 11)), GetEntData(clientm_clrRender 21), GetEntData(clientm_clrRender 31));

__________________

Last edited by FoxMulder; 04-17-2011 at 12:35.
FoxMulder is offline