Page 1 of 1

[CS:GO] Warningshot

Posted: Thu Jan 23, 2020 3:38 pm
by Andreeas
Description
A simple plugin giving Counter-Terrorists the ability to give Terrorists warning shots by holding the USE-key (Default: E) and shooting a terrorist once.
By default, each warningshot makes 15 damage, but this can easily be changed via the config.

How to install
  • Download the plugin.
    Put warningshot.smx file to your csgo/addons/sourcemod/plugins folder.
    Put warningshot.phrases.txt file to your csgo/addons/sourcemod/translations folder.
    Restart the server or change map.
ConVars
  • sm_warning_colored - How long should the victim of the warning shot be colored? Set to 0 to disable entirely! (Def: 4)
    sm_warning_color_R - The RED value of the color the warned T should get. (Def: 255)
    sm_warning_color_G - The GREEN value of the color the warned T should get. (Def: 114)
    sm_warning_color_B - The BLUE value of the color the warned T should get. (Def: 0)
    sm_warning_damage - How much damage is a warning shot supposed to give? (Def: 15)
    sm_warning_version - The current version of the plugin you're running. Don't change this!
Api For Developers:

Code: Select all

/**
* Gives the specified client a warning shot.
*
* @param client index of the victim.
* @param client index of the inflictor.
* @return true if succesful.
*/
native bool GiveClientWarningShot(int victim, int inflictor);

/**
* Called when a client has been given a warningshot.
*
* @param The victims' client index.
* @param The attackers' client index.
*/
forward void OnWarningShotGiven(int victim, int inflictor); 
Download now!