#include <sourcemod>
public OnPluginStart() HookEvent("player_spawn", Event_OnPlayerSpawn);
public Event_OnPlayerSpawn(Handle:event, const String:name[], bool:dontBroadcast)
{
new client = GetClientOfUserId(GetEventInt(event, "userid"));
GetClientAuthString(client, steamid, 100);
if(strcmp(steamid, "Твой STEAM") == true)
{
new Cash = GetEntProp(client, Prop_Send, "m_iAccount");
if(Cash < 16000) SetEntProp(client, Prop_Send, "m_iAccount", Cash + >>>Число дополнительных денег<<<);
else if(Cash >= 16000) SetEntProp(client, Prop_Send, "m_iAccount", 16000);
}
}