-   
- #include <amxmodx> 
- #include <amxmisc> 
- #include <dhudmessage> 
-   
- #define PLUGIN "[ZP] Extra Addon: Fertozes Visszaszamlalo [HUN]" 
- #define VERSION "1.0" 
- #define AUTHOR "MercedeS" 
-   
- public plugin_init() { 
- 	register_plugin(PLUGIN, VERSION, AUTHOR) 
-   
- 	register_event("HLTV", "event_round_start", "a", "1=0", "2=0") 
- } 
-   
- public plugin_precache() 
- 	{ 
- 	precache_sound( "zp_extra_countdown_hungarian/ten.wav" ) 
- 	precache_sound( "zp_extra_countdown_hungarian/nine.wav" ) 
- 	precache_sound( "zp_extra_countdown_hungarian/eight.wav" ) 
- 	precache_sound( "zp_extra_countdown_hungarian/seven.wav" ) 
- 	precache_sound( "zp_extra_countdown_hungarian/six.wav" ) 
- 	precache_sound( "zp_extra_countdown_hungarian/five.wav" ) 
- 	precache_sound( "zp_extra_countdown_hungarian/four.wav" ) 
- 	precache_sound( "zp_extra_countdown_hungarian/three.wav" ) 
- 	precache_sound( "zp_extra_countdown_hungarian/two.wav" ) 
- 	precache_sound( "zp_extra_countdown_hungarian/one.wav" ) 
- } 
-   
- public event_round_start() 
- 	{ 
- 	set_task(5.0, "countdown") 
- } 
-   
- public countdown() 
- 	{ 
- 	set_task(1.0, "ten") 
- 	set_task(2.0, "nine") 
- 	set_task(3.0, "eight") 
- 	set_task(4.0, "seven") 
- 	set_task(5.0, "six") 
- 	set_task(6.0, "five") 
- 	set_task(7.0, "four") 
- 	set_task(8.0, "three") 
- 	set_task(9.0, "two") 
- 	set_task(10.0, "one") 
- } 
-   
- public ten() 
- 	{ 
- 	set_dhudmessage(255, 255, 255, -1.0, 0.28, 2, 0.02, 1.0, 0.01, 0.1, 10) 
- 	show_dhudmessage(0, "-=[ Fertozesig Hatramaradt ]=-^n-=[ 10 ]=-") 
- 	client_cmd(0, "spk zp_extra_countdown_hungarian/ten.wav") 
- } 
-   
- public nine() 
- 	{ 
- 	set_dhudmessage(255, 255, 255, -1.0, 0.28, 2, 0.02, 1.0, 0.01, 0.1, 10) 
- 	show_dhudmessage(0, "-=[ Fertozesig Hatramaradt ]=-^n-=[ 9 ]=-") 
- 	client_cmd(0, "spk zp_extra_countdown_hungarian/nine.wav") 
- } 
-   
- public eight() 
- 	{ 
- 	set_dhudmessage(255, 255, 255, -1.0, 0.28, 2, 0.02, 1.0, 0.01, 0.1, 10) 
- 	show_dhudmessage(0, "-=[ Fertozesig Hatramaradt ]=-^n-=[ 8 ]=-") 
- 	client_cmd(0, "spk zp_extra_countdown_hungarian/eight.wav") 
- } 
-   
- public seven() 
- 	{ 
- 	set_dhudmessage(255, 255, 255, -1.0, 0.28, 2, 0.02, 1.0, 0.01, 0.1, 10) 
- 	show_dhudmessage(0, "-=[ Fertozesig Hatramaradt ]=-^n-=[ 7 ]=-") 
- 	client_cmd(0, "spk zp_extra_countdown_hungarian/seven.wav") 
- } 
-   
- public six() 
- 	{ 
- 	set_dhudmessage(255, 255, 255, -1.0, 0.28, 2, 0.02, 1.0, 0.01, 0.1, 10) 
- 	show_dhudmessage(0, "-=[ Fertozesig Hatramaradt ]=-^n-=[ 6 ]=-") 
- 	client_cmd(0, "spk zp_extra_countdown_hungarian/six.wav") 
- } 
-   
- public five() 
- 	{ 
- 	set_dhudmessage(255, 255, 255, -1.0, 0.28, 2, 0.02, 1.0, 0.01, 0.1, 10) 
- 	show_dhudmessage(0, "-=[ Fertozesig Hatramaradt ]=-^n-=[ 5 ]=-") 
- 	client_cmd(0, "spk zp_extra_countdown_hungarian/five.wav") 
- } 
-   
- public four() 
- 	{ 
- 	set_dhudmessage(255, 255, 255, -1.0, 0.28, 2, 0.02, 1.0, 0.01, 0.1, 10) 
- 	show_dhudmessage(0, "-=[ Fertozesig Hatramaradt ]=-^n-=[ 4 ]=-") 
- 	client_cmd(0, "spk zp_extra_countdown_hungarian/four.wav") 
- } 
-   
- public three() 
- 	{ 
- 	set_dhudmessage(255, 255, 255, -1.0, 0.28, 2, 0.02, 1.0, 0.01, 0.1, 10) 
- 	show_dhudmessage(0, "-=[ Fertozesig Hatramaradt ]=-^n-=[ 3 ]=-") 
- 	client_cmd(0, "spk zp_extra_countdown_hungarian/three.wav") 
- } 
-   
- public two() 
- 	{ 
- 	set_dhudmessage(255, 255, 255, -1.0, 0.28, 2, 0.02, 1.0, 0.01, 0.1, 10) 
- 	show_dhudmessage(0, "-=[ Fertozesig Hatramaradt ]=-^n-=[ 2 ]=-") 
- 	client_cmd(0, "spk zp_extra_countdown_hungarian/two.wav") 
- } 
-   
- public one() 
- 	{ 
- 	set_dhudmessage(255, 0, 0, -1.0, 0.28, 2, 0.02, 1.0, 0.01, 0.1, 10) 
- 	show_dhudmessage(0, "-=[ Fertozesig Hatramaradt ]=-^n-=[ 1 ]=-") 
- 	client_cmd(0, "spk zp_extra_countdown_hungarian/one.wav") 
- } 
-