Quote:
Originally Posted by Ashcan
sorry but u are helpless...
how can i block that command more than once every 10 seconds ?
|
sorry but you are BRAINless...
see my first post.
http://forums.alliedmods.net/search....archid=5372736

3. thread :
http://forums.alliedmods.net/showthr...ghlight=in_use
Block use
and how is it about to research for some words like :
countdown
set_task
block time
...
or how you ask i think you can code... how about :
Code:
new bool:player_used_use[33] = false
public FwdUseButton( iEnt, iClient )
{
if( is_user_alive( iClient ) && player_used_use[iClient])
{
return HAM_SUPERCEDE;
}
else
player_used_use[iClient] = true
set_task(10.0,"reset_players_score",id)
return HAM_IGNORED;
}
public reset_players_score(id)
{
player_used_use[id] = false
}
__________________