What I retrieved was:
PHP Code:
findplayer(x).WEAPON.function();
You can easily do it with:
PHP Code:
with(findplayer("Fry"))
FrenchFries.trigger("cook");
=---=
Use of thiso.trigger():
PHP Code:
with (findplayer(x))
{
hp -= dam;
if (hp < 0)
thiso.trigger("kill",player.account);
}