Here is the new code, it doesn't work either.
Whats wrong?!?
PHP Code:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#include <fun>
#include <cstrike>
#define PLUGIN "Defuse Kit"
#define VERSION "1.0"
#define AUTHOR "p1Mp"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_logevent("round_start", 2, "1=Round_Start")
}
public round_start()
{
new players[32], num, id
get_players(players, num, "aeh", "CT")
for(new i = 0; i < num; i++)
{
id = players[i]
give_item(i, "item_thighpack")
}
}