Im trying to get exactly how the tank works in goldrush and there are some stuff that facinates me :bash:
-
In the .map, the tank starts off being 90 degrees off it’s starting position. At spawn we move it to the first spline. How does it know what end of the tank is the front so it can follow the spline correctly?? Am I missing an entity or key?
-
This is the script for the trigger_multiple around the tank
tank_trigger
{
spawn
{
wait 500attachtotag tank_shell tag_turret trigger tank_trigger bot_goal_loop}
trigger bot_goal_loop
{
wait 4000 // check every 4 seconds
trigger tank bot_active_check
trigger tank_trigger bot_goal_loop
}
}
notice it calls “tank bot_active_check” but there is no such trigger defined in the script. So what happens in bot_active_check and does it relate to the tank_enabler?
- In the command “followspline 0 spln1 50000 length 32 wait” what does “lenght 32” do and could I need to change it?
Thanks a lot!