8 lines
222 B
GDScript
8 lines
222 B
GDScript
extends NpcScript
|
|
|
|
#
|
|
func OnAreaEnter(player : PlayerAgent):
|
|
if player and not player.ownScript:
|
|
if player.progress.GetQuest(ProgressCommons.Quest.TUTORIAL) == ProgressCommons.TUTORIAL.INACTIVE:
|
|
own.Interact(player)
|