YaCharacterQuest¶
Beta
YaCharacterQuest
is a handle for quest API. You can add, remove, and edit quests with it.Functions¶
boolean IsValid()Beta
Returns true if the struct is valid.
boolean TryAddQuest(number questID, number requesterID)Beta
Adds a quest to the current character from the requester.
questID
The unique identifier of the questrequesterID
The unique identifier of the requester
boolean ContainsQuest(number questID, number requesterID)Beta
Returns true if the current character contains requestID from the requester.
questID
The unique identifier of the questrequesterID
The entityID of the requester
boolean RemoveQuest(number questID, number requesterID)Beta
Removes a quest from the request from the current character.
questID
The unique identifier for the questrequesterID
The entityID of the request
void ClearQuest()Beta
Removes all quests on the current character.
YaQuestProgress UpdateQuestProgress(number questID, number requesterID, number targetID, [number count])Beta
Updates the progress of the quest on the current character.
questID
The unique identifier for the questrequesterID
The entityID of the requestertargetID
The quest to updatecount
The progress to update
Gets the progress of a quest for the current character.
questID
The unique identifier for the questrequesterID
The entityID of the requester
boolean IsQuestCompleted(number questID, number requesterID)Beta
Returns true if the quest from the requester is finished.
questID
The unique identifier for the questrequesterID
The entityID of the requester
boolean TryAddCompletedQuest(number questID, number requesterID)Beta
Records the finished quest from the requester for the current character.
questID
The unique identifier for the questrequesterID
The entityID of the requester
boolean ContainsCompletedQuest(number questID, number requesterID)Beta
Returns true if the quest from the requester is finished.
questID
The unique identifier for the questrequesterID
The entityID of the requester
boolean ContainsCompletedQuestByAny(number questID)Beta
Returns true if the quest from the requester is finished.
questID
The unique identifier for the quest
boolean RemoveCompletedQuest(number questID, number requesterID)Beta
Removes the finished quest from the requester for the current character.
questID
The unique identifier of the questrequesterID
The entityID of the requester
Events¶
Fired when new unfinished quests are added.
Fired when the unfinished quest makes progress.
Fired when the quest is finished.