Files
2018-06-07 00:32:29 +01:00

572 lines
24 KiB
Java
Executable File

package script.conversation;
import script.library.ai_lib;
import script.library.chat;
import script.library.groundquests;
import script.library.utils;
import script.*;
public class npe_rakqua_capture extends script.base_script
{
public npe_rakqua_capture()
{
}
public static String c_stringFile = "conversation/npe_rakqua_capture";
public boolean npe_rakqua_capture_condition__defaultCondition(obj_id player, obj_id npc) throws InterruptedException
{
return true;
}
public boolean npe_rakqua_capture_condition_isTaskActiveQuest(obj_id player, obj_id npc) throws InterruptedException
{
return groundquests.isTaskActive(player, "npe_officer_try", "freeNeina");
}
public boolean npe_rakqua_capture_condition_isHuntActive(obj_id player, obj_id npc) throws InterruptedException
{
return groundquests.isTaskActive(player, "npe_officer_try", "hunt");
}
public boolean npe_rakqua_capture_condition_isReturnActive(obj_id player, obj_id npc) throws InterruptedException
{
return groundquests.isTaskActive(player, "npe_officer_try", "returnRak");
}
public boolean npe_rakqua_capture_condition_haveFiles(obj_id player, obj_id npc) throws InterruptedException
{
return groundquests.isTaskActive(player, "npe_officer_try_2", "findRak");
}
public void npe_rakqua_capture_action_giveHuntSignal(obj_id player, obj_id npc) throws InterruptedException
{
groundquests.sendSignal(player, "freeNeina");
}
public void npe_rakqua_capture_action_talkedRak(obj_id player, obj_id npc) throws InterruptedException
{
groundquests.sendSignal(player, "killComplete");
}
public void npe_rakqua_capture_action_gaveFiles(obj_id player, obj_id npc) throws InterruptedException
{
groundquests.sendSignal(player, "giveFiles");
}
public int npe_rakqua_capture_handleBranch1(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_27"))
{
if (npe_rakqua_capture_condition__defaultCondition(player, npc))
{
doAnimationAction(npc, "point_accusingly");
string_id message = new string_id(c_stringFile, "s_28");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (npe_rakqua_capture_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse0 = true;
}
if (hasResponse)
{
int responseIndex = 0;
string_id responses[] = new string_id[numberOfResponses];
if (hasResponse0)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_29");
}
utils.setScriptVar(player, "conversation.npe_rakqua_capture.branchId", 2);
npcSpeak(player, message);
npcSetConversationResponses(player, responses);
}
else
{
utils.removeScriptVar(player, "conversation.npe_rakqua_capture.branchId");
npcEndConversationWithMessage(player, message);
}
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int npe_rakqua_capture_handleBranch2(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_29"))
{
doAnimationAction(player, "shake_head_no");
if (npe_rakqua_capture_condition__defaultCondition(player, npc))
{
doAnimationAction(npc, "pound_fist_palm");
string_id message = new string_id(c_stringFile, "s_30");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (npe_rakqua_capture_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse0 = true;
}
if (hasResponse)
{
int responseIndex = 0;
string_id responses[] = new string_id[numberOfResponses];
if (hasResponse0)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_31");
}
utils.setScriptVar(player, "conversation.npe_rakqua_capture.branchId", 3);
npcSpeak(player, message);
npcSetConversationResponses(player, responses);
}
else
{
utils.removeScriptVar(player, "conversation.npe_rakqua_capture.branchId");
npcEndConversationWithMessage(player, message);
}
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int npe_rakqua_capture_handleBranch3(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_31"))
{
if (npe_rakqua_capture_condition__defaultCondition(player, npc))
{
doAnimationAction(npc, "rub_chin_thoughtful");
string_id message = new string_id(c_stringFile, "s_32");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (npe_rakqua_capture_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse0 = true;
}
if (hasResponse)
{
int responseIndex = 0;
string_id responses[] = new string_id[numberOfResponses];
if (hasResponse0)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_33");
}
utils.setScriptVar(player, "conversation.npe_rakqua_capture.branchId", 4);
npcSpeak(player, message);
npcSetConversationResponses(player, responses);
}
else
{
utils.removeScriptVar(player, "conversation.npe_rakqua_capture.branchId");
npcEndConversationWithMessage(player, message);
}
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int npe_rakqua_capture_handleBranch4(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_33"))
{
if (npe_rakqua_capture_condition__defaultCondition(player, npc))
{
string_id message = new string_id(c_stringFile, "s_39");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (npe_rakqua_capture_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse0 = true;
}
if (hasResponse)
{
int responseIndex = 0;
string_id responses[] = new string_id[numberOfResponses];
if (hasResponse0)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_40");
}
utils.setScriptVar(player, "conversation.npe_rakqua_capture.branchId", 5);
npcSpeak(player, message);
npcSetConversationResponses(player, responses);
}
else
{
utils.removeScriptVar(player, "conversation.npe_rakqua_capture.branchId");
npcEndConversationWithMessage(player, message);
}
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int npe_rakqua_capture_handleBranch5(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_40"))
{
if (npe_rakqua_capture_condition__defaultCondition(player, npc))
{
doAnimationAction(player, "bow");
npe_rakqua_capture_action_gaveFiles(player, npc);
string_id message = new string_id(c_stringFile, "s_41");
utils.removeScriptVar(player, "conversation.npe_rakqua_capture.branchId");
npcEndConversationWithMessage(player, message);
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int npe_rakqua_capture_handleBranch7(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_37"))
{
doAnimationAction(player, "pose_proudly");
if (npe_rakqua_capture_condition__defaultCondition(player, npc))
{
doAnimationAction(npc, "nod");
npe_rakqua_capture_action_talkedRak(player, npc);
string_id message = new string_id(c_stringFile, "s_38");
utils.removeScriptVar(player, "conversation.npe_rakqua_capture.branchId");
npcEndConversationWithMessage(player, message);
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int npe_rakqua_capture_handleBranch10(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_21"))
{
if (npe_rakqua_capture_condition__defaultCondition(player, npc))
{
doAnimationAction(npc, "shrug_shoulders");
string_id message = new string_id(c_stringFile, "s_23");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (npe_rakqua_capture_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse0 = true;
}
if (hasResponse)
{
int responseIndex = 0;
string_id responses[] = new string_id[numberOfResponses];
if (hasResponse0)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_25");
}
utils.setScriptVar(player, "conversation.npe_rakqua_capture.branchId", 11);
npcSpeak(player, message);
npcSetConversationResponses(player, responses);
}
else
{
utils.removeScriptVar(player, "conversation.npe_rakqua_capture.branchId");
npcEndConversationWithMessage(player, message);
}
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int npe_rakqua_capture_handleBranch11(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_25"))
{
doAnimationAction(player, "shake_head_no");
if (npe_rakqua_capture_condition__defaultCondition(player, npc))
{
doAnimationAction(npc, "point_accusingly");
string_id message = new string_id(c_stringFile, "s_42");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (npe_rakqua_capture_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse0 = true;
}
if (hasResponse)
{
int responseIndex = 0;
string_id responses[] = new string_id[numberOfResponses];
if (hasResponse0)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_44");
}
utils.setScriptVar(player, "conversation.npe_rakqua_capture.branchId", 12);
npcSpeak(player, message);
npcSetConversationResponses(player, responses);
}
else
{
utils.removeScriptVar(player, "conversation.npe_rakqua_capture.branchId");
npcEndConversationWithMessage(player, message);
}
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int npe_rakqua_capture_handleBranch12(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_44"))
{
if (npe_rakqua_capture_condition__defaultCondition(player, npc))
{
doAnimationAction(npc, "rub_chin_thoughtful");
string_id message = new string_id(c_stringFile, "s_46");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (npe_rakqua_capture_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse0 = true;
}
if (hasResponse)
{
int responseIndex = 0;
string_id responses[] = new string_id[numberOfResponses];
if (hasResponse0)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_48");
}
utils.setScriptVar(player, "conversation.npe_rakqua_capture.branchId", 13);
npcSpeak(player, message);
npcSetConversationResponses(player, responses);
}
else
{
utils.removeScriptVar(player, "conversation.npe_rakqua_capture.branchId");
npcEndConversationWithMessage(player, message);
}
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int npe_rakqua_capture_handleBranch13(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_48"))
{
doAnimationAction(player, "pound_fist_palm");
if (npe_rakqua_capture_condition__defaultCondition(player, npc))
{
doAnimationAction(npc, "laugh");
npe_rakqua_capture_action_giveHuntSignal(player, npc);
string_id message = new string_id(c_stringFile, "s_50");
utils.removeScriptVar(player, "conversation.npe_rakqua_capture.branchId");
npcEndConversationWithMessage(player, message);
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int OnInitialize(obj_id self) throws InterruptedException
{
if ((!isMob(self)) || (isPlayer(self)))
{
detachScript(self, "conversation.npe_rakqua_capture");
}
setCondition(self, CONDITION_CONVERSABLE);
setName(self, "Rak'qua Fervent");
return SCRIPT_CONTINUE;
}
public int OnAttach(obj_id self) throws InterruptedException
{
setCondition(self, CONDITION_CONVERSABLE);
setName(self, "Rak'qua Fervent");
return SCRIPT_CONTINUE;
}
public int OnObjectMenuRequest(obj_id self, obj_id player, menu_info menuInfo) throws InterruptedException
{
int menu = menuInfo.addRootMenu(menu_info_types.CONVERSE_START, null);
menu_info_data menuInfoData = menuInfo.getMenuItemById(menu);
menuInfoData.setServerNotify(false);
setCondition(self, CONDITION_CONVERSABLE);
return SCRIPT_CONTINUE;
}
public int OnIncapacitated(obj_id self, obj_id killer) throws InterruptedException
{
clearCondition(self, CONDITION_CONVERSABLE);
detachScript(self, "conversation.npe_rakqua_capture");
return SCRIPT_CONTINUE;
}
public boolean npcStartConversation(obj_id player, obj_id npc, String convoName, string_id greetingId, prose_package greetingProse, string_id[] responses) throws InterruptedException
{
Object[] objects = new Object[responses.length];
System.arraycopy(responses, 0, objects, 0, responses.length);
return npcStartConversation(player, npc, convoName, greetingId, greetingProse, objects);
}
public int OnStartNpcConversation(obj_id self, obj_id player) throws InterruptedException
{
obj_id npc = self;
if (ai_lib.isInCombat(npc) || ai_lib.isInCombat(player))
{
return SCRIPT_OVERRIDE;
}
if (npe_rakqua_capture_condition_haveFiles(player, npc))
{
string_id message = new string_id(c_stringFile, "s_26");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (npe_rakqua_capture_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse0 = true;
}
if (hasResponse)
{
int responseIndex = 0;
string_id responses[] = new string_id[numberOfResponses];
if (hasResponse0)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_27");
}
utils.setScriptVar(player, "conversation.npe_rakqua_capture.branchId", 1);
npcStartConversation(player, npc, "npe_rakqua_capture", message, responses);
}
else
{
chat.chat(npc, player, message);
}
return SCRIPT_CONTINUE;
}
if (npe_rakqua_capture_condition_isReturnActive(player, npc))
{
doAnimationAction(npc, "slump_head");
string_id message = new string_id(c_stringFile, "s_36");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (npe_rakqua_capture_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse0 = true;
}
if (hasResponse)
{
int responseIndex = 0;
string_id responses[] = new string_id[numberOfResponses];
if (hasResponse0)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_37");
}
utils.setScriptVar(player, "conversation.npe_rakqua_capture.branchId", 7);
npcStartConversation(player, npc, "npe_rakqua_capture", message, responses);
}
else
{
chat.chat(npc, player, message);
}
return SCRIPT_CONTINUE;
}
if (npe_rakqua_capture_condition_isHuntActive(player, npc))
{
doAnimationAction(npc, "shake_head_no");
string_id message = new string_id(c_stringFile, "s_35");
chat.chat(npc, player, message);
return SCRIPT_CONTINUE;
}
if (npe_rakqua_capture_condition_isTaskActiveQuest(player, npc))
{
doAnimationAction(npc, "stop");
string_id message = new string_id(c_stringFile, "s_19");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (npe_rakqua_capture_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse0 = true;
}
if (hasResponse)
{
int responseIndex = 0;
string_id responses[] = new string_id[numberOfResponses];
if (hasResponse0)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_21");
}
utils.setScriptVar(player, "conversation.npe_rakqua_capture.branchId", 10);
npcStartConversation(player, npc, "npe_rakqua_capture", message, responses);
}
else
{
chat.chat(npc, player, message);
}
return SCRIPT_CONTINUE;
}
if (npe_rakqua_capture_condition__defaultCondition(player, npc))
{
string_id message = new string_id(c_stringFile, "s_52");
chat.chat(npc, player, message);
return SCRIPT_CONTINUE;
}
chat.chat(npc, "Error: All conditions for OnStartNpcConversation were false.");
return SCRIPT_CONTINUE;
}
public int OnNpcConversationResponse(obj_id self, String conversationId, obj_id player, string_id response) throws InterruptedException
{
if (!conversationId.equals("npe_rakqua_capture"))
{
return SCRIPT_CONTINUE;
}
obj_id npc = self;
int branchId = utils.getIntScriptVar(player, "conversation.npe_rakqua_capture.branchId");
if (branchId == 1 && npe_rakqua_capture_handleBranch1(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
if (branchId == 2 && npe_rakqua_capture_handleBranch2(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
if (branchId == 3 && npe_rakqua_capture_handleBranch3(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
if (branchId == 4 && npe_rakqua_capture_handleBranch4(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
if (branchId == 5 && npe_rakqua_capture_handleBranch5(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
if (branchId == 7 && npe_rakqua_capture_handleBranch7(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
if (branchId == 10 && npe_rakqua_capture_handleBranch10(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
if (branchId == 11 && npe_rakqua_capture_handleBranch11(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
if (branchId == 12 && npe_rakqua_capture_handleBranch12(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
if (branchId == 13 && npe_rakqua_capture_handleBranch13(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
chat.chat(npc, "Error: Fell through all branches and responses for OnNpcConversationResponse.");
utils.removeScriptVar(player, "conversation.npe_rakqua_capture.branchId");
return SCRIPT_CONTINUE;
}
}