6almasok írta:
Most nincs kedvem megírni 

Ki kérdezett? Jelentés gomb is van nem kell nekd is ide offolni, hogy ne szólj akkor hozzá a témához...
Syn írta:
- #include <amxmodx> 
- #include <hamsandwich> 
- #include <cstrike> 
-   
- #define PLUGIN "Respawn" 
- #define VERSION "1.0" 
- #define AUTHOR "Syn" 
-   
-   
- public plugin_init() { 
- 	register_plugin(PLUGIN, VERSION, AUTHOR) 
- 	register_clcmd("say /respawn", "ujra") 
-   
- } 
- public ujra(id) { 
- 	 if(is_user_alive(id) && CS_TEAM_SPECTATOR) { 
- 		client_print(id, print_chat, "Csak halottak használhatják!") 
- 	} 
- 	else 
- 	{ 
- 		ExecuteHamB(Ham_CS_RoundRespawn, id) 
- 	} 
- } 
-   
- if(is_user_alive(id) && CS_TEAM_SPECTATOR) { 
magyarul ha él és sceciben van akkor fut ez le (nagyon jó párosítás  

 )
- #include <amxmodx> 
- #include <hamsandwich> 
- #include <cstrike> 
-   
- #define PLUGIN "Respawn" 
- #define VERSION "1.0" 
- #define AUTHOR "Syn" 
-   
-   
- public plugin_init() { 
- 	register_plugin(PLUGIN, VERSION, AUTHOR) 
- 	register_clcmd("say /respawn", "ujra") 
- } 
- public ujra(id) { 
- 	new CsTeams:Team = cs_get_user_team(id) 
-   
- 	if(is_user_alive(id) || Team == CS_TEAM_SPECTATOR) { 
- 		client_print(id, print_chat, "Csak halottak használhatják!") 
- 	} 
- 	else 
- 	{ 
- 		ExecuteHamB(Ham_CS_RoundRespawn, id) 
- 	} 
- }