HLMOD.HU Forrás Megtekintés
	- www.hlmod.hu- #include <amxmodx> 
- #include <amxmisc> 
-   
- #define PLUGIN "Bomb-Info_Hud" 
- #define VERSION "1.0" 
- #define AUTHOR ".#HaJHoO" 
-   
- forward bomb_planted(planter); 
-   
-   
-   
- public plugin_init() { 
- register_plugin(PLUGIN, VERSION, AUTHOR) 
-   
- } 
-   
- public bomb_planted(id) { 
- new plantername[32] 
- get_user_name(id,plantername,31) 
- set_hudmessage(0, 255, 255, 0.3, 0.4, 0, 6.0, 12.0) 
- show_hudmessage(0, "%s Elesetitte a bombat", plantername) 
-   
- } 
-   
- forward defused_bomb(defuser); 
-   
- public defused_bomb(id) { 
- new defusedname[32] 
- get_user_name(id,defusedname,31) 
- set_hudmessage(0, 255, 255, 0.3, 0.4, 0, 6.0, 12.0) 
- show_hudmessage(0, "%s Elharitotta a bomba robbanast", defusedname) 
-   
- }