Sentry Tank Prefab V1
Create endless sentry tanks without hassle
A prefab for easily including sentry tanks in your mvm map.
Entities have comments explaining things.
The overall setup is rather simple, just align the included path_track to the starting path in your map. The rest should work automatically as long as the popfile uses the correct names.
You can have as many sentry tanks spawned at the same as you want. Given that there's some time between spawns so that they dont end up stacked.
Feel free to customize the things as much as you want. No credit required.
Entities have comments explaining things.
The overall setup is rather simple, just align the included path_track to the starting path in your map. The rest should work automatically as long as the popfile uses the correct names.
You can have as many sentry tanks spawned at the same as you want. Given that there's some time between spawns so that they dont end up stacked.
Code:
WaveSpawn //WAVE 01tank: [SENTRY TANK]
{
Name "wave01tank"
TotalCount 1
WaitBeforeStarting 15
TotalCurrency 100
FirstSpawnOutput
{
Target boss_spawn_relay_sentrytank //REQUIRED
Action Trigger
}
Tank
{
Health 12500 //choose desired health
Speed 75 //choose desired speed
Name "tankboss_sentrytank" //REQUIRED
StartingPathTrackNode "tank_path_sentrytank" //REQUIRED
OnKilledOutput
{
Target boss_dead_relay
Action Trigger
}
OnBombDroppedOutput
{
Target boss_deploy_relay
Action Trigger
}
}
}
Feel free to customize the things as much as you want. No credit required.