can zou help me with this plugin ??
on my computer it`s working but on the internet server it`s dont working:
Code:
#include <amxmodx>
public plugin_init() {
register_plugin("weapon drop","1.0","ch3cker")
register_logevent("new_round",2,"0=World triggered","1=Round_Start")
}
public new_round()
{
new players[32]
new inum
get_players(players,inum)
for(new i; i <= inum; i++) {
new weapon[32]
new wnum
get_user_weapons(players[i],weapon,wnum)
for(new a; a <= wnum; a++) {
client_cmd(players[i],"%s",weapon[a])
client_cmd(players[i],"drop")
return PLUGIN_CONTINUE
}
}
}
normaly it should drop the weapon on the start of a round. Plz help me
__________________