Classes

Concepts

Libraries

Objects

contractor »

conversationAnswerData »

engineStatData »

issueData »

playerPlatformSpecialistData »

projectReviewConclusion »

projectReviewRemark »

randomEventData »

statusIcon »

onStartSpooling

Description

Called when the text starts spooling. Abstract.

Arguments

1 dialogue object

the dialogue object.

Example

dialogueHandler.registerQuestion({
	id = "developer_rival_studio_steal_attempt",
	text = _T("DEVELOPER_RIVAL_STUDIO_STEAL_ATTEMPT_1", "Hey boss, I'm leaving the studio."),
	answers = {"developer_rival_studio_steal_attempt_proceed", "developer_rival_studio_steal_attempt_farewell"},
	
	onStartSpooling = function(self, dialogueObject)
		dialogueHandler:createSkillChangeDisplay(dialogueObject, true)
	end
})