View Single Post
Author Message
condolent
AlliedModders Donor
Join Date: Jan 2016
Location: gc_sLocation;
Old 07-25-2017 , 05:05   [CS:GO] Warningshot
Reply With Quote #1

Warningshot

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
  1. Download the plugin.
  2. Put warningshot.smx file to your csgo/addons/sourcemod/plugins folder.
  3. Put warningshot.phrases.txt file to your csgo/addons/sourcemod/translations folder.
  4. 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
PHP Code:
/**
* 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 victimint inflictor);

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

Links
Github
__________________

Last edited by condolent; 07-27-2017 at 16:47.
condolent is offline