Increased default IntervalTime in _00E_ShowTutorialMessage

This commit is contained in:
Eddoursul 2024-03-01 12:18:11 +01:00
parent 03631a7b54
commit 9243ea4083
2 changed files with 1 additions and 3 deletions

Binary file not shown.

View File

@ -1,6 +1,5 @@
Scriptname _00E_ShowTutorialMessage extends ObjectReference
Event OnTriggerEnter(ObjectReference akActionRef)
If akActionRef != PlayerREF
@ -35,7 +34,7 @@ Bool Property __Config_DisableWhenDone = True Auto
bool Done
int Property Duration = 5 Auto ;How long should the message be displayed
int Property IntervalTime = 1 Auto ;How much time should elapse between showings of the message
int Property IntervalTime = 30 Auto ;How much time should elapse between showings of the message
int Property HowManyTimesDisplayed = 1 Auto ;How often should the message be displayed in total
Message Property TutorialMessage Auto
@ -45,4 +44,3 @@ Actor Property PlayerREF Auto
GlobalVariable Property _00E_DisableTutorials Auto
String Property InputEventName Auto ; If available, specify and input event, such as "Jump" or "Attack". The message will disappear after sucessful execution of this event.