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

373 lines
15 KiB
Java
Executable File

package script.conversation;
import script.library.*;
import script.*;
public class mtp_kissing_booth extends script.base_script
{
public mtp_kissing_booth()
{
}
public static String c_stringFile = "conversation/mtp_kissing_booth";
public boolean mtp_kissing_booth_condition__defaultCondition(obj_id player, obj_id npc) throws InterruptedException
{
return true;
}
public boolean mtp_kissing_booth_condition_hasBuffAlready(obj_id player, obj_id npc) throws InterruptedException
{
if (buff.hasBuff(player, "mtp_meatlump_kiss_buff") || buff.hasBuff(player, "mtp_meatlump_kiss_debuff"))
{
return true;
}
return false;
}
public int mtp_kissing_booth_handleBranch1(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_18"))
{
if (mtp_kissing_booth_condition__defaultCondition(player, npc))
{
string_id message = new string_id(c_stringFile, "s_21");
utils.removeScriptVar(player, "conversation.mtp_kissing_booth.branchId");
npcEndConversationWithMessage(player, message);
return SCRIPT_CONTINUE;
}
}
if (response.equals("s_19"))
{
if (mtp_kissing_booth_condition__defaultCondition(player, npc))
{
string_id message = new string_id(c_stringFile, "s_20");
utils.removeScriptVar(player, "conversation.mtp_kissing_booth.branchId");
npcEndConversationWithMessage(player, message);
return SCRIPT_CONTINUE;
}
}
if (response.equals("s_22"))
{
if (mtp_kissing_booth_condition__defaultCondition(player, npc))
{
string_id message = new string_id(c_stringFile, "s_23");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (mtp_kissing_booth_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_24");
}
utils.setScriptVar(player, "conversation.mtp_kissing_booth.branchId", 4);
npcSpeak(player, message);
npcSetConversationResponses(player, responses);
}
else
{
utils.removeScriptVar(player, "conversation.mtp_kissing_booth.branchId");
npcEndConversationWithMessage(player, message);
}
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int mtp_kissing_booth_handleBranch4(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_24"))
{
if (mtp_kissing_booth_condition__defaultCondition(player, npc))
{
string_id message = new string_id(c_stringFile, "s_25");
utils.removeScriptVar(player, "conversation.mtp_kissing_booth.branchId");
npcEndConversationWithMessage(player, message);
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int mtp_kissing_booth_handleBranch6(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_6"))
{
if (mtp_kissing_booth_condition__defaultCondition(player, npc))
{
string_id message = new string_id(c_stringFile, "s_8");
utils.removeScriptVar(player, "conversation.mtp_kissing_booth.branchId");
npcEndConversationWithMessage(player, message);
return SCRIPT_CONTINUE;
}
}
if (response.equals("s_10"))
{
if (mtp_kissing_booth_condition__defaultCondition(player, npc))
{
string_id message = new string_id(c_stringFile, "s_12");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (mtp_kissing_booth_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_14");
}
utils.setScriptVar(player, "conversation.mtp_kissing_booth.branchId", 8);
npcSpeak(player, message);
npcSetConversationResponses(player, responses);
}
else
{
utils.removeScriptVar(player, "conversation.mtp_kissing_booth.branchId");
npcEndConversationWithMessage(player, message);
}
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public int mtp_kissing_booth_handleBranch8(obj_id player, obj_id npc, string_id response) throws InterruptedException
{
if (response.equals("s_14"))
{
if (mtp_kissing_booth_condition__defaultCondition(player, npc))
{
string_id message = new string_id(c_stringFile, "s_16");
utils.removeScriptVar(player, "conversation.mtp_kissing_booth.branchId");
npcEndConversationWithMessage(player, message);
return SCRIPT_CONTINUE;
}
}
return SCRIPT_DEFAULT;
}
public static final string_id SID_NOT_A_LUMP = new string_id("collection", "not_a_lump");
public static final string_id SID_ALREADY_HAS_KISS_BUFF = new string_id("collection", "has_kiss_buff");
public int OnInitialize(obj_id self) throws InterruptedException
{
if ((!isTangible(self)) || (isPlayer(self)))
{
detachScript(self, "conversation.mtp_kissing_booth");
}
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.mtp_kissing_booth");
return SCRIPT_CONTINUE;
}
public int OnGiveItem(obj_id self, obj_id item, obj_id giver) throws InterruptedException
{
if (!isIdValid(giver) || !exists(giver))
{
return SCRIPT_CONTINUE;
}
if (!isIdValid(item) || !exists(item))
{
return SCRIPT_CONTINUE;
}
if (buff.hasBuff(giver, "mtp_meatlump_kiss_buff") || buff.hasBuff(giver, "mtp_meatlump_kiss_debuff"))
{
sendSystemMessage(giver, SID_ALREADY_HAS_KISS_BUFF);
return SCRIPT_CONTINUE;
}
String itemName = getStaticItemName(item);
if (!itemName.equals("item_meatlump_lump_01_01"))
{
sendSystemMessage(giver, SID_NOT_A_LUMP);
return SCRIPT_CONTINUE;
}
else
{
int myRoll = rand(1, 100);
if (isGod(giver))
{
sendSystemMessageTestingOnly(giver, "you rolled: " + myRoll + " You must roll 10 or less for the debuff");
}
if (myRoll > 10)
{
static_item.decrementStaticItem(item);
faceTo(self, giver);
chat.think(self, " blows you a kiss");
doAnimationAction(self, "kiss");
doAnimationAction(giver, "kiss");
buff.applyBuff(giver, self, "mtp_meatlump_kiss_buff");
}
else
{
static_item.decrementStaticItem(item);
faceTo(self, giver);
chat.think(self, " blows you a kiss");
doAnimationAction(self, "kiss");
doAnimationAction(giver, "kiss");
buff.applyBuff(giver, self, "mtp_meatlump_kiss_debuff");
}
}
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 (mtp_kissing_booth_condition_hasBuffAlready(player, npc))
{
string_id message = new string_id(c_stringFile, "s_17");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (mtp_kissing_booth_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse0 = true;
}
boolean hasResponse1 = false;
if (mtp_kissing_booth_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse1 = true;
}
boolean hasResponse2 = false;
if (mtp_kissing_booth_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_18");
}
if (hasResponse1)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_19");
}
if (hasResponse2)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_22");
}
utils.setScriptVar(player, "conversation.mtp_kissing_booth.branchId", 1);
npcStartConversation(player, npc, "mtp_kissing_booth", message, responses);
}
else
{
chat.chat(npc, player, message);
}
return SCRIPT_CONTINUE;
}
if (mtp_kissing_booth_condition__defaultCondition(player, npc))
{
string_id message = new string_id(c_stringFile, "s_4");
int numberOfResponses = 0;
boolean hasResponse = false;
boolean hasResponse0 = false;
if (mtp_kissing_booth_condition__defaultCondition(player, npc))
{
++numberOfResponses;
hasResponse = true;
hasResponse0 = true;
}
boolean hasResponse1 = false;
if (mtp_kissing_booth_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_6");
}
if (hasResponse1)
{
responses[responseIndex++] = new string_id(c_stringFile, "s_10");
}
utils.setScriptVar(player, "conversation.mtp_kissing_booth.branchId", 6);
npcStartConversation(player, npc, "mtp_kissing_booth", 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("mtp_kissing_booth"))
{
return SCRIPT_CONTINUE;
}
obj_id npc = self;
int branchId = utils.getIntScriptVar(player, "conversation.mtp_kissing_booth.branchId");
if (branchId == 1 && mtp_kissing_booth_handleBranch1(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
if (branchId == 4 && mtp_kissing_booth_handleBranch4(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
if (branchId == 6 && mtp_kissing_booth_handleBranch6(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
if (branchId == 8 && mtp_kissing_booth_handleBranch8(player, npc, response) == SCRIPT_CONTINUE)
{
return SCRIPT_CONTINUE;
}
chat.chat(npc, "Error: Fell through all branches and responses for OnNpcConversationResponse.");
utils.removeScriptVar(player, "conversation.mtp_kissing_booth.branchId");
return SCRIPT_CONTINUE;
}
}