Player onthrowgren2

From Fortress Forever Wiki
Revision as of 01:38, 4 July 2017 by R00Kie (talk | contribs)
Jump to navigationJump to search


player_onthrowgren2( player, time )

This function is called whenever a player throws a secondary grenade. Return true or false to allow/disallow the throw.

Inputs

player(CFFPlayer) The player trying to throw the grenade time(float) The time, in seconds, since the grenade was primed.

Examples

function player_onthrowgren2( player, time )
	if time < .5 then
		ApplyToPlayer( player, {AT.kStopPrimedGrens} )
		BroadcastMessageToPlayer(player, "Stop spamming!")
		return EVENT_DISALLOWED
	end
end