=>>
Code:
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "New Plugin"
#define VERSION "1.0"
#define AUTHOR "Author"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR);
register_logevent("round_end", 2, "1=Round_End");
}
public round_end()
{
new tplayers[32], num
get_players(tplayers, num, "ae", "TERRORIST");
new player
for(new i = 0; i < num; i++)
{
player = tplayers[i]
//
//do stuffs to T players alive
//E.g client_print(player,print_chat,"You still alive! ^^ Gj :P);
//
}
}
__________________