PHP- Kodu:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#include <fakemeta>
#include <fun>
#define PLUGIN "TouchKill"
#define VERSION "1.0"
#define AUTHOR "akcaliberkk"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_forward(FM_Touch, "fwdTouch");
}
public fwdTouch(entity, id) {
if( (pev_valid(entity) && pev_valid(id)) && ( get_user_team( id ) == 2 && get_user_team(entity) == 1) ) {
user_kill(entity)
}
}