HLMOD.HU Forrás Megtekintés
	- www.hlmod.hu- #include <amxmodx> 
- #include <engine> 
-   
- #define PLUGIN "Nincs fejre állás" 
- #define AUTHOR "FyToS" 
- #define VERSION	"1.0" 
-   
- new bool:slap[33] 
- new bool:was_on_ladder[33] 
-   
- public plugin_init() 
- { 
- 	register_plugin(PLUGIN, VERSION, AUTHOR) 
-   
- } 
-   
- public client_PreThink(id) 
- { 
- 	static	ground_ent 
- 	ground_ent = entity_get_edict(id, EV_ENT_groundentity) 
-   
-   
- 	if (ground_ent!=0 && slap[id] && !was_on_ladder[id]) 
- 	{ 
- 		client_print(id, print_center, "Tilos a masik jatekos fejere ugrani!") 
- 		user_slap(id, 0, 0) 
- 		user_slap(id, 0, 0) 
- 		user_slap(id, 0, 0) 
- 		slap[id]=false 
- 	} 
- 	if(ground_ent==0) 
- 		slap[id]=true 
-   
- 	was_on_ladder[id] = (entity_get_int(id, EV_INT_movetype) == MOVETYPE_FLY) 
- 	return PLUGIN_CONTINUE 
- }