4
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

12 lines
346 B

Scriptname _00E_StartConversationPackageScript extends Package
GlobalVariable Property NextPackageGlobal Auto
GlobalVariable Property GameDaysPassed Auto
Function UpdateNextPackageGlobal()
Float nextTime = GameDaysPassed.GetValue() + 1.0
If nextTime > NextPackageGlobal.GetValue()
NextPackageGlobal.SetValue(nextTime)
EndIf
EndFunction