When making the video tutorial I found under the ORKGiveExpQuestAction.cs script line 90 the order of the parameters are wrong
Code: Select all
statusValue.AddValue(value, false, false, true, false, ignoreLimit, ignoreBarrier, showFlyingText, new StatusValueChangeSource(null, combatant));
Code: Select all
statusValue.AddValue(value, false, false, false, ignoreLimit, ignoreBarrier, showFlyingText, false, new StatusValueChangeSource(null, combatant));
Code: Select all
statusValue.AddValue(
addValue:value,
isCritical: false,
checkDeath: false,
checkLevelUp: false,
ignoreLimit: ignoreLimit,
ignoreBarrier: ignoreBarrier,
showFlyingText: showFlyingText,
showConsole: false,
source: new StatusValueChangeSource(null, combatant));
Best regards