05-08-13, 16:05
PHP Code:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#include <colorchat>
#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "batu"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_logevent("RoundStart", 2, "1=Round_Start")
register_logevent("RoundEnd", 2, "1=Round_End" )
}
public RoundStart()
{
set_task(60.0,"altmis")
}
public RoundEnd()
{
remove_task
}
public altmis()
{
ColorChat(0,GREEN,"60 Saniye Doldu Artik Silah Alamazsin")
return PLUGIN_HANDLED
}
olması lazım dene bi

