From 2024273648858ab009892ee38e780a835a6bd4dc Mon Sep 17 00:00:00 2001 From: Lance Date: Fri, 26 May 2006 11:58:13 +0000 Subject: Added a few more events in.. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6776 54d463be-8e91-2dee-dedb-b68131a5f0ec --- npc/sample/monster_controller.cpp | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'npc/sample') diff --git a/npc/sample/monster_controller.cpp b/npc/sample/monster_controller.cpp index 2c1c4acf4..035215300 100644 --- a/npc/sample/monster_controller.cpp +++ b/npc/sample/monster_controller.cpp @@ -68,11 +68,17 @@ prontera.gat,180,200,4 script Monster Controller 123,{ set .@action_name$, ""+.ai_action[AI_ACTION_TAR]; break; } + if(.ai_action[AI_ACTION_TYPE] == AI_ACTION_TYPE_ATTACK) - set .@action_type$, "attacked by"; + set .@action_type$, "Attacked by"; + else if(.ai_action[AI_ACTION_TYPE] == AI_ACTION_TYPE_DETECT) + set .@action_type$, "Detected"; + else if (.ai_action[AI_ACTION_TYPE] == AI_ACTION_TYPE_ASSIST) + set .@action_type$, "Killed by"; else - set .@action_type$, "detected"; - announce "Action " + .@action_type$ + " [" + .@action_from$ + "] " + .@action_name$ + "!", bc_all; + set .@action_type$, "Assisting"; + + announce "Details - " + .@action_type$ + " [" + .@action_from$ + "] " + .@action_name$ + "!", bc_all; deletearray .ai_action, 4; end; } -- cgit v1.2.3-60-g2f50