Files
TekaohandGitHub 5c2e112349 Java 11.0.2 migration (#32)
* Code compiles - execution NOT tested

* updating gitignore

* Removed intellij settings files

* Removed more intellij files

* Added exclusion for JDK classes.

* Fixed purchasing script for vendors that have listed coin types.

* Updated script to not kick off until the entire preload is complete.

* adds static name entry for Solo movie poster and tcg9 vendor entry

* clean up empty and orphaned object templates

* adds placeholder black market (static) spawns

* corrects entries for the video game table to correctly set it in tcg series 2 and remove series 1 console errors

* Updated gitignore and removed intellij project files

* Fixed appearance reference for thranta payroll and kashyyyk door, added skipLosCheck objvar due to cannit see issue. Requires updated src

* Fixed appearance and template for terminal (#2)

* Fixed appearance and template for terminal (#3)

* Fixed appearance and template for terminal (#4)

* Deleted another faulty/orphaned object template

* Fixed gcw ranks option on frog. Only issue is that it doesn't award the officer commands or badges.

* Fixed some unneeded java 11 changes
2019-04-18 18:31:52 -05:00

216 lines
9.5 KiB
Java
Executable File

package script.conversation;
import script.library.ai_lib;
import script.library.chat;
import script.library.utils;
import script.*;
public class ep3_wookiee_slave extends script.base_script
{
public ep3_wookiee_slave()
{
}
public static String c_stringFile = "conversation/ep3_wookiee_slave";
public boolean ep3_wookiee_slave_condition__defaultCondition(obj_id player, obj_id npc) throws InterruptedException
{
return true;
}
public boolean ep3_wookiee_slave_condition_hasFinishedQuest1(obj_id player, obj_id npc) throws InterruptedException
{
int questId = questGetQuestId("quest/ep3_wookiee_benefactor_1");
return questIsQuestComplete(questId, player);
}
public boolean ep3_wookiee_slave_condition_hasFinishedQuest2(obj_id player, obj_id npc) throws InterruptedException
{
int questId = questGetQuestId("quest/ep3_wookiee_benefactor_2");
return questIsQuestComplete(questId, player);
}
public boolean ep3_wookiee_slave_condition_hasFinishedQuest3(obj_id player, obj_id npc) throws InterruptedException
{
int questId = questGetQuestId("quest/ep3_wookiee_benefactor_3");
return questIsQuestComplete(questId, player);
}
public boolean ep3_wookiee_slave_condition_isOnQuest1(obj_id player, obj_id npc) throws InterruptedException
{
int questId = questGetQuestId("quest/ep3_wookiee_benefactor_1");
return questIsQuestActive(questId, player);
}
public boolean ep3_wookiee_slave_condition_isOnQuest2(obj_id player, obj_id npc) throws InterruptedException
{
int questId = questGetQuestId("quest/ep3_wookiee_benefactor_2");
return questIsQuestActive(questId, player);
}
public boolean ep3_wookiee_slave_condition_hasFinishedRodianQuest1(obj_id player, obj_id npc) throws InterruptedException
{
int questId = questGetQuestId("quest/ep3_rodian_hunter_1");
return questIsQuestComplete(questId, player);
}
public void ep3_wookiee_slave_action_giveQuestOne(obj_id player, obj_id npc) throws InterruptedException
{
int questId = questGetQuestId("quest/ep3_wookiee_benefactor_1");
questActivateQuest(questId, player, npc);
}
public void ep3_wookiee_slave_action_giveQuestTwo(obj_id player, obj_id npc) throws InterruptedException
{
int questId = questGetQuestId("quest/ep3_wookiee_benefactor_2");
questActivateQuest(questId, player, npc);
}
public void ep3_wookiee_slave_action_clearQuests(obj_id player, obj_id npc) throws InterruptedException
{
int questId1 = questGetQuestId("quest/ep3_rodian_hunter_1");
int questId2 = questGetQuestId("quest/ep3_rodian_hunter_2");
int questId3 = questGetQuestId("quest/ep3_rodian_hunter_3");
int questId4 = questGetQuestId("quest/ep3_wookiee_benefactor_1");
int questId5 = questGetQuestId("quest/ep3_wookiee_benefactor_2");
int questId6 = questGetQuestId("quest/ep3_wookiee_benefactor_3");
questClearQuest(questId1, player);
questClearQuest(questId2, player);
questClearQuest(questId3, player);
questClearQuest(questId4, player);
questClearQuest(questId5, player);
questClearQuest(questId6, player);
}
public void ep3_wookiee_slave_action_speak_SHORT(obj_id player, obj_id npc) throws InterruptedException
{
playClientEffectLoc(player, "clienteffect/voc_npc_cnv_rodian_short.cef", getLocation(npc), 0.0f);
}
public void ep3_wookiee_slave_action_speak_MEDIUM(obj_id player, obj_id npc) throws InterruptedException
{
playClientEffectLoc(player, "clienteffect/voc_npc_cnv_rodian_medium.cef", getLocation(npc), 0.0f);
}
public void ep3_wookiee_slave_action_speak_LONG(obj_id player, obj_id npc) throws InterruptedException
{
playClientEffectLoc(player, "clienteffect/voc_npc_cnv_rodian_long.cef", getLocation(npc), 0.0f);
}
public void ep3_wookiee_slave_action_giveQuestThree(obj_id player, obj_id npc) throws InterruptedException
{
int questId = questGetQuestId("quest/ep3_rodian_hunter_3");
questActivateQuest(questId, player, npc);
}
public int ep3_wookiee_slave_handleBranch2(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_344a7894"))
{
if (ep3_wookiee_slave_condition__defaultCondition(player, npc))
{
doAnimationAction(npc, "celebrate");
string_id message = new string_id(c_stringFile, "s_83601c38");
utils.removeScriptVar(player, "conversation.ep3_wookiee_slave.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.ep3_wookiee_slave");
}
setCondition(self, CONDITION_CONVERSABLE);
setInvulnerable(self, true);
setName(self, "Threbacca");
return SCRIPT_CONTINUE;
}
public int OnAttach(obj_id self) throws InterruptedException
{
setCondition(self, CONDITION_CONVERSABLE);
setInvulnerable(self, true);
setName(self, "Threbacca");
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);
faceTo(self, player);
return SCRIPT_CONTINUE;
}
public int OnIncapacitated(obj_id self, obj_id killer) throws InterruptedException
{
clearCondition(self, CONDITION_CONVERSABLE);
detachScript(self, "conversation.ep3_wookiee_slave");
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 (!ep3_wookiee_slave_condition_hasFinishedQuest1(player, npc))
{
doAnimationAction(npc, "weeping");
string_id message = new string_id(c_stringFile, "s_6c82f861");
chat.chat(npc, player, message);
return SCRIPT_CONTINUE;
}
if (ep3_wookiee_slave_condition_hasFinishedQuest1(player, npc))
{
doAnimationAction(npc, "catchbreath");
string_id message = new string_id(c_stringFile, "s_670ea628");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (ep3_wookiee_slave_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_344a7894");
}
utils.setScriptVar(player, "conversation.ep3_wookiee_slave.branchId", 2);
npcStartConversation(player, npc, "ep3_wookiee_slave", message, responses);
}
else
{
chat.chat(npc, player, message);
}
return SCRIPT_CONTINUE;
}
if (ep3_wookiee_slave_condition__defaultCondition(player, npc))
{
doAnimationAction(npc, "bow");
string_id message = new string_id(c_stringFile, "s_3d484801");
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("ep3_wookiee_slave"))
{
return SCRIPT_CONTINUE;
}
obj_id npc = self;
int branchId = utils.getIntScriptVar(player, "conversation.ep3_wookiee_slave.branchId");
if (branchId == 2 && ep3_wookiee_slave_handleBranch2(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
chat.chat(npc, "Error: Fell through all branches and responses for OnNpcConversationResponse.");
utils.removeScriptVar(player, "conversation.ep3_wookiee_slave.branchId");
return SCRIPT_CONTINUE;
}
}