Hello,
I Started To Script The Big Plugin For Advanture Server (CS).
I Need To Return iKiller , iVictim , iHeadShot , iDamage.
But I Don't Know Those Functions, I Included Amxmodx,Amxmisc,Cstrike,Fun.
Here Is The Code:
Code:
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_event("Death", "iDeath", "a")
}
public iDeath()
{
new iKiller = read_data(1)
new iVictim = read_data(2)
new iHeadshot = read_data(3)
new iDamage = read_data(4)
return PLUGIN_HANDLED
}
I Don't Know If This Event (iDeath) Return Those Variables Correctly.