ScriptedInstance myCreature = GetSingleCreatureFromStorage("Creature_001"); myCreature.MoveTo(10, 10);
ScriptedInstance bossCreature = GetSingleCreatureFromStorage("Boss_001"); if (bossCreature.IsDead()) { // Respawn the boss creature bossCreature.Respawn(); }In this example, the GetSingleCreatureFromStorage function is used to retrieve the boss creature instance with the name "Boss_001". If this creature is found to be dead, the Respawn function is called to bring the boss creature back to life. The above examples demonstrate how the ScriptedInstance GetSingleCreatureFromStorage function can be used to retrieve and manipulate creature instances in a storage system. The package library in which this function resides is not specified in this description.