Spawn Points - KageDesu/Alpha-ABS-Z GitHub Wiki
⚠️ Information actual for version 0.8 and above
You can create and configurate spawn point that will be spawn enemies depends on own settings
By spawn point can be any Event (ABS enemies too)
⚡ You should have Spawn Map, see Enemy Spaning for more information.
Create Spawn Point
- Open Plugin Parameters -> Enemy settings group -> Spawn Points
- Create new Spawn Point, setup it and give unique ID
Add Spawn Point to Map (to any Event)
Add comment <absSpawnPoint:ID>
to Event page
Where:
ID
- Spawn Point ID from Plugin Parameters
⚠️ Spawn Point only works when Event on Page with comment.
Examples
⚠️ Examples you can find in Demo Project, map SpawnPoints (ID 37) 🗺️
Extra Script Calls
uAPI.getLastSpawnedEnemy();
- return last spawned Enemy (Game_Event object) or nulluAPI.getSpawnPointSpawnedEnemies(EVENT_ID);
- return all spawned Enemies (Game_Event objects array) by Spawn Point in Event with EVENT_IDuAPI.getSpawnPointSpawnedTotal(EVENT_ID);
- return spawned Enemies count (total)uAPI.getSpawnPointSpawnedAlive(EVENT_ID);
- return spawned alive (right now) Enemies count