View Single Post
Mitchell
~lick~
Join Date: Mar 2010
Old 04-30-2013 , 12:29   Re: Location in Voice blocker?
Reply With Quote #9

Quote:
Originally Posted by GoD-Tony View Post
Something like this should work. Credit to Peace-Maker (if I remember correctly).
PHP Code:
#include <sourcemod>
#include <sdkhooks>

public OnClientPutInServer(client)
{
    
SDKHook(clientSDKHook_PreThinkPostHook_PreThinkPost);
}

public 
Hook_PreThinkPost(client)
{
    
SetEntPropString(clientProp_Send"m_szLastPlaceName""");

Could this be used to put like: "Warden" on a player's name with out changing their name in game?
Mitchell is offline