Features for multis and addons
Posted: Sat Jul 31, 2021 10:39 pm
Looking at camps to spawn but at this moment we do not have any js functions or scriptable to do so.
Like to see a new js function
onSpawnMulti this function would trigger if spawner was placed as a multi example
this all would add more functions to build on
We also need to look at expanding spawners to beable to spawn house addons and multis.
Like to see a new js function
onSpawnMulti this function would trigger if spawner was placed as a multi example
onSpawnMulti( iused, npc, pc )
{
we can then spawn items and npcs inside this function.
}
{
we can then spawn items and npcs inside this function.
}
onSpawnItem(iused ,pc)
{
we can only spawn items with this function
}
{
we can only spawn items with this function
}
onSpawnNPC(npc,pc)
{
we can only use this to spawn npcs
}
{
we can only use this to spawn npcs
}
onSpawnContainer(iused,pc)
{
we can use this to do something with spawn containers only
}
{
we can use this to do something with spawn containers only
}
We also need to look at expanding spawners to beable to spawn house addons and multis.