Ok I need to build a script. The idea is to have a creature (a deer) spawn at a specific hour and go in a specific location.(a bit like the ghost quest near Bravil)
For the going part I will use a specific AI package that make a creature "wander" to a specific location.
Now for spawning script: here is the way I've done. Does it sound "solid" to you? or is there a simpler way
Float gamehourIfGetStageDone DeerCaller 20 == 0 (DeerCaller is the name of the Quest so I can have the spawning stopped when the Quest is fullfilded) If Gamehour >0 and gamehour < 5 (Note that the spawning happens between 0am and 5am) Enable MADeerGhost MADeerGhost Moveto StartingPointRef (StartingPointRef is an X marker) Endif ElseIf Gameday > 5 Move MADeerGhost to StoragePlaceRef (StoragePlaceRef is an X marker in a unused cell) Disable MaDeerGhost EndifEndifIfGetStageDone DeerCaller 20 == 1 MADeerGhost Moveto StoragePlaceRef (StoragePlaceRef is an X marker in a unused cell) Disable MaDeerGhostEndif
Thanks for your help guys.