Quest Types
If you need to work with the quest types in the Quest Types Editor window, you can get each quest type with the QT class.
Getting all Quest Types
var questTypes = QT.GetAllQuestTypes();
Getting a Single Quest Type
By Name
var questType = QT.GetQuestType("My Quest Type Name");
By ID
var questType = QT.GetQuestType(0);
Last updated