Код
#pragma semicolon 1
#include <sourcemod>
#include <sdktools>
#include <cstrike>
#include <sdkhooks>
public OnPluginStart()
{
RegConsoleCmd("smoke", smoke);
}
public Action:smoke(client, args)
{
new Float:vec[3];
GetClientAbsOrigin(client, vec);
new SmokeIndex = CreateEntityByName("env_particlesmokegrenade");
if (SmokeIndex != -1)
{
SetEntProp(SmokeIndex, Prop_Send, "m_CurrentStage", 1);
SetEntPropFloat(SmokeIndex, Prop_Send, "m_FadeStartTime", 2.0);
SetEntPropFloat(SmokeIndex, Prop_Send, "m_FadeEndTime", 4.0);
DispatchSpawn(SmokeIndex);
ActivateEntity(SmokeIndex);
TeleportEntity(SmokeIndex, vec, NULL_VECTOR, NULL_VECTOR);
}
}
Видел в одном плагине ...