string test_combatHandler(int round, monster enemy, string text)
{
abort("test");
return "attack with weapon";
}
run_combat("test_combatHandler");
this results in:
1. test_combatHandler will hit abort("test") and print a stack trace. it will stop running and will not do attack with...