package script.conversation; import script.library.ai_lib; import script.library.chat; import script.library.groundquests; import script.library.utils; import script.*; public class nym extends script.base_script { public nym() { } public static String c_stringFile = "conversation/nym"; public boolean nym_condition__defaultCondition(obj_id player, obj_id npc) throws InterruptedException { return true; } public boolean nym_condition_hasCompletedFacility(obj_id player, obj_id npc) throws InterruptedException { return groundquests.isQuestActiveOrComplete(player, "u16_nym_themepark_kole_to_nym") && !groundquests.isQuestActiveOrComplete(player, "u16_nym_themepark_nym_arena"); } public boolean nym_condition_hasNotCompletedArena(obj_id player, obj_id npc) throws InterruptedException { return groundquests.isQuestActive(player, "u16_nym_themepark_nym_arena"); } public boolean nym_condition_hasCompletedArenaTask(obj_id player, obj_id npc) throws InterruptedException { return groundquests.isTaskActive(player, "u16_nym_themepark_nym_arena", "hasCompletedArenaForNym"); } public boolean nym_condition_isReadyForQuestAfterArena(obj_id player, obj_id npc) throws InterruptedException { return groundquests.hasCompletedQuest(player, "u16_nym_themepark_nym_arena"); } public boolean nym_condition_hasCompletedShuttleTask(obj_id player, obj_id npc) throws InterruptedException { return groundquests.isTaskActive(player, "u16_nym_themepark_shuttle_ambush", "hasCompletedShuttleForNym"); } public boolean nym_condition_isReadyForFinale(obj_id player, obj_id npc) throws InterruptedException { return groundquests.hasCompletedQuest(player, "u16_nym_themepark_negotiate_peace"); } public boolean nym_condition_hasFinishedTownsPeople(obj_id player, obj_id npc) throws InterruptedException { return groundquests.isTaskActive(player, "u16_nym_return_townsperson", "nymTownpersonDone"); } public boolean nym_condition_isReadyPeaceMission(obj_id player, obj_id npc) throws InterruptedException { return groundquests.hasCompletedQuest(player, "u16_nym_return_townsperson") && !groundquests.isQuestActiveOrComplete(player, "u16_nym_themepark_negotiate_peace"); } public boolean nym_condition_hasCompletedPeaceMission(obj_id player, obj_id npc) throws InterruptedException { return groundquests.isTaskActive(player, "u16_nym_themepark_negotiate_peace", "returnToNymSheeli"); } public boolean nym_condition_isDoneThemePark(obj_id player, obj_id npc) throws InterruptedException { return groundquests.hasCompletedQuest(player, "u16_nym_themepark_shuttle_ambush"); } public boolean nym_condition_hasPeaceMission(obj_id player, obj_id npc) throws InterruptedException { return groundquests.isQuestActive(player, "u16_nym_themepark_negotiate_peace"); } public boolean nym_condition_hasShuttleQuest(obj_id player, obj_id npc) throws InterruptedException { return groundquests.isQuestActive(player, "u16_nym_themepark_shuttle_ambush"); } public void nym_action_grantArenaQuest(obj_id player, obj_id npc) throws InterruptedException { if (!groundquests.isQuestActiveOrComplete(player, "u16_nym_themepark_nym_arena")) { groundquests.grantQuest(player, "u16_nym_themepark_nym_arena"); } } public void nym_action_completeArenaQuest(obj_id player, obj_id npc) throws InterruptedException { if (groundquests.isTaskActive(player, "u16_nym_themepark_nym_arena", "hasCompletedArenaForNym")) { groundquests.sendSignal(player, "nymAwardedArenaCompletion"); } if (!hasCompletedCollectionSlot(player, "bdge_nmys_arena_champion_badge")) { modifyCollectionSlotValue(player, "bdge_nmys_arena_champion_badge", 1); } if (!hasCompletedCollectionSlot(player, "icon_arena_badge_received")) { modifyCollectionSlotValue(player, "icon_arena_badge_received", 1); } } public void nym_action_grantShuttleQuest(obj_id player, obj_id npc) throws InterruptedException { if (!groundquests.isQuestActiveOrComplete(player, "u16_nym_themepark_shuttle_ambush")) { groundquests.grantQuest(player, "u16_nym_themepark_shuttle_ambush"); } } public void nym_action_completeShuttleQuest(obj_id player, obj_id npc) throws InterruptedException { if (groundquests.isTaskActive(player, "u16_nym_themepark_shuttle_ambush", "hasCompletedShuttleForNym")) { groundquests.sendSignal(player, "nymAwardedShuttleCompletion"); } if (!hasCompletedCollectionSlot(player, "bdge_nyms_emissary_badge")) { modifyCollectionSlotValue(player, "bdge_nyms_emissary_badge", 1); } if (!hasCompletedCollectionSlot(player, "icon_emissary_badge_received")) { modifyCollectionSlotValue(player, "icon_emissary_badge_received", 1); } } public void nym_action_hasFoundNym(obj_id player, obj_id npc) throws InterruptedException { groundquests.sendSignal(player, "hasFoundNym"); } public void nym_action_grantTownspersonQuest(obj_id player, obj_id npc) throws InterruptedException { if (!groundquests.isQuestActiveOrComplete(player, "u16_nym_meet_townspeople")) { groundquests.grantQuest(player, "u16_nym_meet_townspeople"); } } public void nym_action_finishTownsPeople(obj_id player, obj_id npc) throws InterruptedException { groundquests.sendSignal(player, "hasCompletedTownPersonQuest"); } public void nym_action_givePeaceMission(obj_id player, obj_id npc) throws InterruptedException { if (!groundquests.isQuestActiveOrComplete(player, "u16_nym_themepark_negotiate_peace")) { groundquests.grantQuest(player, "u16_nym_themepark_negotiate_peace"); } } public void nym_action_finishPeaceMission(obj_id player, obj_id npc) throws InterruptedException { groundquests.sendSignal(player, "hasReturnedToNymSheeli"); } public void nym_action_validateAllNymRewards(obj_id player, obj_id npc) throws InterruptedException { nym_action_completeArenaQuest(player, npc); nym_action_completeShuttleQuest(player, npc); } public int nym_handleBranch2(obj_id player, obj_id npc, string_id response) throws InterruptedException { if (response.equals("s_38")) { if (nym_condition__defaultCondition(player, npc)) { doAnimationAction(player, "salute1"); nym_action_completeShuttleQuest(player, npc); string_id message = new string_id(c_stringFile, "s_39"); utils.removeScriptVar(player, "conversation.nym.branchId"); npcEndConversationWithMessage(player, message); return SCRIPT_CONTINUE; } } return SCRIPT_DEFAULT; } public int nym_handleBranch5(obj_id player, obj_id npc, string_id response) throws InterruptedException { if (response.equals("s_25")) { if (nym_condition__defaultCondition(player, npc)) { string_id message = new string_id(c_stringFile, "s_26"); int numberOfResponses = 0; boolean hasResponse = false; boolean hasResponse0 = false; if (nym_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.nym.branchId", 6); npcSpeak(player, message); npcSetConversationResponses(player, responses); } else { utils.removeScriptVar(player, "conversation.nym.branchId"); npcEndConversationWithMessage(player, message); } return SCRIPT_CONTINUE; } } return SCRIPT_DEFAULT; } public int nym_handleBranch6(obj_id player, obj_id npc, string_id response) throws InterruptedException { if (response.equals("s_27")) { if (nym_condition__defaultCondition(player, npc)) { string_id message = new string_id(c_stringFile, "s_28"); int numberOfResponses = 0; boolean hasResponse = false; boolean hasResponse0 = false; if (nym_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.nym.branchId", 7); npcSpeak(player, message); npcSetConversationResponses(player, responses); } else { utils.removeScriptVar(player, "conversation.nym.branchId"); npcEndConversationWithMessage(player, message); } return SCRIPT_CONTINUE; } } return SCRIPT_DEFAULT; } public int nym_handleBranch7(obj_id player, obj_id npc, string_id response) throws InterruptedException { if (response.equals("s_29")) { if (nym_condition__defaultCondition(player, npc)) { nym_action_grantShuttleQuest(player, npc); string_id message = new string_id(c_stringFile, "s_30"); utils.removeScriptVar(player, "conversation.nym.branchId"); prose_package pp = new prose_package(); pp.stringId = message; pp.actor.set(player); pp.target.set(npc); npcEndConversationWithMessage(player, pp); return SCRIPT_CONTINUE; } } return SCRIPT_DEFAULT; } public int nym_handleBranch9(obj_id player, obj_id npc, string_id response) throws InterruptedException { if (response.equals("s_87")) { if (nym_condition__defaultCondition(player, npc)) { string_id message = new string_id(c_stringFile, "s_88"); int numberOfResponses = 0; boolean hasResponse = false; boolean hasResponse0 = false; if (nym_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_101"); } utils.setScriptVar(player, "conversation.nym.branchId", 10); npcSpeak(player, message); npcSetConversationResponses(player, responses); } else { utils.removeScriptVar(player, "conversation.nym.branchId"); npcEndConversationWithMessage(player, message); } return SCRIPT_CONTINUE; } } return SCRIPT_DEFAULT; } public int nym_handleBranch10(obj_id player, obj_id npc, string_id response) throws InterruptedException { if (response.equals("s_101")) { if (nym_condition__defaultCondition(player, npc)) { nym_action_finishPeaceMission(player, npc); string_id message = new string_id(c_stringFile, "s_102"); utils.removeScriptVar(player, "conversation.nym.branchId"); prose_package pp = new prose_package(); pp.stringId = message; pp.actor.set(player); pp.target.set(npc); npcEndConversationWithMessage(player, pp); return SCRIPT_CONTINUE; } } return SCRIPT_DEFAULT; } public int nym_handleBranch13(obj_id player, obj_id npc, string_id response) throws InterruptedException { if (response.equals("s_89")) { if (nym_condition__defaultCondition(player, npc)) { string_id message = new string_id(c_stringFile, "s_90"); int numberOfResponses = 0; boolean hasResponse = false; boolean hasResponse0 = false; if (nym_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_104"); } utils.setScriptVar(player, "conversation.nym.branchId", 14); npcSpeak(player, message); npcSetConversationResponses(player, responses); } else { utils.removeScriptVar(player, "conversation.nym.branchId"); npcEndConversationWithMessage(player, message); } return SCRIPT_CONTINUE; } } return SCRIPT_DEFAULT; } public int nym_handleBranch14(obj_id player, obj_id npc, string_id response) throws InterruptedException { if (response.equals("s_104")) { if (nym_condition__defaultCondition(player, npc)) { string_id message = new string_id(c_stringFile, "s_105"); int numberOfResponses = 0; boolean hasResponse = false; boolean hasResponse0 = false; if (nym_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_106"); } utils.setScriptVar(player, "conversation.nym.branchId", 15); npcSpeak(player, message); npcSetConversationResponses(player, responses); } else { utils.removeScriptVar(player, "conversation.nym.branchId"); npcEndConversationWithMessage(player, message); } return SCRIPT_CONTINUE; } } return SCRIPT_DEFAULT; } public int nym_handleBranch15(obj_id player, obj_id npc, string_id response) throws InterruptedException { if (response.equals("s_106")) { if (nym_condition__defaultCondition(player, npc)) { string_id message = new string_id(c_stringFile, "s_107"); int numberOfResponses = 0; boolean hasResponse = false; boolean hasResponse0 = false; if (nym_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_108"); } utils.setScriptVar(player, "conversation.nym.branchId", 16); npcSpeak(player, message); npcSetConversationResponses(player, responses); } else { utils.removeScriptVar(player, "conversation.nym.branchId"); npcEndConversationWithMessage(player, message); } return SCRIPT_CONTINUE; } } return SCRIPT_DEFAULT; } public int nym_handleBranch16(obj_id player, obj_id npc, string_id response) throws InterruptedException { if (response.equals("s_108")) { if (nym_condition__defaultCondition(player, npc)) { string_id message = new string_id(c_stringFile, "s_109"); int numberOfResponses = 0; boolean hasResponse = false; boolean hasResponse0 = false; if (nym_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_110"); } utils.setScriptVar(player, "conversation.nym.branchId", 17); prose_package pp = new prose_package(); pp.stringId = message; pp.actor.set(player); pp.target.set(npc); npcSpeak(player, pp); npcSetConversationResponses(player, responses); } else { utils.removeScriptVar(player, "conversation.nym.branchId"); prose_package pp = new prose_package(); pp.stringId = message; pp.actor.set(player); pp.target.set(npc); npcEndConversationWithMessage(player, pp); } return SCRIPT_CONTINUE; } } return SCRIPT_DEFAULT; } public int nym_handleBranch17(obj_id player, obj_id npc, string_id response) throws InterruptedException { if (response.equals("s_110")) { if (nym_condition__defaultCondition(player, npc)) { string_id message = new string_id(c_stringFile, "s_111"); int numberOfResponses = 0; boolean hasResponse = false; boolean hasResponse0 = false; if (nym_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_112"); } utils.setScriptVar(player, "conversation.nym.branchId", 18); npcSpeak(player, message); npcSetConversationResponses(player, responses); } else { utils.removeScriptVar(player, "conversation.nym.branchId"); npcEndConversationWithMessage(player, message); } return SCRIPT_CONTINUE; } } return SCRIPT_DEFAULT; } public int nym_handleBranch18(obj_id player, obj_id npc, string_id response) throws InterruptedException { if (response.equals("s_112")) { if (nym_condition__defaultCondition(player, npc)) { nym_action_givePeaceMission(player, npc); string_id message = new string_id(c_stringFile, "s_113"); utils.removeScriptVar(player, "conversation.nym.branchId"); npcEndConversationWithMessage(player, message); return SCRIPT_CONTINUE; } } return SCRIPT_DEFAULT; } public int nym_handleBranch20(obj_id player, obj_id npc, string_id response) throws InterruptedException { if (response.equals("s_83")) { doAnimationAction(player, "hold_nose"); if (nym_condition__defaultCondition(player, npc)) { nym_action_finishTownsPeople(player, npc); string_id message = new string_id(c_stringFile, "s_84"); utils.removeScriptVar(player, "conversation.nym.branchId"); npcEndConversationWithMessage(player, message); return SCRIPT_CONTINUE; } } return SCRIPT_DEFAULT; } public int nym_handleBranch22(obj_id player, obj_id npc, string_id response) throws InterruptedException { if (response.equals("s_50")) { doAnimationAction(player, "shrug_hands"); if (nym_condition__defaultCondition(player, npc)) { string_id message = new string_id(c_stringFile, "s_52"); int numberOfResponses = 0; boolean hasResponse = false; boolean hasResponse0 = false; if (nym_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_54"); } utils.setScriptVar(player, "conversation.nym.branchId", 23); npcSpeak(player, message); npcSetConversationResponses(player, responses); } else { utils.removeScriptVar(player, "conversation.nym.branchId"); npcEndConversationWithMessage(player, message); } return SCRIPT_CONTINUE; } } if (response.equals("s_56")) { doAnimationAction(player, "flex_biceps"); if (nym_condition__defaultCondition(player, npc)) { string_id message = new string_id(c_stringFile, "s_58"); int numberOfResponses = 0; boolean hasResponse = false; boolean hasResponse0 = false; if (nym_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_60"); } utils.setScriptVar(player, "conversation.nym.branchId", 24); npcSpeak(player, message); npcSetConversationResponses(player, responses); } else { utils.removeScriptVar(player, "conversation.nym.branchId"); npcEndConversationWithMessage(player, message); } return SCRIPT_CONTINUE; } } return SCRIPT_DEFAULT; } public int nym_handleBranch23(obj_id player, obj_id npc, string_id response) throws InterruptedException { if (response.equals("s_54")) { doAnimationAction(player, "fakepunch"); if (nym_condition__defaultCondition(player, npc)) { string_id message = new string_id(c_stringFile, "s_58"); int numberOfResponses = 0; boolean hasResponse = false; boolean hasResponse0 = false; if (nym_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_60"); } utils.setScriptVar(player, "conversation.nym.branchId", 24); npcSpeak(player, message); npcSetConversationResponses(player, responses); } else { utils.removeScriptVar(player, "conversation.nym.branchId"); npcEndConversationWithMessage(player, message); } return SCRIPT_CONTINUE; } } return SCRIPT_DEFAULT; } public int nym_handleBranch24(obj_id player, obj_id npc, string_id response) throws InterruptedException { if (response.equals("s_60")) { doAnimationAction(player, "point_to_self"); if (nym_condition__defaultCondition(player, npc)) { doAnimationAction(player, "nod"); string_id message = new string_id(c_stringFile, "s_65"); int numberOfResponses = 0; boolean hasResponse = false; boolean hasResponse0 = false; if (nym_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_66"); } utils.setScriptVar(player, "conversation.nym.branchId", 25); npcSpeak(player, message); npcSetConversationResponses(player, responses); } else { utils.removeScriptVar(player, "conversation.nym.branchId"); npcEndConversationWithMessage(player, message); } return SCRIPT_CONTINUE; } } return SCRIPT_DEFAULT; } public int nym_handleBranch25(obj_id player, obj_id npc, string_id response) throws InterruptedException { if (response.equals("s_66")) { doAnimationAction(player, "shrug_hands"); if (nym_condition__defaultCondition(player, npc)) { doAnimationAction(player, "nod"); string_id message = new string_id(c_stringFile, "s_67"); int numberOfResponses = 0; boolean hasResponse = false; boolean hasResponse0 = false; if (nym_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_68"); } utils.setScriptVar(player, "conversation.nym.branchId", 26); npcSpeak(player, message); npcSetConversationResponses(player, responses); } else { utils.removeScriptVar(player, "conversation.nym.branchId"); npcEndConversationWithMessage(player, message); } return SCRIPT_CONTINUE; } } return SCRIPT_DEFAULT; } public int nym_handleBranch26(obj_id player, obj_id npc, string_id response) throws InterruptedException { if (response.equals("s_68")) { doAnimationAction(player, "point_to_self"); if (nym_condition__defaultCondition(player, npc)) { nym_action_grantTownspersonQuest(player, npc); string_id message = new string_id(c_stringFile, "s_70"); utils.removeScriptVar(player, "conversation.nym.branchId"); npcEndConversationWithMessage(player, message); return SCRIPT_CONTINUE; } } return SCRIPT_DEFAULT; } public int nym_handleBranch30(obj_id player, obj_id npc, string_id response) throws InterruptedException { if (response.equals("s_78")) { if (nym_condition__defaultCondition(player, npc)) { string_id message = new string_id(c_stringFile, "s_80"); int numberOfResponses = 0; boolean hasResponse = false; boolean hasResponse0 = false; if (nym_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_91"); } utils.setScriptVar(player, "conversation.nym.branchId", 31); npcSpeak(player, message); npcSetConversationResponses(player, responses); } else { utils.removeScriptVar(player, "conversation.nym.branchId"); npcEndConversationWithMessage(player, message); } return SCRIPT_CONTINUE; } } if (response.equals("s_93")) { if (nym_condition__defaultCondition(player, npc)) { string_id message = new string_id(c_stringFile, "s_95"); int numberOfResponses = 0; boolean hasResponse = false; boolean hasResponse0 = false; if (nym_condition__defaultCondition(player, npc)) { ++numberOfResponses; hasResponse = true; hasResponse0 = true; } boolean hasResponse1 = false; if (nym_condition__defaultCondition(player, npc)) { ++numberOfResponses; hasResponse = true; hasResponse1 = true; } if (hasResponse) { int responseIndex = 0; string_id responses[] = new string_id[numberOfResponses]; if (hasResponse0) { responses[responseIndex++] = new string_id(c_stringFile, "s_97"); } if (hasResponse1) { responses[responseIndex++] = new string_id(c_stringFile, "s_122"); } utils.setScriptVar(player, "conversation.nym.branchId", 32); npcSpeak(player, message); npcSetConversationResponses(player, responses); } else { utils.removeScriptVar(player, "conversation.nym.branchId"); npcEndConversationWithMessage(player, message); } return SCRIPT_CONTINUE; } } return SCRIPT_DEFAULT; } public int nym_handleBranch31(obj_id player, obj_id npc, string_id response) throws InterruptedException { if (response.equals("s_91")) { if (nym_condition__defaultCondition(player, npc)) { string_id message = new string_id(c_stringFile, "s_95"); int numberOfResponses = 0; boolean hasResponse = false; boolean hasResponse0 = false; if (nym_condition__defaultCondition(player, npc)) { ++numberOfResponses; hasResponse = true; hasResponse0 = true; } boolean hasResponse1 = false; if (nym_condition__defaultCondition(player, npc)) { ++numberOfResponses; hasResponse = true; hasResponse1 = true; } if (hasResponse) { int responseIndex = 0; string_id responses[] = new string_id[numberOfResponses]; if (hasResponse0) { responses[responseIndex++] = new string_id(c_stringFile, "s_97"); } if (hasResponse1) { responses[responseIndex++] = new string_id(c_stringFile, "s_122"); } utils.setScriptVar(player, "conversation.nym.branchId", 32); npcSpeak(player, message); npcSetConversationResponses(player, responses); } else { utils.removeScriptVar(player, "conversation.nym.branchId"); npcEndConversationWithMessage(player, message); } return SCRIPT_CONTINUE; } } return SCRIPT_DEFAULT; } public int nym_handleBranch32(obj_id player, obj_id npc, string_id response) throws InterruptedException { if (response.equals("s_97")) { if (nym_condition__defaultCondition(player, npc)) { string_id message = new string_id(c_stringFile, "s_99"); int numberOfResponses = 0; boolean hasResponse = false; boolean hasResponse0 = false; if (nym_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_114"); } utils.setScriptVar(player, "conversation.nym.branchId", 33); npcSpeak(player, message); npcSetConversationResponses(player, responses); } else { utils.removeScriptVar(player, "conversation.nym.branchId"); npcEndConversationWithMessage(player, message); } return SCRIPT_CONTINUE; } } if (response.equals("s_122")) { if (nym_condition__defaultCondition(player, npc)) { string_id message = new string_id(c_stringFile, "s_124"); int numberOfResponses = 0; boolean hasResponse = false; boolean hasResponse0 = false; if (nym_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_126"); } utils.setScriptVar(player, "conversation.nym.branchId", 36); npcSpeak(player, message); npcSetConversationResponses(player, responses); } else { utils.removeScriptVar(player, "conversation.nym.branchId"); npcEndConversationWithMessage(player, message); } return SCRIPT_CONTINUE; } } return SCRIPT_DEFAULT; } public int nym_handleBranch33(obj_id player, obj_id npc, string_id response) throws InterruptedException { if (response.equals("s_114")) { if (nym_condition__defaultCondition(player, npc)) { string_id message = new string_id(c_stringFile, "s_116"); int numberOfResponses = 0; boolean hasResponse = false; boolean hasResponse0 = false; if (nym_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_118"); } utils.setScriptVar(player, "conversation.nym.branchId", 34); npcSpeak(player, message); npcSetConversationResponses(player, responses); } else { utils.removeScriptVar(player, "conversation.nym.branchId"); npcEndConversationWithMessage(player, message); } return SCRIPT_CONTINUE; } } return SCRIPT_DEFAULT; } public int nym_handleBranch34(obj_id player, obj_id npc, string_id response) throws InterruptedException { if (response.equals("s_118")) { if (nym_condition__defaultCondition(player, npc)) { nym_action_grantArenaQuest(player, npc); string_id message = new string_id(c_stringFile, "s_120"); utils.removeScriptVar(player, "conversation.nym.branchId"); npcEndConversationWithMessage(player, message); return SCRIPT_CONTINUE; } } return SCRIPT_DEFAULT; } public int nym_handleBranch36(obj_id player, obj_id npc, string_id response) throws InterruptedException { if (response.equals("s_126")) { if (nym_condition__defaultCondition(player, npc)) { string_id message = new string_id(c_stringFile, "s_99"); int numberOfResponses = 0; boolean hasResponse = false; boolean hasResponse0 = false; if (nym_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_114"); } utils.setScriptVar(player, "conversation.nym.branchId", 33); npcSpeak(player, message); npcSetConversationResponses(player, responses); } else { utils.removeScriptVar(player, "conversation.nym.branchId"); npcEndConversationWithMessage(player, message); } return SCRIPT_CONTINUE; } } return SCRIPT_DEFAULT; } public int OnInitialize(obj_id self) throws InterruptedException { if ((!isTangible(self)) || (isPlayer(self))) { detachScript(self, "conversation.nym"); } setCondition(self, CONDITION_CONVERSABLE); return SCRIPT_CONTINUE; } public int OnAttach(obj_id self) throws InterruptedException { setCondition(self, CONDITION_CONVERSABLE); 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.nym"); 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 (nym_condition_isDoneThemePark(player, npc)) { nym_action_validateAllNymRewards(player, npc); string_id message = new string_id(c_stringFile, "s_103"); prose_package pp = new prose_package(); pp.stringId = message; pp.actor.set(player); pp.target.set(npc); chat.chat(npc, player, null, null, pp); return SCRIPT_CONTINUE; } if (nym_condition_hasCompletedShuttleTask(player, npc)) { string_id message = new string_id(c_stringFile, "s_37"); int numberOfResponses = 0; boolean hasResponse = false; boolean hasResponse0 = false; if (nym_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_38"); } utils.setScriptVar(player, "conversation.nym.branchId", 2); prose_package pp = new prose_package(); pp.stringId = message; pp.actor.set(player); pp.target.set(npc); npcStartConversation(player, npc, "nym", null, pp, responses); } else { prose_package pp = new prose_package(); pp.stringId = message; pp.actor.set(player); pp.target.set(npc); chat.chat(npc, player, null, null, pp); } return SCRIPT_CONTINUE; } if (nym_condition_hasShuttleQuest(player, npc)) { string_id message = new string_id(c_stringFile, "s_128"); prose_package pp = new prose_package(); pp.stringId = message; pp.actor.set(player); pp.target.set(npc); chat.chat(npc, player, null, null, pp); return SCRIPT_CONTINUE; } if (nym_condition_isReadyForFinale(player, npc)) { string_id message = new string_id(c_stringFile, "s_22"); int numberOfResponses = 0; boolean hasResponse = false; boolean hasResponse0 = false; if (nym_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.nym.branchId", 5); prose_package pp = new prose_package(); pp.stringId = message; pp.actor.set(player); pp.target.set(npc); npcStartConversation(player, npc, "nym", null, pp, responses); } else { prose_package pp = new prose_package(); pp.stringId = message; pp.actor.set(player); pp.target.set(npc); chat.chat(npc, player, null, null, pp); } return SCRIPT_CONTINUE; } if (nym_condition_hasCompletedPeaceMission(player, npc)) { string_id message = new string_id(c_stringFile, "s_85"); int numberOfResponses = 0; boolean hasResponse = false; boolean hasResponse0 = false; if (nym_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_87"); } utils.setScriptVar(player, "conversation.nym.branchId", 9); npcStartConversation(player, npc, "nym", message, responses); } else { chat.chat(npc, player, message); } return SCRIPT_CONTINUE; } if (nym_condition_hasPeaceMission(player, npc)) { string_id message = new string_id(c_stringFile, "s_127"); prose_package pp = new prose_package(); pp.stringId = message; pp.actor.set(player); pp.target.set(npc); chat.chat(npc, player, null, null, pp); return SCRIPT_CONTINUE; } if (nym_condition_isReadyPeaceMission(player, npc)) { string_id message = new string_id(c_stringFile, "s_86"); int numberOfResponses = 0; boolean hasResponse = false; boolean hasResponse0 = false; if (nym_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_89"); } utils.setScriptVar(player, "conversation.nym.branchId", 13); prose_package pp = new prose_package(); pp.stringId = message; pp.actor.set(player); pp.target.set(npc); npcStartConversation(player, npc, "nym", null, pp, responses); } else { prose_package pp = new prose_package(); pp.stringId = message; pp.actor.set(player); pp.target.set(npc); chat.chat(npc, player, null, null, pp); } return SCRIPT_CONTINUE; } if (nym_condition_hasFinishedTownsPeople(player, npc)) { string_id message = new string_id(c_stringFile, "s_82"); int numberOfResponses = 0; boolean hasResponse = false; boolean hasResponse0 = false; if (nym_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_83"); } utils.setScriptVar(player, "conversation.nym.branchId", 20); prose_package pp = new prose_package(); pp.stringId = message; pp.actor.set(player); pp.target.set(npc); npcStartConversation(player, npc, "nym", null, pp, responses); } else { prose_package pp = new prose_package(); pp.stringId = message; pp.actor.set(player); pp.target.set(npc); chat.chat(npc, player, null, null, pp); } return SCRIPT_CONTINUE; } if (nym_condition_isReadyForQuestAfterArena(player, npc)) { string_id message = new string_id(c_stringFile, "s_48"); int numberOfResponses = 0; boolean hasResponse = false; boolean hasResponse0 = false; if (nym_condition__defaultCondition(player, npc)) { ++numberOfResponses; hasResponse = true; hasResponse0 = true; } boolean hasResponse1 = false; if (nym_condition__defaultCondition(player, npc)) { ++numberOfResponses; hasResponse = true; hasResponse1 = true; } if (hasResponse) { int responseIndex = 0; string_id responses[] = new string_id[numberOfResponses]; if (hasResponse0) { responses[responseIndex++] = new string_id(c_stringFile, "s_50"); } if (hasResponse1) { responses[responseIndex++] = new string_id(c_stringFile, "s_56"); } utils.setScriptVar(player, "conversation.nym.branchId", 22); npcStartConversation(player, npc, "nym", message, responses); } else { chat.chat(npc, player, message); } return SCRIPT_CONTINUE; } if (nym_condition_hasCompletedArenaTask(player, npc)) { nym_action_completeArenaQuest(player, npc); string_id message = new string_id(c_stringFile, "s_72"); prose_package pp = new prose_package(); pp.stringId = message; pp.actor.set(player); pp.target.set(npc); chat.chat(npc, player, null, null, pp); return SCRIPT_CONTINUE; } if (nym_condition_hasNotCompletedArena(player, npc)) { string_id message = new string_id(c_stringFile, "s_74"); chat.chat(npc, player, message); return SCRIPT_CONTINUE; } if (nym_condition_hasCompletedFacility(player, npc)) { nym_action_hasFoundNym(player, npc); string_id message = new string_id(c_stringFile, "s_76"); int numberOfResponses = 0; boolean hasResponse = false; boolean hasResponse0 = false; if (nym_condition__defaultCondition(player, npc)) { ++numberOfResponses; hasResponse = true; hasResponse0 = true; } boolean hasResponse1 = false; if (nym_condition__defaultCondition(player, npc)) { ++numberOfResponses; hasResponse = true; hasResponse1 = true; } if (hasResponse) { int responseIndex = 0; string_id responses[] = new string_id[numberOfResponses]; if (hasResponse0) { responses[responseIndex++] = new string_id(c_stringFile, "s_78"); } if (hasResponse1) { responses[responseIndex++] = new string_id(c_stringFile, "s_93"); } utils.setScriptVar(player, "conversation.nym.branchId", 30); prose_package pp = new prose_package(); pp.stringId = message; pp.actor.set(player); pp.target.set(npc); npcStartConversation(player, npc, "nym", null, pp, responses); } else { prose_package pp = new prose_package(); pp.stringId = message; pp.actor.set(player); pp.target.set(npc); chat.chat(npc, player, null, null, pp); } return SCRIPT_CONTINUE; } if (nym_condition__defaultCondition(player, npc)) { string_id message = new string_id(c_stringFile, "s_130"); 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("nym")) { return SCRIPT_CONTINUE; } obj_id npc = self; int branchId = utils.getIntScriptVar(player, "conversation.nym.branchId"); if (branchId == 2 && nym_handleBranch2(player, npc, response) == SCRIPT_CONTINUE) { return SCRIPT_CONTINUE; } if (branchId == 5 && nym_handleBranch5(player, npc, response) == SCRIPT_CONTINUE) { return SCRIPT_CONTINUE; } if (branchId == 6 && nym_handleBranch6(player, npc, response) == SCRIPT_CONTINUE) { return SCRIPT_CONTINUE; } if (branchId == 7 && nym_handleBranch7(player, npc, response) == SCRIPT_CONTINUE) { return SCRIPT_CONTINUE; } if (branchId == 9 && nym_handleBranch9(player, npc, response) == SCRIPT_CONTINUE) { return SCRIPT_CONTINUE; } if (branchId == 10 && nym_handleBranch10(player, npc, response) == SCRIPT_CONTINUE) { return SCRIPT_CONTINUE; } if (branchId == 13 && nym_handleBranch13(player, npc, response) == SCRIPT_CONTINUE) { return SCRIPT_CONTINUE; } if (branchId == 14 && nym_handleBranch14(player, npc, response) == SCRIPT_CONTINUE) { return SCRIPT_CONTINUE; } if (branchId == 15 && nym_handleBranch15(player, npc, response) == SCRIPT_CONTINUE) { return SCRIPT_CONTINUE; } if (branchId == 16 && nym_handleBranch16(player, npc, response) == SCRIPT_CONTINUE) { return SCRIPT_CONTINUE; } if (branchId == 17 && nym_handleBranch17(player, npc, response) == SCRIPT_CONTINUE) { return SCRIPT_CONTINUE; } if (branchId == 18 && nym_handleBranch18(player, npc, response) == SCRIPT_CONTINUE) { return SCRIPT_CONTINUE; } if (branchId == 20 && nym_handleBranch20(player, npc, response) == SCRIPT_CONTINUE) { return SCRIPT_CONTINUE; } if (branchId == 22 && nym_handleBranch22(player, npc, response) == SCRIPT_CONTINUE) { return SCRIPT_CONTINUE; } if (branchId == 23 && nym_handleBranch23(player, npc, response) == SCRIPT_CONTINUE) { return SCRIPT_CONTINUE; } if (branchId == 24 && nym_handleBranch24(player, npc, response) == SCRIPT_CONTINUE) { return SCRIPT_CONTINUE; } if (branchId == 25 && nym_handleBranch25(player, npc, response) == SCRIPT_CONTINUE) { return SCRIPT_CONTINUE; } if (branchId == 26 && nym_handleBranch26(player, npc, response) == SCRIPT_CONTINUE) { return SCRIPT_CONTINUE; } if (branchId == 30 && nym_handleBranch30(player, npc, response) == SCRIPT_CONTINUE) { return SCRIPT_CONTINUE; } if (branchId == 31 && nym_handleBranch31(player, npc, response) == SCRIPT_CONTINUE) { return SCRIPT_CONTINUE; } if (branchId == 32 && nym_handleBranch32(player, npc, response) == SCRIPT_CONTINUE) { return SCRIPT_CONTINUE; } if (branchId == 33 && nym_handleBranch33(player, npc, response) == SCRIPT_CONTINUE) { return SCRIPT_CONTINUE; } if (branchId == 34 && nym_handleBranch34(player, npc, response) == SCRIPT_CONTINUE) { return SCRIPT_CONTINUE; } if (branchId == 36 && nym_handleBranch36(player, npc, response) == SCRIPT_CONTINUE) { return SCRIPT_CONTINUE; } chat.chat(npc, "Error: Fell through all branches and responses for OnNpcConversationResponse."); utils.removeScriptVar(player, "conversation.nym.branchId"); return SCRIPT_CONTINUE; } }