REO-EE/_module/nss/qst_include.nss
Jaysyn904 f82740bbbd Initial commit
Initial commit
2024-02-22 13:22:03 -05:00

1464 lines
62 KiB
Plaintext

#include "adv_include"
#include "pqj_include"
#include "qst_custom_click"
#include "key_item_include"
#include "inc_helper_funcs"
#include "x2_inc_switches"
//////////////////////////////////////////////////////////////
// REFER TO QST_README FOR INFORMATION ON USING THIS SYSTEM //
//////////////////////////////////////////////////////////////
// Name of the variable which stores which quests have been completed at least once
const string QST_COMPLETED_QUESTS = "QST_COMPLETED_QUESTS";
// The term used for quests. Change this only if you want to use another term like mission or task instead.
const string QST_QUEST_TERM = "mission";
const string QST_PROPER_QUEST_TERM = "Mission";
// Name of the variable which stores how many quests have been completed (ignoring repeated quest completions)
const string QST_COMPLETED_QUEST_COUNT = "QST_COMPLETED_QUEST_COUNT";
/////////////////
// QUEST TYPES //
/////////////////
const int QUEST_TYPE_INVALID = 0; // Invalid quest type
const int QUEST_TYPE_KILL_ENEMIES = 1; // Kill 1 or more enemies
const int QUEST_TYPE_TALK_TO_NPC = 2; // Talk to another NPC
const int QUEST_TYPE_USE_OBJECT = 3; // Use a specific placeable object
const int QUEST_TYPE_COLLECT_ITEMS = 4; // Collect specific items and return them to quest giver
const int QUEST_TYPE_EXPLORE_AREA = 5; // Explore a specific area (uses a trigger)
const int QUEST_TYPE_USE_ITEM_ON_NPC = 6; // Use an item on an NPC
///////////////////////
// FAME INFORMATION //
//////////////////////
// Maximum fame value for any region
const int QUEST_FAME_MAXIMUM = 1000;
const string QUEST_FAME_ARRAY_NAME = "QST_FAME";
const int QUEST_FAME_REGION_WAREHOUSE = 1;
//////////////////////
// QUEST_PROTOTYPES //
//////////////////////
// Gives a specified amount of fame to oPC
// oPC = The player object
// iFameRegion = QUEST_FAME_REGION_*
// iAmount = The amount to give
void QST_GiveFame(object oPC, int iFameRegion, int iAmount);
// Sets fame for a region to a particular value
// oPC = The player object
// iFameRegion = QUEST_FAME_REGION_*
// iValue = The value to set fame to
void QST_SetFameLevel(object oPC, int iFameRegion, int iValue);
// Returns the amount of fame oPC has for a particular region
// oPC = The player object
// iFameRegion = QUEST_FAME_REGION_*
int QST_GetFameLevel(object oPC, int iFameRegion);
// Returns 1 if a quest has been completed at least once
// Returns 0 if a quest hasn't been completed yet
// oPC = The player object
// iQuestID = The ID number of the quest
int QST_HasQuestBeenCompleted(object oPC, int iQuestID);
// Marks a quest as completed.
// oPC = The player object
// iQuestID = The ID number of the quest
void QST_MarkQuestCompleted(object oPC, int iQuestID);
// Called in the script "qst_use_item"
// Attempts to start the specified quest dialogue message on the user.
// The following variables must be placed on the quest item:
//
// 1.) QST_QUEST ID INT ID number of the quest
// 2.) QST_DIALOG STRING Name of the dialogue file
//
// NOTE: The quest item must have the tag "QST_USE_ITEM".
void QST_OnUseQuestItem();
// Initializes a quest for oPC.
// oPC = The player object
// iQuestID = The ID number of the quest. Refers to the number in the database
void QST_AcceptQuest(object oPC, int iQuestID);
// Fire this when a player chooses to complete a quest (I.E: turn in)
// oPC = The player object
// iQuestID = The ID number of the particular quest
// sSelectedReward = A two-letter identification which determines which reward was selected from the list.
// If this is empty, ALL rewards will be given. Otherwise only the specified item will be given.
// IDENTIFICATION CODES:
// K1 = Key Item #1
// K2 = Key Item #2
// K3 = Key Item #3
// K4 = Key Item #4
// K5 = Key Item #5
// I1 = Item #1
// I2 = Item #2
// I3 = Item #3
// I4 = Item #4
// I5 = Item #5
// bRepeat = If TRUE, this quest completion is a repeat. This means quest status will not change and no quest information
// will be sent to oPC. Only the rewards will be given and the necessary actions to complete the quest will occur.
// If set FALSE, completion will continue as normal.
void QST_CompleteQuest(object oPC, int iQuestID, string sSelectedReward = "", int bRepeat = FALSE);
// Called in the srch_include script in the function named SRCH_OnChestOpened.
// Will spawn quest items 100% of the time if a search site is correctly defined as having
// a quest item.
void QST_DoSearchSpawnItems(object oPC);
// Call this on a useable placeable's OnUsed event.
// It will spawn the specified creature at the location of the placeable if the user
// is on the correct step of a quest.
// Does NOT move PC to the next state.
void QST_DoClickSpawnCreature();
// Call this on a useable quest placeable's OnUsed event.
// It will mark a "Use Object" quest's task as complete and move the quest to the next state
void QST_DoClickObject();
// Call this on the OnEnter event of the exploration triggers.
// It will mark an "Explore Area" quest's task as complete and move the quest to the next state
void QST_DoExploreArea();
// Returns TRUE if all key items and regular items needed to complete a quest are found on oPC for quest ID iQuestID
// oPC = The player object
// iQuestID = The quest's ID number
// iRequiredKeyItem# = The required key item ID number(s). Set to 0 to ignore.
// sRequiredItem# = The required item(s) resref(s). Set to "" to ignore.
// iRequiredItemQty# = The required number of item(s). Set to 0 to ignore.
int QST_CheckForQuestItems(object oPC, int iQuestID, int iRequiredKeyItem1, int iRequiredKeyItem2, int iRequiredKeyItem3, int iRequiredKeyItem4, int iRequiredKeyItem5, string sRequiredItem1, int iRequiredItemQty1, string sRequiredItem2, int iRequiredItemQty2, string sRequiredItem3, int iRequiredItemQty3, string sRequiredItem4, int iRequiredItemQty4, string sRequiredItem5, int iRequiredItemQty5);
// Fire this when a PC attempts to complete an item collection quest.
// Removes regular items and key items from the PC if he or she meets all requirements to complete the quest.
// oPC = The player object
// iQuestID = The ID number of the quest
// Returns TRUE if items were found and removed successfully
// Returns FALSE if PC is missing one or more item / key item
int QST_DoCollectItems(object oPC, int iQuestID);
// Call this on an NPC's OnDeath event.
// It will loop through every party member's quests and reduce all kill counters by one for quests which
// require this NPC ID to be slain.
void QST_DoKillTarget();
// Call this whenever you want a PC to be forced to accept a quest.
// This is useful for quests which are given when a PC uses a placeable object.
// oPC = The player receiving the quest
void QST_DoGetQuest(object oPC);
/////////////////////////////
// CONVERSATION PROTOTYPES //
/////////////////////////////
// Quest conversation function.
// This is fired in the following scripts: "qst_at_q#_accept"
// Accepts quests in the specified conversation scripts
void QST_ConversationActionsTakenAcceptQuest(int iNPCQuest);
// Quest conversation function.
// This is fired in the following scripts: "qst_at_q#_rewall", "qst_at_q#_rewki", "qst_at_q#_rewi#"
// Rewards items in the specified conversation scripts
void QST_ConversationActionsTakenGiveRewards(int iNPCQuest, string sReward = "");
// Quest conversation function.
// This is fired in the following scripts: "qst_aw_q#_nstart"
// Returns TRUE when the specified NPC quest has NOT been started by the speaking PC
int QST_ConversationAppearsWhenQuestNotStarted(int iNPCQuest);
// Quest conversation function.
// This is fired in the following scripts: "qst_aw_q#_objcom"
// Returns TRUE when all objectives are complete for the specified NPC quest
int QST_ConversationAppearsWhenObjectivesComplete(int iNPCQuest);
// Quest conversation function.
// This is fired in the following scripts: "qst_aw_q#_prereq"
// Returns TRUE when all prerequisite quests are complete for the specified NPC quest
int QST_ConversationAppearsWhenPrerequisitesMet(int iNPCQuest);
// Quest conversation function.
// This is fired in the following scripts: "qst_aw_q#_repeat"
// Returns TRUE when PC has completed the specified NPC quest and the NPC quest is repeatable
int QST_ConversationAppearsWhenQuestRepeatable(int iNPCQuest);
// Quest conversation function.
// This is fired in the following scripts: "qst_aw_q#_start"
// Returns TRUE when PC has started a quest but not completed it yet.
int QST_ConversationAppearsWhenQuestStarted(int iNPCQuest);
// Quest conversation function.
// This is fired in the following scripts: "qst_aw_q#_hasite"
// Returns TRUE when all necessary key items and regular items are found which are required for the specified NPC quest
int QST_ConversationAppearsWhenQuestItemsFound(int iNPCQuest);
// Quest conversation function.
// This is fired in the following scripts: "qst_aw_q#_talkto"
// Node appears when PC is on the correct state of a "Talk to NPC" quest.
int QST_ConversationAppearsWhenTalkToNPC(int iNPCQuest);
// Quest conversation function.
// This is fired in the following scripts: "qst_at_q#_talkto"
// Moves PC to the next state in a quest for "Talk to NPC" quests.
void QST_ConversationActionsTakenTalkToNPC(int iNPCQuest);
// Quest Conversation function.
// This is fired in the following scripts: "qst_aw_q#_compl"
// Shows the node if PC has completed the quest ID placed on the NPC for this number
int QST_ConversationAppearsWhenQuestComplete(int iNPCQuest);
/////////////////////
// QUEST FUNCTIONS //
/////////////////////
int QST_GetFameLevel(object oPC, int iFameRegion)
{
object oDatabase = GetItemPossessedBy(oPC, PC_DATABASE);
return GetLocalArrayInt(oDatabase, QUEST_FAME_ARRAY_NAME, iFameRegion);
}
void QST_SetFameLevel(object oPC, int iFameRegion, int iValue)
{
object oDatabase = GetItemPossessedBy(oPC, PC_DATABASE);
int iFame = QST_GetFameLevel(oPC, iFameRegion);
if(iFame > QUEST_FAME_MAXIMUM) iValue = QUEST_FAME_MAXIMUM;
SetLocalArrayInt(oDatabase, QUEST_FAME_ARRAY_NAME, iFameRegion, iValue);
}
void QST_GiveFame(object oPC, int iFameRegion, int iAmount)
{
object oDatabase = GetItemPossessedBy(oPC, PC_DATABASE);
int iFame = QST_GetFameLevel(oPC, iFameRegion) + iAmount;
if(iFame > QUEST_FAME_MAXIMUM) iFame = QUEST_FAME_MAXIMUM;
SetLocalArrayInt(oDatabase, QUEST_FAME_ARRAY_NAME, iFameRegion, iFame);
}
int QST_HasQuestBeenCompleted(object oPC, int iQuestID)
{
object oDatabase = GetItemPossessedBy(oPC, PC_DATABASE);
string sCompletedQuestsArray = GetLocalString(oDatabase, QST_COMPLETED_QUESTS);
return StringToInt(GetSubString(sCompletedQuestsArray, iQuestID-1, 1));
}
void QST_MarkQuestCompleted(object oPC, int iQuestID)
{
object oDatabase = GetItemPossessedBy(oPC, PC_DATABASE);
string sCompletedQuestsArray = GetLocalString(oDatabase, QST_COMPLETED_QUESTS);
int iLength = GetStringLength(sCompletedQuestsArray);
// Add zeroes to the array if needed
int iLoop;
for(iLoop = iLength; iLoop <= iQuestID; iLoop++)
{
sCompletedQuestsArray += "0";
}
SetLocalString(oDatabase, QST_COMPLETED_QUESTS, sCompletedQuestsArray);
string sLeft = GetStringLeft(sCompletedQuestsArray, iQuestID-1);
string sRight = GetStringRight(sCompletedQuestsArray, iLength - iQuestID);
sCompletedQuestsArray = sLeft + "1" + sRight;
SetLocalString(oDatabase, QST_COMPLETED_QUESTS, sCompletedQuestsArray);
}
void QST_OnUseQuestItem()
{
if (GetUserDefinedItemEventNumber() != X2_ITEM_EVENT_ACTIVATE) return;
object oPC = GetItemActivator();
object oItem = GetItemActivated();
int iQuestID = GetLocalInt(oItem, "QST_QUEST_ID");
string sQuestDialog = GetLocalString(oItem, "QST_DIALOG");
string sJournal = GetMySQLData("`" + QST_SCHEMA_NAME + "`.`" + QST_TABLE_NAME + "`", "Journal", iQuestID, "ID");
int iCompleted = QST_HasQuestBeenCompleted(oPC, iQuestID);
int iState = RetrieveQuestState(sJournal, oPC);
// Not a quest item - return now.
if(sQuestDialog == "" || iQuestID <= 0) return;
// PC has completed the quest or he/she is currently on the quest bail out with an error message
if(iCompleted)
{
SendMessageToPC(oPC, ColorTokenRed() + "You have completed this " + QST_QUEST_TERM + " already." + ColorTokenEnd());
return;
}
if(iState > 0)
{
SendMessageToPC(oPC, ColorTokenRed() + "You have already accepted this " + QST_QUEST_TERM + "." + ColorTokenEnd());
return;
}
// Otherwise start the quest dialogue
AssignCommand(oPC, ActionStartConversation(oPC, sQuestDialog, TRUE, FALSE));
}
void QST_AcceptQuest(object oPC, int iQuestID)
{
string sSQL = "SELECT Quest_Name, Journal, Fame_Region, Fame_Required, Max_Level, Min_Level, Finish_State, Map_Note, Prerequisite_1, Prerequisite_2, Prerequisite_3, Prerequisite_4, Prerequisite_5, Start_Key_Item, Repeatable, Quest_Type FROM " + "`" + QST_SCHEMA_NAME + "`.`" + QST_TABLE_NAME + "`" + " WHERE ID=" + IntToString(iQuestID) + ";";
SQLExecDirect(sSQL);
if(SQLFetch() == SQL_SUCCESS)
{
// Quest Information
string sQuestName = SQLGetData(1);
string sJournal = SQLGetData(2);
int iFameRegion = StringToInt(SQLGetData(3));
int iFameRequired = StringToInt(SQLGetData(4));
int iMaxLevel = StringToInt(SQLGetData(5));
int iMinLevel = StringToInt(SQLGetData(6));
int iFinishState = StringToInt(SQLGetData(7));
string sMapNote = SQLGetData(8);
int iPrereq1 = StringToInt(SQLGetData(9));
int iPrereq2 = StringToInt(SQLGetData(10));
int iPrereq3 = StringToInt(SQLGetData(11));
int iPrereq4 = StringToInt(SQLGetData(12));
int iPrereq5 = StringToInt(SQLGetData(13));
int iStartKeyItem = StringToInt(SQLGetData(14));
int bRepeatable = StringToInt(SQLGetData(15));
int iQuestType = StringToInt(SQLGetData(16));
// PC Information
object oDatabase = GetItemPossessedBy(oPC, PC_DATABASE);
int iQuestState = RetrieveQuestState(sJournal, oPC);
int iLevel = ADV_GetLevel(oPC);
int iFameLevel = QST_GetFameLevel(oPC, iFameRegion);
int bCompletedQuest = QST_HasQuestBeenCompleted(oPC, iQuestID);
// Map Note
object oMapNote = GetWaypointByTag(sMapNote);
// Already on this quest
if(iQuestState > 0)
{
SendMessageToPC(oPC, ColorTokenRed() + "You are already on this " + QST_QUEST_TERM + "." + ColorTokenEnd());
return;
}
// Quest is already completed and quest isn't repeatable
if(iQuestState == 0 && bCompletedQuest && !bRepeatable)
{
SendMessageToPC(oPC, ColorTokenRed() + "You have completed this " + QST_QUEST_TERM + " already." + ColorTokenEnd());
return;
}
// Over max level
if(iLevel > iMaxLevel && iMaxLevel > 0)
{
SendMessageToPC(oPC, ColorTokenRed() + "Your level is too high to accept this " + QST_QUEST_TERM + ". (Maximum: " + IntToString(iMaxLevel) + ")" + ColorTokenEnd());
return;
}
// Under minimum level
if(iLevel < iMinLevel && iMinLevel > 0)
{
SendMessageToPC(oPC, ColorTokenRed() + "Your level is too low to accept this " + QST_QUEST_TERM + ". (Required: " + IntToString(iMinLevel) + ")" + ColorTokenEnd());
return;
}
// Not enough fame
if(iFameRequired > iFameLevel && iFameRequired > 0)
{
SendMessageToPC(oPC, ColorTokenRed() + "You do not have enough fame to accept this " + QST_QUEST_TERM + "." + ColorTokenEnd());
return;
}
// Missing prereq quest - exit here with an error
if(!QST_HasQuestBeenCompleted(oPC, iPrereq1) && iPrereq1 > 0 || !QST_HasQuestBeenCompleted(oPC, iPrereq2) && iPrereq2 > 0 || !QST_HasQuestBeenCompleted(oPC, iPrereq3) && iPrereq3 > 0 || !QST_HasQuestBeenCompleted(oPC, iPrereq4) && iPrereq4 > 0 || !QST_HasQuestBeenCompleted(oPC, iPrereq5) && iPrereq5 > 0)
{
SendMessageToPC(oPC, ColorTokenRed() + "You have not completed a prerequisite " + QST_QUEST_TERM + "." + ColorTokenEnd());
return;
}
// Otherwise, requirements are met - accept quest
AddPersistentJournalQuestEntry(sJournal, 1, oPC, FALSE, FALSE, FALSE);
//SendMessageToPC(oPC, ColorTokenGreen() + QST_PROPER_QUEST_TERM + " accepted: '" + sQuestName + "'" + ColorTokenEnd());
// Add the map note if one was specified
if(!GetIsObjectValid(oMapNote))
{
SetMapPinEnabled(oMapNote, TRUE);
}
// Give key item
if(iStartKeyItem > 0)
{
KEYITEM_AddKeyItem(oPC, iStartKeyItem, TRUE);
}
// Specific quest type functions
switch(iQuestType)
{
case QUEST_TYPE_COLLECT_ITEMS:
{
break;
}
case QUEST_TYPE_EXPLORE_AREA:
{
break;
}
// Category: Kill Enemies Quests
case QUEST_TYPE_KILL_ENEMIES:
{
sSQL = "SELECT Kill_Target_1, Kill_Target_Qty_1, Kill_Target_2, Kill_Target_Qty_2, Kill_Target_3, Kill_Target_Qty_3, Kill_Target_4, Kill_Target_Qty_4, Kill_Target_5, Kill_Target_Qty_5 FROM " + "`" + QST_SCHEMA_NAME + "`.`" + QST_TABLE_NAME + "`" + " WHERE ID=" + IntToString(iQuestID);
SQLExecDirect(sSQL);
if(SQLFetch() == SQL_SUCCESS)
{
int iTargetID1 = StringToInt(SQLGetData(1));
int iTargetQty1 = StringToInt(SQLGetData(2));
int iTargetID2 = StringToInt(SQLGetData(3));
int iTargetQty2 = StringToInt(SQLGetData(4));
int iTargetID3 = StringToInt(SQLGetData(5));
int iTargetQty3 = StringToInt(SQLGetData(6));
int iTargetID4 = StringToInt(SQLGetData(7));
int iTargetQty4 = StringToInt(SQLGetData(8));
int iTargetID5 = StringToInt(SQLGetData(9));
int iTargetQty5 = StringToInt(SQLGetData(10));
// Mark kill targets as temporary variables on the PC's database
// For later use when players start killing the specified targets.
string sTempVariable = "QST_" + IntToString(iQuestID) + "_KILL_ENEMIES";
SetLocalArrayInt(oDatabase, sTempVariable, 1, iTargetQty1);
SetLocalArrayInt(oDatabase, sTempVariable, 2, iTargetQty2);
SetLocalArrayInt(oDatabase, sTempVariable, 3, iTargetQty3);
SetLocalArrayInt(oDatabase, sTempVariable, 4, iTargetQty4);
SetLocalArrayInt(oDatabase, sTempVariable, 5, iTargetQty5);
sTempVariable = "QST_" + IntToString(iQuestID) + "_KILL_ENEMIES_ID";
SetLocalArrayInt(oDatabase, sTempVariable, 1, iTargetID1);
SetLocalArrayInt(oDatabase, sTempVariable, 2, iTargetID2);
SetLocalArrayInt(oDatabase, sTempVariable, 3, iTargetID3);
SetLocalArrayInt(oDatabase, sTempVariable, 4, iTargetID4);
SetLocalArrayInt(oDatabase, sTempVariable, 5, iTargetID5);
// Mark quest name for later use
SetLocalString(oDatabase, "QST_" + IntToString(iQuestID) + "_QUEST_NAME", sQuestName);
}
break;
}
case QUEST_TYPE_TALK_TO_NPC:
{
break;
}
case QUEST_TYPE_USE_ITEM_ON_NPC:
{
break;
}
case QUEST_TYPE_USE_OBJECT:
{
break;
}
}
}
// Quest wasn't retrieved correctly. Give error message
else
{
SendMessageToPC(oPC, ColorTokenRed() + "ERROR: " + QST_PROPER_QUEST_TERM + " not found! Please inform a DM of this issue. (" + QST_PROPER_QUEST_TERM + " ID: " + IntToString(iQuestID) + ")" + ColorTokenEnd());
return;
}
}
void QST_CompleteQuest(object oPC, int iQuestID, string sSelectedReward = "", int bRepeat = FALSE)
{
// Ignore non-repeat quests that have been completed already
if(QST_HasQuestBeenCompleted(oPC, iQuestID) && !bRepeat) return;
object oDatabase = GetItemPossessedBy(oPC, PC_DATABASE);
string sSQL = "SELECT Quest_Name, Journal, Quest_Type, Fame_Region, Reward_Gold, Reward_XP, Reward_Fame, Reward_Key_Item_1, Reward_Key_Item_2, Reward_Key_Item_3, Reward_Key_Item_4, Reward_Key_Item_5, Reward_Item_1, Reward_Item_Qty_1, Reward_Item_2, Reward_Item_Qty_2, Reward_Item_3, Reward_Item_Qty_3, Reward_Item_4, Reward_Item_Qty_4, Reward_Item_5, Reward_Item_Qty_5, Finish_State, Start_Key_Item, Remove_Temp_Key_Item, Map_Note, Reward_Selection, Repeatable FROM " + "`" + QST_SCHEMA_NAME + "`.`" + QST_TABLE_NAME + "`" + " WHERE ID=" + IntToString(iQuestID);
SQLExecDirect(sSQL);
if(SQLFetch() == SQL_SUCCESS)
{
// Quest Information
string sQuestName = SQLGetData(1);
string sJournal = SQLGetData(2);
int iQuestType = StringToInt(SQLGetData(3));
int iFameRegion = StringToInt(SQLGetData(4));
int iRewardGold = StringToInt(SQLGetData(5));
int iRewardXP = StringToInt(SQLGetData(6));
int iRewardFame = StringToInt(SQLGetData(7));
int iRewardKeyItem1 = StringToInt(SQLGetData(8));
int iRewardKeyItem2 = StringToInt(SQLGetData(9));
int iRewardKeyItem3 = StringToInt(SQLGetData(10));
int iRewardKeyItem4 = StringToInt(SQLGetData(11));
int iRewardKeyItem5 = StringToInt(SQLGetData(12));
string sRewardItem1 = SQLGetData(13);
int iRewardItemQty1 = StringToInt(SQLGetData(14));
string sRewardItem2 = SQLGetData(15);
int iRewardItemQty2 = StringToInt(SQLGetData(16));
string sRewardItem3 = SQLGetData(17);
int iRewardItemQty3 = StringToInt(SQLGetData(18));
string sRewardItem4 = SQLGetData(19);
int iRewardItemQty4 = StringToInt(SQLGetData(20));
string sRewardItem5 = SQLGetData(21);
int iRewardItemQty5 = StringToInt(SQLGetData(22));
int iFinishState = StringToInt(SQLGetData(23));
int iStartKeyItem = StringToInt(SQLGetData(24));
int bRemoveStartKeyItem = StringToInt(SQLGetData(25));
string sMapNote = SQLGetData(26);
int bRewardSelection = StringToInt(SQLGetData(27));
int bRepeatable = StringToInt(SQLGetData(28));
// PC Information
int iQuestState = RetrieveQuestState(sJournal, oPC);
int bMissingObjective = TRUE;
// Default final state to initial state if quest designer forgot to set it
if(iFinishState == 0) iFinishState = 1;
// Quest is on the finish state - clear for giving out rewards
if(iFinishState == iQuestState)
{
bMissingObjective = FALSE;
// Manage the various quest completion actions
// E.G: Check for completed tasks, remove temporary quest-specific variables, etc.
switch(iQuestType)
{
// Quest Category: Collect Item(s)
case QUEST_TYPE_COLLECT_ITEMS:
{
if(!QST_DoCollectItems(oPC, iQuestID)) bMissingObjective = TRUE;
break;
}
// Quest Category: Explore Area
case QUEST_TYPE_EXPLORE_AREA:
{
// Check if PC entered exploration trigger
if(GetLocalInt(oDatabase, "QST_" + IntToString(iQuestID) + "_EXPLORE_AREA") == TRUE)
{
DeleteLocalInt(oDatabase, "QST_" + IntToString(iQuestID) + "_EXPLORE_AREA");
}
else
{
bMissingObjective = TRUE;
}
break;
}
// Quest Category: Kill Enemies
case QUEST_TYPE_KILL_ENEMIES:
{
// Remove the number of enemies that need to be killed
string sTempVariable = "QST_" + IntToString(iQuestID) + "_KILL_ENEMIES";
DeleteLocalArrayInt(oDatabase, sTempVariable, 1);
DeleteLocalArrayInt(oDatabase, sTempVariable, 2);
DeleteLocalArrayInt(oDatabase, sTempVariable, 3);
DeleteLocalArrayInt(oDatabase, sTempVariable, 4);
DeleteLocalArrayInt(oDatabase, sTempVariable, 5);
// Remove the ID numbers of the enemies that need to be killed
sTempVariable = "QST_" + IntToString(iQuestID) + "_KILL_ENEMIES_ID";
DeleteLocalArrayInt(oDatabase, sTempVariable, 1);
DeleteLocalArrayInt(oDatabase, sTempVariable, 2);
DeleteLocalArrayInt(oDatabase, sTempVariable, 3);
DeleteLocalArrayInt(oDatabase, sTempVariable, 4);
DeleteLocalArrayInt(oDatabase, sTempVariable, 5);
// Remove quest name
DeleteLocalString(oDatabase, "QST_" + IntToString(iQuestID) + "_QUEST_NAME");
break;
}
// Quest Category: Talk to NPC
case QUEST_TYPE_TALK_TO_NPC:
{
break;
}
// Quest Category: Use Item on NPC
case QUEST_TYPE_USE_ITEM_ON_NPC:
{
if(GetLocalInt(oDatabase, "QST_" + IntToString(iQuestID) + "_USE_ITEM_ON_NPC") == TRUE)
{
DeleteLocalInt(oDatabase, "QST_" + IntToString(iQuestID) + "_USE_ITEM_ON_NPC");
}
else
{
bMissingObjective = TRUE;
}
break;
}
// Quest Category: Use Object/Placeable
case QUEST_TYPE_USE_OBJECT:
{
if(GetLocalInt(oDatabase, "QST_" + IntToString(iQuestID) + "_USE_OBJECT") == TRUE)
{
DeleteLocalInt(oDatabase, "QST_" + IntToString(iQuestID) + "_USE_OBJECT");
}
else
{
bMissingObjective = TRUE;
}
break;
}
}
// Objective not missing - continue completing the quest
if(!bMissingObjective)
{
// Remove the starting key item if specified to do so
if(bRemoveStartKeyItem)
KEYITEM_RemoveKeyItem(oPC, iStartKeyItem, FALSE);
// Fame is awarded no matter what type of reward selection is set up
if(iRewardFame > 0)
QST_GiveFame(oPC, iFameRegion, iRewardFame);
// Gold is awarded no matter what type of reward selection is set up
if(iRewardGold > 0)
GiveGoldToCreature(oPC, iRewardGold);
// XP is awarded no matter what type of reward selection is set up
if(iRewardXP > 0)
ADV_GiveExperienceToPC(oPC, iRewardXP);
// Give ONLY the reward the PC selected
if(bRewardSelection == 1 && sSelectedReward != "")
{
if(sSelectedReward == "K1")
KEYITEM_AddKeyItem(oPC, iRewardKeyItem1);
else if(sSelectedReward == "K2")
KEYITEM_AddKeyItem(oPC, iRewardKeyItem2);
else if(sSelectedReward == "K3")
KEYITEM_AddKeyItem(oPC, iRewardKeyItem3);
else if(sSelectedReward == "K4")
KEYITEM_AddKeyItem(oPC, iRewardKeyItem4);
else if(sSelectedReward == "K5")
KEYITEM_AddKeyItem(oPC, iRewardKeyItem5);
else if(sSelectedReward == "I1")
CreateItemOnObjectSafe(sRewardItem1, oPC, iRewardItemQty1);
else if(sSelectedReward == "I2")
CreateItemOnObjectSafe(sRewardItem2, oPC, iRewardItemQty2);
else if(sSelectedReward == "I3")
CreateItemOnObjectSafe(sRewardItem3, oPC, iRewardItemQty3);
else if(sSelectedReward == "I4")
CreateItemOnObjectSafe(sRewardItem4, oPC, iRewardItemQty4);
else if(sSelectedReward == "I5")
CreateItemOnObjectSafe(sRewardItem5, oPC, iRewardItemQty5);
}
// Give ALL rewards
else
{
if(iRewardKeyItem1 > 0)
KEYITEM_AddKeyItem(oPC, iRewardKeyItem1);
if(iRewardKeyItem2 > 0)
KEYITEM_AddKeyItem(oPC, iRewardKeyItem2);
if(iRewardKeyItem3 > 0)
KEYITEM_AddKeyItem(oPC, iRewardKeyItem3);
if(iRewardKeyItem4 > 0)
KEYITEM_AddKeyItem(oPC, iRewardKeyItem4);
if(iRewardKeyItem5 > 0)
KEYITEM_AddKeyItem(oPC, iRewardKeyItem5);
if(sRewardItem1 != "")
CreateItemOnObjectSafe(sRewardItem1, oPC, iRewardItemQty1);
if(sRewardItem2 != "")
CreateItemOnObjectSafe(sRewardItem2, oPC, iRewardItemQty2);
if(sRewardItem3 != "")
CreateItemOnObjectSafe(sRewardItem3, oPC, iRewardItemQty3);
if(sRewardItem4 != "")
CreateItemOnObjectSafe(sRewardItem4, oPC, iRewardItemQty4);
if(sRewardItem5 != "")
CreateItemOnObjectSafe(sRewardItem5, oPC, iRewardItemQty5);
}
// Remove map note
if(sMapNote != "")
SetMapPinEnabled(GetWaypointByTag(sMapNote), FALSE);
// Quest status updates only occur if the quest isn't a repeat
if(!bRepeat)
{
DelayCommand(0.2, SendMessageToPC(oPC, ColorTokenGreen() + QST_PROPER_QUEST_TERM + " completed: '" + sQuestName + "'" + ColorTokenEnd()));
// Mark quest as completed and remove the journal entry (reduces spam on module re-entry)
RemovePersistentJournalQuestEntry(sJournal, oPC, FALSE, FALSE);
QST_MarkQuestCompleted(oPC, iQuestID);
// Increase number of completed quests by 1
SetLocalInt(oDatabase, QST_COMPLETED_QUEST_COUNT, GetLocalInt(oDatabase, QST_COMPLETED_QUEST_COUNT) + 1);
}
}
}
// Quest isn't on the finish state - give an error
if(bMissingObjective)
{
SendMessageToPC(oPC, ColorTokenRed() + "At least one " + QST_QUEST_TERM + " objective has not been completed." + ColorTokenEnd());
return;
}
}
// Quest missing from database
else
{
SendMessageToPC(oPC, ColorTokenRed() + "ERROR: " + QST_PROPER_QUEST_TERM + " not found! Please inform a DM of this issue. (" + QST_PROPER_QUEST_TERM + " ID: " + IntToString(iQuestID) + ")" + ColorTokenEnd());
return;
}
}
void QST_DoSearchSpawnItems(object oPC)
{
object oChest = OBJECT_SELF;
int iCurrentQuest = 1;
int iQuestID = GetLocalInt(oChest, "QUEST_ITEM_ID_" + IntToString(iCurrentQuest));
while(iQuestID > 0)
{
string sJournal = GetMySQLData("`" + QST_SCHEMA_NAME + "`.`" + QST_TABLE_NAME + "`", "Journal", iQuestID);
string sQuestResref = GetLocalString(oChest, "QUEST_ITEM_RESREF_" + IntToString(iCurrentQuest));
int iQuestCurrentState = GetLocalInt(oChest, "QUEST_CURRENT_STATE_" + IntToString(iCurrentQuest));
int iQuestState = RetrieveQuestState(sJournal, oPC);
// PC must be on the corrent quest state in order for the items to spawn
if(iQuestState == iQuestCurrentState)
{
object oQuestItem = CreateItemOnObject(sQuestResref, oChest, 1);
// Mark this item as a quest item - this will make it so that the item isn't stored
// in the search system's database.
SetLocalInt(oQuestItem, "QST_QUEST_ITEM", TRUE);
}
iCurrentQuest++;
iQuestID = GetLocalInt(oChest, "QUEST_ITEM_ID_" + IntToString(iCurrentQuest));
}
}
void QST_DoClickSpawnCreature()
{
object oPC = GetLastUsedBy();
// Only PCs fire this.
if(!GetIsPC(oPC)) return;
object oArea = GetArea(OBJECT_SELF);
object oDatabase = GetItemPossessedBy(oPC, PC_DATABASE);
int iQuestID = GetLocalInt(OBJECT_SELF, "QST_ID_NUMBER");
string sJournal = GetMySQLData("`" + QST_SCHEMA_NAME + "`.`" + QST_TABLE_NAME + "`", "Journal", iQuestID, "ID");
int iQuestStatus = RetrieveQuestState(sJournal, oPC);
int iCurrentStep = GetLocalInt(OBJECT_SELF, "QST_CURRENT_STATE");
object oSpawned = GetLocalObject(OBJECT_SELF, "QST_SPAWNED_CREATURE");
// Unique creature is already spawned. Can't spawn another until it's dead.
if(GetIsObjectValid(oSpawned)) return;
// PC isn't on the correct step of the quest
if(iCurrentStep != iQuestStatus) return;
// Otherwise we can spawn the unique creature
location lLocation = GetLocation(OBJECT_SELF);
string sResref = GetLocalString(OBJECT_SELF, "QST_RESREF");
string sSpawnWaypoint = GetLocalString(OBJECT_SELF, "QST_SPAWN_WAYPOINT");
// If a waypoint has been declared, spawn the creature at the waypoint instead
if(sSpawnWaypoint != "")
{
object oSpawnWaypoint = GetWaypointByTag(sSpawnWaypoint);
if(GetIsObjectValid(oSpawnWaypoint) && GetArea(oSpawnWaypoint) == oArea)
{
lLocation = GetLocation(oSpawnWaypoint);
}
}
oSpawned = CreateObject(OBJECT_TYPE_CREATURE, sResref, lLocation);
SetLocalObject(OBJECT_SELF, "QST_SPAWNED_CREATURE", oSpawned);
// Begin the countdown before it depops. Countdown only decreases
// if the creature is idle (I.E: Not being attacked)
SetLocalInt(oSpawned, "POP_MONSTER_COUNTDOWN", 300);
AssignCommand(oSpawned, ActionAttack(oPC));
// Display a message, if set
string sMessage = GetLocalString(OBJECT_SELF, "QST_MESSAGE");
if(sMessage != "")
{
SendMessageToPC(oPC, ColorTokenGreen() + sMessage + ColorTokenEnd());
}
}
void QST_DoClickObject()
{
object oPC = GetLastUsedBy();
// Only PCs fire this.
if(!GetIsPC(oPC)) return;
object oDatabase = GetItemPossessedBy(oPC, PC_DATABASE);
int iQuestID = GetLocalInt(OBJECT_SELF, "QST_ID_NUMBER");
string sTempQuestVariable = "QST_" + IntToString(iQuestID) + "_USE_OBJECT";
string sSQL = "SELECT Journal, Quest_Type FROM " + "`" + QST_SCHEMA_NAME + "`.`" + QST_TABLE_NAME + "`" + " WHERE ID=" + IntToString(iQuestID);
SQLExecDirect(sSQL);
// Quest is in the database. Continue.
if(SQLFetch() == SQL_SUCCESS)
{
string sJournal = SQLGetData(1);
int iQuestType = StringToInt(SQLGetData(2));
// Just in case the quest builder made an error - check if this is designated as a "Use Object" quest
if(iQuestType != QUEST_TYPE_USE_OBJECT)
{
SendMessageToPC(oPC, ColorTokenRed() + "ERROR: " + QST_PROPER_QUEST_TERM + " ID " + IntToString(iQuestID) + " is not marked as a 'Click Object' quest. Please inform a DM of this issue." + ColorTokenEnd());
return;
}
int iQuestStatus = RetrieveQuestState(sJournal, oPC);
int iCurrentStep = GetLocalInt(OBJECT_SELF, "QST_CURRENT_STATE");
// Current State is an optional field - if left blank, the quest may be on any state (other than 0) and the placeable will still work
if(iCurrentStep <= 0) iCurrentStep = iQuestStatus;
// PC is currently on the quest - move them to the next step of the quest
if(iQuestStatus > 0 && !GetLocalInt(oDatabase, sTempQuestVariable) && iQuestStatus == iCurrentStep)
{
string sMessage = GetLocalString(OBJECT_SELF, "QST_MESSAGE");
int iNextStep = GetLocalInt(OBJECT_SELF, "QST_NEXT_STATE");
int iBehavior = GetLocalInt(OBJECT_SELF, "QST_CUSTOM_BEHAVIOR_ID");
if(sMessage != "")
{
SendMessageToPC(oPC, ColorTokenGreen() + sMessage + ColorTokenEnd());
}
// Update journal and mark task as complete
AddPersistentJournalQuestEntry(sJournal, iNextStep, oPC, FALSE, FALSE, FALSE);
SetLocalInt(oDatabase, sTempQuestVariable, TRUE);
// Fire custom behavior when object is clicked
QST_RunCustomClickBehavior(oPC, iBehavior);
}
// PC not on the quest - give out the specified message, if any
else
{
string sMessage = GetLocalString(OBJECT_SELF, "QST_NOT_ON_QUEST_MESSAGE");
if(sMessage != "")
{
SendMessageToPC(oPC, sMessage);
}
}
}
}
void QST_DoExploreArea()
{
object oPC = GetEnteringObject();
// Only PCs fire this.
if(!GetIsPC(oPC)) return;
object oDatabase = GetItemPossessedBy(oPC, PC_DATABASE);
int iQuestID = GetLocalInt(OBJECT_SELF, "QST_ID_NUMBER");
string sTempQuestVariable = "QST_" + IntToString(iQuestID) + "_EXPLORE_AREA";
string sSQL = "SELECT Journal, Quest_Type FROM " + "`" + QST_SCHEMA_NAME + "`.`" + QST_TABLE_NAME + "`" + " WHERE ID=" + IntToString(iQuestID);
SQLExecDirect(sSQL);
// Quest is in the database. Continue.
if(SQLFetch() == SQL_SUCCESS)
{
string sJournal = SQLGetData(1);
int iQuestType = StringToInt(SQLGetData(2));
// Just in case the quest builder made an error - check if this is designated as an "Explore Area" quest
if(iQuestType != QUEST_TYPE_EXPLORE_AREA)
{
SendMessageToPC(oPC, ColorTokenRed() + "ERROR: " + QST_PROPER_QUEST_TERM + " ID " + IntToString(iQuestID) + " is not marked as a 'Explore Area' quest. Please inform a DM of this issue." + ColorTokenEnd());
return;
}
int iQuestStatus = RetrieveQuestState(sJournal, oPC);
int iCurrentStep = GetLocalInt(OBJECT_SELF, "QST_CURRENT_STATE");
// Current State is an optional field - if left blank, the quest may be on any state (other than 0) and the trigger will still work
if(iCurrentStep <= 0) iCurrentStep = iQuestStatus;
// PC is currently on the quest - move them to the next step of the quest
if(iQuestStatus > 0 && !GetLocalInt(oDatabase, sTempQuestVariable))
{
string sMessage = GetLocalString(OBJECT_SELF, "QST_MESSAGE");
int iNextStep = GetLocalInt(OBJECT_SELF, "QST_NEXT_STATE");
if(sMessage != "")
{
SendMessageToPC(oPC, ColorTokenGreen() + sMessage + ColorTokenEnd());
}
// Update journal and mark task as complete
AddPersistentJournalQuestEntry(sJournal, iNextStep, oPC, FALSE, FALSE, FALSE);
SetLocalInt(oDatabase, sTempQuestVariable, TRUE);
}
}
}
int QST_CheckForQuestItems(object oPC, int iQuestID, int iRequiredKeyItem1, int iRequiredKeyItem2, int iRequiredKeyItem3, int iRequiredKeyItem4, int iRequiredKeyItem5, string sRequiredItem1, int iRequiredItemQty1, string sRequiredItem2, int iRequiredItemQty2, string sRequiredItem3, int iRequiredItemQty3, string sRequiredItem4, int iRequiredItemQty4, string sRequiredItem5, int iRequiredItemQty5)
{
// PC Information
int bHasAllItems = TRUE;
// Check for required key items
if(iRequiredKeyItem1 > 0 && !KEYITEM_GetKeyItem(oPC, iRequiredKeyItem1)) return FALSE;
else if(iRequiredKeyItem2 > 0 && !KEYITEM_GetKeyItem(oPC, iRequiredKeyItem2)) return FALSE;
else if(iRequiredKeyItem3 > 0 && !KEYITEM_GetKeyItem(oPC, iRequiredKeyItem3)) return FALSE;
else if(iRequiredKeyItem4 > 0 && !KEYITEM_GetKeyItem(oPC, iRequiredKeyItem4)) return FALSE;
else if(iRequiredKeyItem5 > 0 && !KEYITEM_GetKeyItem(oPC, iRequiredKeyItem5)) return FALSE;
// Check for required regular items
int iNumItem1 = iRequiredItemQty1;
int iNumItem2 = iRequiredItemQty2;
int iNumItem3 = iRequiredItemQty3;
int iNumItem4 = iRequiredItemQty4;
int iNumItem5 = iRequiredItemQty5;
object oInventory = GetFirstItemInInventory(oPC);
while(GetIsObjectValid(oInventory))
{
string sResref = GetResRef(oInventory);
int iStackSize = GetItemStackSize(oInventory);
if(sResref == sRequiredItem1) iNumItem1 -= iStackSize;
else if(sResref == sRequiredItem2) iNumItem2 -= iStackSize;
else if(sResref == sRequiredItem3) iNumItem3 -= iStackSize;
else if(sResref == sRequiredItem4) iNumItem4 -= iStackSize;
else if(sResref == sRequiredItem5) iNumItem5 -= iStackSize;
oInventory = GetNextItemInInventory(oPC);
}
// Missing at least one of the required items
if(iNumItem1 > 0 || iNumItem2 > 0 || iNumItem3 > 0 || iNumItem4 > 0 || iNumItem5 > 0) return FALSE;
return TRUE;
}
int QST_DoCollectItems(object oPC, int iQuestID)
{
string sSQL = "SELECT Quest_Type, Required_Item_1, Required_Item_Qty_1, Required_Item_2, Required_Item_Qty_2, Required_Item_3, Required_Item_Qty_3, Required_Item_4, Required_Item_Qty_4, Required_Item_5, Required_Item_Qty_5, Required_Key_Item_1, Required_Key_Item_2, Required_Key_Item_3, Required_Key_Item_4, Required_Key_Item_5 FROM " + "`" + QST_SCHEMA_NAME + "`.`" + QST_TABLE_NAME + "`" + " WHERE ID=" + IntToString(iQuestID);
SQLExecDirect(sSQL);
if(SQLFetch() == SQL_SUCCESS)
{
// Quest Information
int iQuestType = StringToInt(SQLGetData(1));
string sRequiredItem1 = SQLGetData(2);
int iRequiredItemQty1 = StringToInt(SQLGetData(3));
string sRequiredItem2 = SQLGetData(4);
int iRequiredItemQty2 = StringToInt(SQLGetData(5));
string sRequiredItem3 = SQLGetData(6);
int iRequiredItemQty3 = StringToInt(SQLGetData(7));
string sRequiredItem4 = SQLGetData(8);
int iRequiredItemQty4 = StringToInt(SQLGetData(9));
string sRequiredItem5 = SQLGetData(10);
int iRequiredItemQty5 = StringToInt(SQLGetData(11));
int iRequiredKeyItem1 = StringToInt(SQLGetData(12));
int iRequiredKeyItem2 = StringToInt(SQLGetData(13));
int iRequiredKeyItem3 = StringToInt(SQLGetData(14));
int iRequiredKeyItem4 = StringToInt(SQLGetData(15));
int iRequiredKeyItem5 = StringToInt(SQLGetData(16));
int bHasAllItems = QST_CheckForQuestItems(oPC, iQuestID, iRequiredKeyItem1, iRequiredKeyItem2, iRequiredKeyItem3, iRequiredKeyItem4, iRequiredKeyItem5, sRequiredItem1, iRequiredItemQty1, sRequiredItem2, iRequiredItemQty2, sRequiredItem3, iRequiredItemQty3, sRequiredItem4, iRequiredItemQty4, sRequiredItem5, iRequiredItemQty5);
// At least one item / key item requirement is missing. Inform PC they can't complete the quest
if(!bHasAllItems)
{
SendMessageToPC(oPC, ColorTokenRed() + "Unable to complete " + QST_QUEST_TERM + ". At least one " + QST_QUEST_TERM + " item or key item is missing." + ColorTokenEnd());
return FALSE;
}
// By this point it's safe to assume the player has all necessary items and key items. Remove them from the PC
KEYITEM_RemoveKeyItem(oPC, iRequiredKeyItem1, FALSE);
KEYITEM_RemoveKeyItem(oPC, iRequiredKeyItem2, FALSE);
KEYITEM_RemoveKeyItem(oPC, iRequiredKeyItem3, FALSE);
KEYITEM_RemoveKeyItem(oPC, iRequiredKeyItem4, FALSE);
KEYITEM_RemoveKeyItem(oPC, iRequiredKeyItem5, FALSE);
int iNumItem1 = iRequiredItemQty1;
int iNumItem2 = iRequiredItemQty2;
int iNumItem3 = iRequiredItemQty3;
int iNumItem4 = iRequiredItemQty4;
int iNumItem5 = iRequiredItemQty5;
// Loop through again - this time, actually destroy the items
object oInventory = GetFirstItemInInventory(oPC);
while(GetIsObjectValid(oInventory))
{
string sResref = GetResRef(oInventory);
int iStackSize = GetItemStackSize(oInventory);
// ITEM #1
if(sResref == sRequiredItem1)
{
if(iNumItem1 > 0)
{
if(iNumItem1 == iStackSize)
{
iNumItem1 = 0;
DestroyObject(oInventory);
}
else if(iNumItem1 < iStackSize)
{
iStackSize = iStackSize - iNumItem1;
SetItemStackSize(oInventory, iStackSize);
}
else if(iNumItem1 > iStackSize)
{
iNumItem1 = iNumItem1 - iStackSize;
DestroyObject(oInventory);
}
}
}
// ITEM #2
else if(sResref == sRequiredItem2)
{
if(iNumItem2 > 0)
{
if(iNumItem2 == iStackSize)
{
iNumItem2 = 0;
DestroyObject(oInventory);
}
else if(iNumItem2 < iStackSize)
{
iStackSize = iStackSize - iNumItem2;
SetItemStackSize(oInventory, iStackSize);
}
else if(iNumItem2 > iStackSize)
{
iNumItem2 = iNumItem2 - iStackSize;
DestroyObject(oInventory);
}
}
}
// ITEM #3
else if(sResref == sRequiredItem3)
{
if(iNumItem3 > 0)
{
if(iNumItem3 == iStackSize)
{
iNumItem3 = 0;
DestroyObject(oInventory);
}
else if(iNumItem3 < iStackSize)
{
iStackSize = iStackSize - iNumItem3;
SetItemStackSize(oInventory, iStackSize);
}
else if(iNumItem3 > iStackSize)
{
iNumItem3 = iNumItem3 - iStackSize;
DestroyObject(oInventory);
}
}
}
// ITEM #4
else if(sResref == sRequiredItem4)
{
if(iNumItem4 > 0)
{
if(iNumItem4 == iStackSize)
{
iNumItem4 = 0;
DestroyObject(oInventory);
}
else if(iNumItem4 < iStackSize)
{
iStackSize = iStackSize - iNumItem4;
SetItemStackSize(oInventory, iStackSize);
}
else if(iNumItem4 > iStackSize)
{
iNumItem4 = iNumItem4 - iStackSize;
DestroyObject(oInventory);
}
}
}
// ITEM #5
else if(sResref == sRequiredItem5)
{
if(iNumItem5 > 0)
{
if(iNumItem5 == iStackSize)
{
iNumItem5 = 0;
DestroyObject(oInventory);
}
else if(iNumItem5 < iStackSize)
{
iStackSize = iStackSize - iNumItem5;
SetItemStackSize(oInventory, iStackSize);
}
else if(iNumItem5 > iStackSize)
{
iNumItem5 = iNumItem5 - iStackSize;
DestroyObject(oInventory);
}
}
}
oInventory = GetNextItemInInventory(oPC);
}
return bHasAllItems;
}
// Quest information is missing from the database
else
{
SendMessageToPC(oPC, ColorTokenRed() + "ERROR: " + QST_PROPER_QUEST_TERM + " cannot be found in the database. Please inform a DM! (ID: " + IntToString(iQuestID) + ")" + ColorTokenEnd());
return FALSE;
}
}
void QST_PrivateProgressKillQuest(object oPC, object oMember, object oArea)
{
int iNPCID = GetLocalInt(OBJECT_SELF, "QST_NPC_ID");
int iQuestAssociation = 1;
int iQuestID = GetLocalInt(OBJECT_SELF, "QST_NPC_QUEST_1");
object oDatabase = GetItemPossessedBy(oMember, PC_DATABASE);
// Member must be in the same area as the killer (system assumes the killer is still in the same area as the dead NPC)
if(GetArea(oMember) == oArea)
{
// Loop through all quest associations and reduce kill counter for each quest
// the PC is currently on by 1
while(iQuestID > 0)
{
// Does PC need to kill any more of this enemy for this quest?
int iCheckQuest;
for(iCheckQuest = 1; iCheckQuest <= 5; iCheckQuest++)
{
// Does the target ID match this NPC's ID?
if(GetLocalArrayInt(oDatabase, "QST_" + IntToString(iQuestID) + "_KILL_ENEMIES_ID", iCheckQuest) == iNPCID)
{
string sQuestName = GetLocalString(oDatabase, "QST_" + IntToString(iQuestID) + "_QUEST_NAME");
int iKillCount = GetLocalArrayInt(oDatabase, "QST_" + IntToString(iQuestID) + "_KILL_ENEMIES", iCheckQuest);
// Does the PC need to kill any more of this NPC group?
if(iKillCount > 0)
{
string sArrayVariable = "QST_" + IntToString(iQuestID) + "_KILL_ENEMIES";
iKillCount--;
if(iKillCount < 0) iKillCount = 0;
SetLocalArrayInt(oDatabase, sArrayVariable, iCheckQuest, iKillCount);
// Send targets remaining message if more need to be killed
if(iKillCount > 0 || GetLocalArrayInt(oDatabase, sArrayVariable, 2) > 0 || GetLocalArrayInt(oDatabase, sArrayVariable, 3) > 0 || GetLocalArrayInt(oDatabase, sArrayVariable, 4) > 0 || GetLocalArrayInt(oDatabase, sArrayVariable, 5) > 0)
{
SendMessageToPC(oMember, ColorTokenGray() + "'" + sQuestName + "' Targets Remaining: " + IntToString(iKillCount) + ColorTokenEnd());
}
// Otherwise update quest status
else
{
string sSQL = "SELECT Journal, Finish_State FROM " + "`" + QST_SCHEMA_NAME + "`.`" + QST_TABLE_NAME + "`" + " WHERE ID=" + IntToString(iQuestID);
SQLExecDirect(sSQL);
if(SQLFetch() == SQL_SUCCESS)
{
string sJournal = SQLGetData(1);
int iFinishState = StringToInt(SQLGetData(2));
AddPersistentJournalQuestEntry(sJournal, iFinishState, oMember, FALSE, FALSE, FALSE);
}
}
}
}
}
iQuestAssociation++;
iQuestID = GetLocalInt(OBJECT_SELF, "QST_NPC_QUEST_" + IntToString(iQuestAssociation));
}
}
}
void QST_DoKillTarget()
{
object oPC = GetLastKiller();
// Only fires when PCs kill this creature
if(!GetIsPC(oPC)) return;
object oArea = GetArea(oPC);
// Progress quest for killer
QST_PrivateProgressKillQuest(oPC, oPC, oArea);
// Now progress quest for all of killer's party members.
object oMember = GetFirstFactionMember(oPC, TRUE);
while(GetIsObjectValid(oMember))
{
if(oMember != oPC)
{
QST_PrivateProgressKillQuest(oPC, oMember, oArea);
}
oMember = GetNextFactionMember(oPC, TRUE);
}
}
void QST_DoGetQuest(object oPC)
{
int iQuestID = GetLocalInt(OBJECT_SELF, "QST_ID_NUMBER");
string sMessage = GetLocalString(OBJECT_SELF, "QST_MESSAGE");
// PC hasn't completed this quest yet
if(!QST_HasQuestBeenCompleted(oPC, iQuestID))
{
QST_AcceptQuest(oPC, iQuestID);
if(sMessage != "")
{
SendMessageToPC(oPC, sMessage);
}
}
}
////////////////////////////
// CONVERSATION FUNCTIONS //
////////////////////////////
void QST_ConversationActionsTakenAcceptQuest(int iNPCQuest)
{
object oNPC = OBJECT_SELF;
object oPC = GetPCSpeaker();
int iQuestID = GetLocalInt(oNPC, "QST_QUEST_TAG" + IntToString(iNPCQuest));
int bRepeat = QST_HasQuestBeenCompleted(oPC, iQuestID);
QST_AcceptQuest(oPC, iQuestID);
}
void QST_ConversationActionsTakenGiveRewards(int iNPCQuest, string sReward = "")
{
object oNPC = OBJECT_SELF;
object oPC = GetPCSpeaker();
int iQuestID = GetLocalInt(oNPC, "QST_QUEST_TAG" + IntToString(iNPCQuest));
int bRepeat = QST_HasQuestBeenCompleted(oPC, iQuestID);
QST_CompleteQuest(oPC, iQuestID, sReward, bRepeat);
}
int QST_ConversationAppearsWhenQuestNotStarted(int iNPCQuest)
{
object oNPC = OBJECT_SELF;
object oPC = GetPCSpeaker();
int iQuestID = GetLocalInt(oNPC, "QST_QUEST_TAG" + IntToString(iNPCQuest));
string sSQL = "SELECT Journal, Repeatable FROM " + "`" + QST_SCHEMA_NAME + "`.`" + QST_TABLE_NAME + "`" + " WHERE ID=" + IntToString(iQuestID);
SQLExecDirect(sSQL);
if(SQLFetch() == SQL_SUCCESS)
{
string sJournal = SQLGetData(1);
int bRepeatable = StringToInt(SQLGetData(2));
// Quest hasn't been started - display node
if(RetrieveQuestState(sJournal, oPC) == 0)
{
int bBeenCompleted = QST_HasQuestBeenCompleted(oPC, iQuestID);
if(bBeenCompleted && bRepeatable || !bBeenCompleted) return TRUE;
}
}
return FALSE;
}
int QST_ConversationAppearsWhenObjectivesComplete(int iNPCQuest)
{
object oNPC = OBJECT_SELF;
object oPC = GetPCSpeaker();
int iQuestID = GetLocalInt(oNPC, "QST_QUEST_TAG" + IntToString(iNPCQuest));
string sSQL = "SELECT Journal, Repeatable, Finish_State FROM " + "`" + QST_SCHEMA_NAME + "`.`" + QST_TABLE_NAME + "`" + " WHERE ID=" + IntToString(iQuestID);
SQLExecDirect(sSQL);
if(SQLFetch() == SQL_SUCCESS)
{
string sJournal = SQLGetData(1);
int bRepeatable = StringToInt(SQLGetData(2));
int iFinishState = StringToInt(SQLGetData(3));
// PC is on the finish state or quest is repeatable and it's been completed at least once before
if(RetrieveQuestState(sJournal, oPC) == iFinishState || bRepeatable && QST_HasQuestBeenCompleted(oPC, iQuestID)) return TRUE;
}
return FALSE;
}
int QST_ConversationAppearsWhenPrerequisitesMet(int iNPCQuest)
{
object oNPC = OBJECT_SELF;
object oPC = GetPCSpeaker();
int iQuestID = GetLocalInt(oNPC, "QST_QUEST_TAG" + IntToString(iNPCQuest));
string sSQL = "SELECT Repeatable, Fame_Region, Fame_Required, Prerequisite_1, Prerequisite_2, Prerequisite_3, Prerequisite_4, Prerequisite_5, Max_Level, Min_Level FROM " + "`" + QST_SCHEMA_NAME + "`.`" + QST_TABLE_NAME + "`" + " WHERE ID=" + IntToString(iQuestID);
SQLExecDirect(sSQL);
if(SQLFetch() == SQL_SUCCESS)
{
int bRepeatable = StringToInt(SQLGetData(1));
// Quest has already been completed and it's not repeatable or the quest ID is invalid, return FALSE
if(QST_HasQuestBeenCompleted(oPC, iQuestID) && !bRepeatable || iQuestID <= 0) return FALSE;
// Quest Information
int iFameRegion = StringToInt(SQLGetData(2));
int iFameRequired = StringToInt(SQLGetData(3));
int iPrereq1 = StringToInt(SQLGetData(4));
int iPrereq2 = StringToInt(SQLGetData(5));
int iPrereq3 = StringToInt(SQLGetData(6));
int iPrereq4 = StringToInt(SQLGetData(7));
int iPrereq5 = StringToInt(SQLGetData(8));
int iMaxLevel = StringToInt(SQLGetData(9));
int iMinLevel = StringToInt(SQLGetData(10));
// PC Information
int iLevel = ADV_GetLevel(oPC);
// Missing required fame amount - return FALSE
if(QST_GetFameLevel(oPC, iFameRegion) < iFameRequired) return FALSE;
// Outside level range - return FALSE
if(iLevel > iMaxLevel && iMaxLevel > 0 || iLevel < iMinLevel && iMinLevel > 0) return FALSE;
// Missing a prereq - return FALSE
if(iPrereq1 > 0 && !QST_HasQuestBeenCompleted(oPC, iPrereq1) || iPrereq2 > 0 && !QST_HasQuestBeenCompleted(oPC, iPrereq2) || iPrereq3 > 0 && !QST_HasQuestBeenCompleted(oPC, iPrereq3) || iPrereq4 > 0 && !QST_HasQuestBeenCompleted(oPC, iPrereq4) || iPrereq5 > 0 && !QST_HasQuestBeenCompleted(oPC, iPrereq5))
{
return FALSE;
}
else return TRUE;
}
else return FALSE;
}
int QST_ConversationAppearsWhenQuestRepeatable(int iNPCQuest)
{
object oNPC = OBJECT_SELF;
object oPC = GetPCSpeaker();
int iQuestID = GetLocalInt(oNPC, "QST_QUEST_TAG" + IntToString(iNPCQuest));
int bRepeatable = StringToInt(GetMySQLData("`" + QST_SCHEMA_NAME + "`.`" + QST_TABLE_NAME + "`", "Repeatable", iQuestID, "ID"));
// Check to see if quest is repeatable and PC has done it at least once before
if(QST_HasQuestBeenCompleted(oPC, iQuestID) && bRepeatable) return TRUE;
return FALSE;
}
int QST_ConversationAppearsWhenQuestStarted(int iNPCQuest)
{
object oNPC = OBJECT_SELF;
object oPC = GetPCSpeaker();
int iQuestID = GetLocalInt(oNPC, "QST_QUEST_TAG" + IntToString(iNPCQuest));
string sJournal = GetMySQLData("`" + QST_SCHEMA_NAME + "`.`" + QST_TABLE_NAME + "`", "Journal", iQuestID, "ID");
// Check to see if PC has started a quest but hasn't completed it yet
if(RetrieveQuestState(sJournal, oPC) > 0 && !QST_HasQuestBeenCompleted(oPC, iQuestID)) return TRUE;
return FALSE;
}
int QST_ConversationAppearsWhenQuestItemsFound(int iNPCQuest)
{
object oPC = GetPCSpeaker();
object oNPC = OBJECT_SELF;
int iQuestID = GetLocalInt(oNPC, "QST_QUEST_TAG" + IntToString(iNPCQuest));
string sSQL = "SELECT Required_Item_1, Required_Item_Qty_1, Required_Item_2, Required_Item_Qty_2, Required_Item_3, Required_Item_Qty_3, Required_Item_4, Required_Item_Qty_4, Required_Item_5, Required_Item_Qty_5, Required_Key_Item_1, Required_Key_Item_2, Required_Key_Item_3, Required_Key_Item_4, Required_Key_Item_5 FROM " + "`" + QST_SCHEMA_NAME + "`.`" + QST_TABLE_NAME + "`" + " WHERE ID=" + IntToString(iQuestID);
SQLExecDirect(sSQL);
if(SQLFetch() == SQL_SUCCESS)
{
string sRequiredItem1 = SQLGetData(1);
int iRequiredItemQty1 = StringToInt(SQLGetData(2));
string sRequiredItem2 = SQLGetData(3);
int iRequiredItemQty2 = StringToInt(SQLGetData(4));
string sRequiredItem3 = SQLGetData(5);
int iRequiredItemQty3 = StringToInt(SQLGetData(6));
string sRequiredItem4 = SQLGetData(7);
int iRequiredItemQty4 = StringToInt(SQLGetData(8));
string sRequiredItem5 = SQLGetData(9);
int iRequiredItemQty5 = StringToInt(SQLGetData(10));
int iRequiredKeyItem1 = StringToInt(SQLGetData(11));
int iRequiredKeyItem2 = StringToInt(SQLGetData(12));
int iRequiredKeyItem3 = StringToInt(SQLGetData(13));
int iRequiredKeyItem4 = StringToInt(SQLGetData(14));
int iRequiredKeyItem5 = StringToInt(SQLGetData(15));
return QST_CheckForQuestItems(oPC, iQuestID, iRequiredKeyItem1, iRequiredKeyItem2, iRequiredKeyItem3, iRequiredKeyItem4, iRequiredKeyItem5, sRequiredItem1, iRequiredItemQty1, sRequiredItem2, iRequiredItemQty2, sRequiredItem3, iRequiredItemQty3, sRequiredItem4, iRequiredItemQty4, sRequiredItem5, iRequiredItemQty5);
}
return FALSE;
}
int QST_ConversationAppearsWhenTalkToNPC(int iNPCQuest)
{
object oNPC = OBJECT_SELF;
object oPC = GetPCSpeaker();
int iQuestID = GetLocalInt(oNPC, "QST_QUEST_TAG" + IntToString(iNPCQuest));
int iCurrentState = GetLocalInt(oNPC, "QST_QUEST_TAG" + IntToString(iNPCQuest) + "_CURRENT_STATE_TALKTO");
int iNextState = GetLocalInt(oNPC, "QST_QUEST_TAG" + IntToString(iNPCQuest) + "_NEXT_STATE_TALKTO");
int bRepeat = QST_HasQuestBeenCompleted(oPC, iQuestID);
string sJournal = GetMySQLData("`" + QST_SCHEMA_NAME + "`.`" + QST_TABLE_NAME + "`", "Journal", iQuestID, "ID");
int iPCState = RetrieveQuestState(sJournal, oPC);
// Return FALSE if quest designer messed something up
if(iQuestID == 0 || iCurrentState == 0 || iNextState == 0 || iPCState == 0) return FALSE;
// Return TRUE only when PC is on the proper state
if(iPCState == iCurrentState) return TRUE;
// Otherwise return FALSE
return FALSE;
}
void QST_ConversationActionsTakenTalkToNPC(int iNPCQuest)
{
object oNPC = OBJECT_SELF;
object oPC = GetPCSpeaker();
int iQuestID = GetLocalInt(oNPC, "QST_QUEST_TAG" + IntToString(iNPCQuest));
int iCurrentState = GetLocalInt(oNPC, "QST_QUEST_TAG" + IntToString(iNPCQuest) + "_CURRENT_STATE_TALKTO");
int iNextState = GetLocalInt(oNPC, "QST_QUEST_TAG" + IntToString(iNPCQuest) + "_NEXT_STATE_TALKTO");
int bRepeat = QST_HasQuestBeenCompleted(oPC, iQuestID);
string sJournal = GetMySQLData("`" + QST_SCHEMA_NAME + "`.`" + QST_TABLE_NAME + "`", "Journal", iQuestID, "ID");
int iPCState = RetrieveQuestState(sJournal, oPC);
// States must match
if(iPCState == iCurrentState)
{
AddPersistentJournalQuestEntry(sJournal, iNextState, oPC, FALSE, FALSE, FALSE);
}
}
int QST_ConversationAppearsWhenPCOnState(int iNPCQuest)
{
object oNPC = OBJECT_SELF;
object oPC = GetPCSpeaker();
int iQuestID = GetLocalInt(oNPC, "QST_QUEST_TAG" + IntToString(iNPCQuest));
int iCurrentState = GetLocalInt(oNPC, "QST_QUEST_TAG" + IntToString(iNPCQuest) + "_CURRENT_STATE_NODE");
//int iNextState = GetLocalInt(oNPC, "QST_QUEST_TAG" + IntToString(iNPCQuest) + "_NEXT_STATE");
int bRepeat = QST_HasQuestBeenCompleted(oPC, iQuestID);
string sJournal = GetMySQLData("`" + QST_SCHEMA_NAME + "`.`" + QST_TABLE_NAME + "`", "Journal", iQuestID, "ID");
int iPCState = RetrieveQuestState(sJournal, oPC);
// Return FALSE if quest designer messed something up
if(iQuestID == 0 || iCurrentState == 0 || iPCState == 0) return FALSE;
// Return TRUE only when PC is on the proper state
if(iPCState == iCurrentState) return TRUE;
// Otherwise return FALSE
return FALSE;
}
int QST_ConversationAppearsWhenQuestComplete(int iNPCQuest)
{
object oNPC = OBJECT_SELF;
object oPC = GetPCSpeaker();
int iQuestID = GetLocalInt(oNPC, "QST_QUEST_TAG" + IntToString(iNPCQuest));
return QST_HasQuestBeenCompleted(oPC, iQuestID);
}
// Error checking
//void main(){}