Files
dsrc/sku.0/sys.server/compiled/game/script/conversation/newbie_scout_a.java
T
2018-06-07 00:32:29 +01:00

1516 lines
62 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 newbie_scout_a extends script.base_script
{
public newbie_scout_a()
{
}
public static String c_stringFile = "conversation/newbie_scout_a";
public boolean newbie_scout_a_condition__defaultCondition(obj_id player, obj_id npc) throws InterruptedException
{
return true;
}
public boolean newbie_scout_a_condition_completedFirstTask(obj_id player, obj_id npc) throws InterruptedException
{
if (groundquests.isTaskActive(player, "quest/newbie_scout", "newbie_scout_e3"))
{
return true;
}
return false;
}
public boolean newbie_scout_a_condition_completedSecondTask(obj_id player, obj_id npc) throws InterruptedException
{
if (groundquests.hasCompletedTask(player, "quest/newbie_scout", "newbie_scout_task_filet_kreetles"))
{
return true;
}
return false;
}
public boolean newbie_scout_a_condition_completedThirdTask(obj_id player, obj_id npc) throws InterruptedException
{
if (groundquests.hasCompletedTask(player, "quest/newbie_scout", "newbie_scout_make_traps"))
{
return true;
}
return false;
}
public boolean newbie_scout_a_condition_onFirstTask(obj_id player, obj_id npc) throws InterruptedException
{
if (groundquests.isTaskActive(player, "quest/newbie_scout", "newbie_scout_task_skin_womprats"))
{
return true;
}
return false;
}
public boolean newbie_scout_a_condition_onSecondTask(obj_id player, obj_id npc) throws InterruptedException
{
if (groundquests.isTaskActive(player, "quest/newbie_scout", "newbie_scout_task_filet_kreetles"))
{
return true;
}
return false;
}
public boolean newbie_scout_a_condition_onThirdTask(obj_id player, obj_id npc) throws InterruptedException
{
if (groundquests.isTaskActive(player, "quest/newbie_scout", "newbie_scout_make_traps"))
{
return true;
}
return false;
}
public boolean newbie_scout_a_condition_completedFourthTask(obj_id player, obj_id npc) throws InterruptedException
{
if (groundquests.hasCompletedTask(player, "quest/newbie_scout", "newbie_scout_task_trap_rills"))
{
return true;
}
return false;
}
public boolean newbie_scout_a_condition_onFourthTask(obj_id player, obj_id npc) throws InterruptedException
{
if (groundquests.isTaskActive(player, "quest/newbie_scout", "newbie_scout_task_trap_rills"))
{
return true;
}
return false;
}
public boolean newbie_scout_a_condition_completedFifthTask(obj_id player, obj_id npc) throws InterruptedException
{
if (groundquests.hasCompletedTask(player, "quest/newbie_scout", "newbie_scout_make_camp"))
{
return true;
}
return false;
}
public boolean newbie_scout_a_condition_onFifthTask(obj_id player, obj_id npc) throws InterruptedException
{
if (groundquests.isTaskActive(player, "quest/newbie_scout", "newbie_scout_make_camp"))
{
return true;
}
return false;
}
public boolean newbie_scout_a_condition_mayorSent(obj_id player, obj_id npc) throws InterruptedException
{
int questId1 = questGetQuestId("quest/c_scout_trainer");
boolean OnTask = questIsQuestComplete(questId1, player);
return OnTask;
}
public boolean newbie_scout_a_condition_readyForBugs(obj_id player, obj_id npc) throws InterruptedException
{
int questId1 = questGetQuestId("quest/newbie_scout");
boolean OnTask = questIsQuestComplete(questId1, player);
return OnTask;
}
public void newbie_scout_a_action_startScoutQuest(obj_id player, obj_id npc) throws InterruptedException
{
groundquests.grantQuest(player, "quest/newbie_scout");
}
public void newbie_scout_a_action_grantKreetles(obj_id player, obj_id npc) throws InterruptedException
{
groundquests.grantQuest(player, "quest/newbie_scout_pt2");
}
public void newbie_scout_a_action_sendTrapSignal(obj_id player, obj_id npc) throws InterruptedException
{
groundquests.sendSignal(player, "newbie_scout_craft_traps");
}
public void newbie_scout_a_action_sendRillSignal(obj_id player, obj_id npc) throws InterruptedException
{
groundquests.sendSignal(player, "newbie_scout_trap_rills");
}
public void newbie_scout_a_action_sendMakeCampSignal(obj_id player, obj_id npc) throws InterruptedException
{
groundquests.sendSignal(player, "newbie_scout_make_camp");
}
public void newbie_scout_a_action_finishScoutQuest(obj_id player, obj_id npc) throws InterruptedException
{
groundquests.sendSignal(player, "newbie_scout_launch_e4");
}
public void newbie_scout_a_action_signalRatReward(obj_id player, obj_id npc) throws InterruptedException
{
groundquests.sendSignal(player, "newbie_scout_launch_e4");
}
public int newbie_scout_a_handleBranch1(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_79"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
newbie_scout_a_action_grantKreetles(player, npc);
string_id message = new string_id(c_stringFile, "s_122");
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int newbie_scout_a_handleBranch3(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_78"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
newbie_scout_a_action_sendRillSignal(player, npc);
string_id message = new string_id(c_stringFile, "s_75");
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int newbie_scout_a_handleBranch4(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_76"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
newbie_scout_a_action_sendRillSignal(player, npc);
string_id message = new string_id(c_stringFile, "s_75");
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int newbie_scout_a_handleBranch5(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_74"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
newbie_scout_a_action_sendRillSignal(player, npc);
string_id message = new string_id(c_stringFile, "s_75");
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int newbie_scout_a_handleBranch7(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_722"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
string_id message = new string_id(c_stringFile, "s_724");
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
return SCRIPT_CONTINUE;
}
}
if (response.equals("s_80"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
string_id message = new string_id(c_stringFile, "s_81");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (newbie_scout_a_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_82");
}
utils.setScriptVar(player, "conversation.newbie_scout_a.branchId", 9);
npcSpeak(player, message);
npcSetConversationResponses(player, responses);
}
else
{
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
}
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int newbie_scout_a_handleBranch9(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_82"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
string_id message = new string_id(c_stringFile, "s_83");
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int newbie_scout_a_handleBranch11(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_112"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
newbie_scout_a_action_sendRillSignal(player, npc);
string_id message = new string_id(c_stringFile, "s_113");
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
return SCRIPT_CONTINUE;
}
}
if (response.equals("s_114"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
string_id message = new string_id(c_stringFile, "s_115");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse0 = true;
}
boolean hasResponse1 = false;
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse1 = true;
}
boolean hasResponse2 = false;
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse2 = true;
}
if (hasResponse)
{
int responseIndex = 0;
string_id responses[] = new string_id[numberOfResponses];
if (hasResponse0)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_116");
}
if (hasResponse1)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_117");
}
if (hasResponse2)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_121");
}
utils.setScriptVar(player, "conversation.newbie_scout_a.branchId", 13);
npcSpeak(player, message);
npcSetConversationResponses(player, responses);
}
else
{
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
}
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int newbie_scout_a_handleBranch13(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_116"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
newbie_scout_a_action_sendRillSignal(player, npc);
string_id message = new string_id(c_stringFile, "s_113");
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
return SCRIPT_CONTINUE;
}
}
if (response.equals("s_117"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
string_id message = new string_id(c_stringFile, "s_118");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse0 = true;
}
boolean hasResponse1 = false;
if (newbie_scout_a_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_119");
}
if (hasResponse1)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_120");
}
utils.setScriptVar(player, "conversation.newbie_scout_a.branchId", 14);
npcSpeak(player, message);
npcSetConversationResponses(player, responses);
}
else
{
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
}
return SCRIPT_CONTINUE;
}
}
if (response.equals("s_121"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
doAnimationAction(npc, "shake_head_disgust");
string_id message = new string_id(c_stringFile, "s_155");
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int newbie_scout_a_handleBranch14(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_119"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
newbie_scout_a_action_sendRillSignal(player, npc);
string_id message = new string_id(c_stringFile, "s_113");
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
return SCRIPT_CONTINUE;
}
}
if (response.equals("s_120"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
doAnimationAction(npc, "shake_head_disgust");
string_id message = new string_id(c_stringFile, "s_155");
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int newbie_scout_a_handleBranch15(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_312"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
newbie_scout_a_action_sendTrapSignal(player, npc);
string_id message = new string_id(c_stringFile, "s_104");
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
return SCRIPT_CONTINUE;
}
}
if (response.equals("s_103"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
string_id message = new string_id(c_stringFile, "s_106");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse0 = true;
}
boolean hasResponse1 = false;
if (newbie_scout_a_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_107");
}
if (hasResponse1)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_108");
}
utils.setScriptVar(player, "conversation.newbie_scout_a.branchId", 17);
npcSpeak(player, message);
npcSetConversationResponses(player, responses);
}
else
{
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
}
return SCRIPT_CONTINUE;
}
}
if (response.equals("s_105"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
doAnimationAction(npc, "shake_head_disgust");
string_id message = new string_id(c_stringFile, "s_155");
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int newbie_scout_a_handleBranch17(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_107"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
newbie_scout_a_action_startScoutQuest(player, npc);
string_id message = new string_id(c_stringFile, "s_141");
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
return SCRIPT_CONTINUE;
}
}
if (response.equals("s_108"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
string_id message = new string_id(c_stringFile, "s_109");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse0 = true;
}
boolean hasResponse1 = false;
if (newbie_scout_a_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_110");
}
if (hasResponse1)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_111");
}
utils.setScriptVar(player, "conversation.newbie_scout_a.branchId", 18);
npcSpeak(player, message);
npcSetConversationResponses(player, responses);
}
else
{
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
}
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int newbie_scout_a_handleBranch18(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_110"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
newbie_scout_a_action_sendTrapSignal(player, npc);
string_id message = new string_id(c_stringFile, "s_104");
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
return SCRIPT_CONTINUE;
}
}
if (response.equals("s_111"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
doAnimationAction(npc, "shake_head_disgust");
string_id message = new string_id(c_stringFile, "s_155");
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int newbie_scout_a_handleBranch19(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_698"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
newbie_scout_a_action_grantKreetles(player, npc);
string_id message = new string_id(c_stringFile, "s_700");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (newbie_scout_a_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_701");
}
utils.setScriptVar(player, "conversation.newbie_scout_a.branchId", 20);
npcSpeak(player, message);
npcSetConversationResponses(player, responses);
}
else
{
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
}
return SCRIPT_CONTINUE;
}
}
if (response.equals("s_97"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
string_id message = new string_id(c_stringFile, "s_98");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (newbie_scout_a_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_99");
}
utils.setScriptVar(player, "conversation.newbie_scout_a.branchId", 22);
npcSpeak(player, message);
npcSetConversationResponses(player, responses);
}
else
{
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
}
return SCRIPT_CONTINUE;
}
}
if (response.equals("s_699"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
doAnimationAction(npc, "shake_head_disgust");
string_id message = new string_id(c_stringFile, "s_155");
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int newbie_scout_a_handleBranch20(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_701"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
string_id message = new string_id(c_stringFile, "s_704");
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int newbie_scout_a_handleBranch22(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_99"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
doAnimationAction(npc, "shake_head_disgust");
string_id message = new string_id(c_stringFile, "s_100");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse0 = true;
}
boolean hasResponse1 = false;
if (newbie_scout_a_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_101");
}
if (hasResponse1)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_102");
}
utils.setScriptVar(player, "conversation.newbie_scout_a.branchId", 23);
npcSpeak(player, message);
npcSetConversationResponses(player, responses);
}
else
{
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
}
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int newbie_scout_a_handleBranch23(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_101"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
newbie_scout_a_action_grantKreetles(player, npc);
string_id message = new string_id(c_stringFile, "s_700");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (newbie_scout_a_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_701");
}
utils.setScriptVar(player, "conversation.newbie_scout_a.branchId", 20);
npcSpeak(player, message);
npcSetConversationResponses(player, responses);
}
else
{
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
}
return SCRIPT_CONTINUE;
}
}
if (response.equals("s_102"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
doAnimationAction(npc, "shake_head_disgust");
string_id message = new string_id(c_stringFile, "s_155");
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int newbie_scout_a_handleBranch25(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_135"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
string_id message = new string_id(c_stringFile, "s_137");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse0 = true;
}
boolean hasResponse1 = false;
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse1 = true;
}
boolean hasResponse2 = false;
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse2 = true;
}
if (hasResponse)
{
int responseIndex = 0;
string_id responses[] = new string_id[numberOfResponses];
if (hasResponse0)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_139");
}
if (hasResponse1)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_143");
}
if (hasResponse2)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_157");
}
utils.setScriptVar(player, "conversation.newbie_scout_a.branchId", 26);
npcSpeak(player, message);
npcSetConversationResponses(player, responses);
}
else
{
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
}
return SCRIPT_CONTINUE;
}
}
if (response.equals("s_349"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
string_id message = new string_id(c_stringFile, "s_134");
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int newbie_scout_a_handleBranch26(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_139"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
newbie_scout_a_action_startScoutQuest(player, npc);
string_id message = new string_id(c_stringFile, "s_141");
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
return SCRIPT_CONTINUE;
}
}
if (response.equals("s_143"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
string_id message = new string_id(c_stringFile, "s_145");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (newbie_scout_a_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_147");
}
utils.setScriptVar(player, "conversation.newbie_scout_a.branchId", 28);
npcSpeak(player, message);
npcSetConversationResponses(player, responses);
}
else
{
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
}
return SCRIPT_CONTINUE;
}
}
if (response.equals("s_157"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
doAnimationAction(npc, "shake_head_disgust");
string_id message = new string_id(c_stringFile, "s_155");
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int newbie_scout_a_handleBranch28(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_147"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
string_id message = new string_id(c_stringFile, "s_149");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse0 = true;
}
boolean hasResponse1 = false;
if (newbie_scout_a_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_151");
}
if (hasResponse1)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_153");
}
utils.setScriptVar(player, "conversation.newbie_scout_a.branchId", 29);
npcSpeak(player, message);
npcSetConversationResponses(player, responses);
}
else
{
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
}
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int newbie_scout_a_handleBranch29(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_151"))
{
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
newbie_scout_a_action_startScoutQuest(player, npc);
string_id message = new string_id(c_stringFile, "s_141");
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
return SCRIPT_CONTINUE;
}
}
if (response.equals("s_153"))
{
doAnimationAction(player, "dismiss");
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
doAnimationAction(npc, "shake_head_disgust");
string_id message = new string_id(c_stringFile, "s_155");
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
chat.chat(npc, player, message);
npcEndConversation(player);
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int OnInitialize(obj_id self) throws InterruptedException
{
if ((!isMob(self)) || (isPlayer(self)))
{
detachScript(self, "conversation.newbie_scout_a");
}
setCondition(self, CONDITION_CONVERSABLE);
setInvulnerable(self, true);
setCondition(self, CONDITION_INTERESTING);
ai_lib.setDefaultCalmBehavior(self, ai_lib.BEHAVIOR_SENTINEL);
return SCRIPT_CONTINUE;
}
public int OnAttach(obj_id self) throws InterruptedException
{
setCondition(self, CONDITION_CONVERSABLE);
setInvulnerable(self, true);
setCondition(self, CONDITION_INTERESTING);
ai_lib.setDefaultCalmBehavior(self, ai_lib.BEHAVIOR_SENTINEL);
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.newbie_scout_a");
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 (newbie_scout_a_condition_onFirstTask(player, npc))
{
string_id message = new string_id(c_stringFile, "s_696");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (newbie_scout_a_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_79");
}
utils.setScriptVar(player, "conversation.newbie_scout_a.branchId", 1);
npcStartConversation(player, npc, "newbie_scout_a", message, responses);
}
else
{
chat.chat(npc, player, message);
}
return SCRIPT_CONTINUE;
}
if (newbie_scout_a_condition_onSecondTask(player, npc))
{
string_id message = new string_id(c_stringFile, "s_708");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (newbie_scout_a_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_78");
}
utils.setScriptVar(player, "conversation.newbie_scout_a.branchId", 3);
npcStartConversation(player, npc, "newbie_scout_a", message, responses);
}
else
{
chat.chat(npc, player, message);
}
return SCRIPT_CONTINUE;
}
if (newbie_scout_a_condition_onThirdTask(player, npc))
{
string_id message = new string_id(c_stringFile, "s_710");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (newbie_scout_a_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_76");
}
utils.setScriptVar(player, "conversation.newbie_scout_a.branchId", 4);
npcStartConversation(player, npc, "newbie_scout_a", message, responses);
}
else
{
chat.chat(npc, player, message);
}
return SCRIPT_CONTINUE;
}
if (newbie_scout_a_condition_onFourthTask(player, npc))
{
string_id message = new string_id(c_stringFile, "s_712");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (newbie_scout_a_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_74");
}
utils.setScriptVar(player, "conversation.newbie_scout_a.branchId", 5);
npcStartConversation(player, npc, "newbie_scout_a", message, responses);
}
else
{
chat.chat(npc, player, message);
}
return SCRIPT_CONTINUE;
}
if (newbie_scout_a_condition_completedFourthTask(player, npc))
{
string_id message = new string_id(c_stringFile, "s_713");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse0 = true;
}
boolean hasResponse1 = false;
if (newbie_scout_a_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_722");
}
if (hasResponse1)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_80");
}
utils.setScriptVar(player, "conversation.newbie_scout_a.branchId", 7);
npcStartConversation(player, npc, "newbie_scout_a", message, responses);
}
else
{
chat.chat(npc, player, message);
}
return SCRIPT_CONTINUE;
}
if (newbie_scout_a_condition_completedThirdTask(player, npc))
{
string_id message = new string_id(c_stringFile, "s_711");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse0 = true;
}
boolean hasResponse1 = false;
if (newbie_scout_a_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_112");
}
if (hasResponse1)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_114");
}
utils.setScriptVar(player, "conversation.newbie_scout_a.branchId", 11);
npcStartConversation(player, npc, "newbie_scout_a", message, responses);
}
else
{
chat.chat(npc, player, message);
}
return SCRIPT_CONTINUE;
}
if (newbie_scout_a_condition_completedSecondTask(player, npc))
{
string_id message = new string_id(c_stringFile, "s_709");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse0 = true;
}
boolean hasResponse1 = false;
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse1 = true;
}
boolean hasResponse2 = false;
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse2 = true;
}
if (hasResponse)
{
int responseIndex = 0;
string_id responses[] = new string_id[numberOfResponses];
if (hasResponse0)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_312");
}
if (hasResponse1)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_103");
}
if (hasResponse2)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_105");
}
utils.setScriptVar(player, "conversation.newbie_scout_a.branchId", 15);
npcStartConversation(player, npc, "newbie_scout_a", message, responses);
}
else
{
chat.chat(npc, player, message);
}
return SCRIPT_CONTINUE;
}
if (newbie_scout_a_condition_readyForBugs(player, npc))
{
doAnimationAction(npc, "greet");
string_id message = new string_id(c_stringFile, "s_697");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse0 = true;
}
boolean hasResponse1 = false;
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse1 = true;
}
boolean hasResponse2 = false;
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse2 = true;
}
if (hasResponse)
{
int responseIndex = 0;
string_id responses[] = new string_id[numberOfResponses];
if (hasResponse0)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_698");
}
if (hasResponse1)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_97");
}
if (hasResponse2)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_699");
}
utils.setScriptVar(player, "conversation.newbie_scout_a.branchId", 19);
npcStartConversation(player, npc, "newbie_scout_a", message, responses);
}
else
{
chat.chat(npc, player, message);
}
return SCRIPT_CONTINUE;
}
if (newbie_scout_a_condition_completedFirstTask(player, npc))
{
newbie_scout_a_action_signalRatReward(player, npc);
string_id message = new string_id(c_stringFile, "s_68");
chat.chat(npc, player, message);
return SCRIPT_CONTINUE;
}
if (newbie_scout_a_condition__defaultCondition(player, npc))
{
doAnimationAction(npc, "explain");
string_id message = new string_id(c_stringFile, "s_343");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (newbie_scout_a_condition_mayorSent(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse0 = true;
}
boolean hasResponse1 = false;
if (newbie_scout_a_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_135");
}
if (hasResponse1)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_349");
}
utils.setScriptVar(player, "conversation.newbie_scout_a.branchId", 25);
npcStartConversation(player, npc, "newbie_scout_a", message, responses);
}
else
{
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("newbie_scout_a"))
{
return SCRIPT_CONTINUE;
}
obj_id npc = self;
int branchId = utils.getIntScriptVar(player, "conversation.newbie_scout_a.branchId");
if (branchId == 1 && newbie_scout_a_handleBranch1(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
if (branchId == 3 && newbie_scout_a_handleBranch3(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
if (branchId == 4 && newbie_scout_a_handleBranch4(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
if (branchId == 5 && newbie_scout_a_handleBranch5(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
if (branchId == 7 && newbie_scout_a_handleBranch7(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
if (branchId == 9 && newbie_scout_a_handleBranch9(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
if (branchId == 11 && newbie_scout_a_handleBranch11(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
if (branchId == 13 && newbie_scout_a_handleBranch13(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
if (branchId == 14 && newbie_scout_a_handleBranch14(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
if (branchId == 15 && newbie_scout_a_handleBranch15(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
if (branchId == 17 && newbie_scout_a_handleBranch17(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
if (branchId == 18 && newbie_scout_a_handleBranch18(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
if (branchId == 19 && newbie_scout_a_handleBranch19(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
if (branchId == 20 && newbie_scout_a_handleBranch20(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
if (branchId == 22 && newbie_scout_a_handleBranch22(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
if (branchId == 23 && newbie_scout_a_handleBranch23(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
if (branchId == 25 && newbie_scout_a_handleBranch25(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
if (branchId == 26 && newbie_scout_a_handleBranch26(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
if (branchId == 28 && newbie_scout_a_handleBranch28(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
if (branchId == 29 && newbie_scout_a_handleBranch29(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
chat.chat(npc, "Error: Fell through all branches and responses for OnNpcConversationResponse.");
utils.removeScriptVar(player, "conversation.newbie_scout_a.branchId");
return SCRIPT_CONTINUE;
}
}