Example...
PHP Code:
//Global
new Killler,Victim
//Init
register_event("DeathMsg","EventDeathMsg","a")
//EventDeathMsg
Killer = read_data(1)
Victim = read_data(2)
if(Killer != Victim)
{
ShowMenu(Killer)
}
//Menu
ShowMenu(Killer)
{
//Menu Items
}
//Handler
{
if(Choice)
{
ShowMenu(Looser)
}
//And continue with the same...if choice looser,openmenu to killer...
}
Is that possible?