[SOLVED] Payload card stopping after first checkpoint

NoobDancer100

L1: Registered
Sep 22, 2023
6
0
I am working on a simple payload map, and when trying to setup the track, the payload reaches the first checkpoint, then stops. I have setup the control points properly (they each have a unique index), and I am properly switching points (I am calling SetControlPoint on the trigger_capture_zone), and yet nothing is working.
 
Solution
None of the BLUE Previous Required 1 values are set. point_1 should point to itself, point_2 to point_1, point_3 to point_2, and point_4 to point_3.

NoobDancer100

L1: Registered
Sep 22, 2023
6
0
trigger_capture_area inputs:
1729800435820.png
 

Blade x64

Logical insanity
aa
Sep 3, 2009
264
646
If the payload stops moving, then the trigger_capture_zone is likely set to an non-capturable point. Ensure the following:

team_control_point entities have their BLUE Previous Required Point 1 set up correctly.
Each path_track used for capturing should:
  1. Send a CaptureCurrentCP to the trigger_capture_area
  2. Send SetOwner 3 to the related team_control_point (0.1 second delay)
 

NoobDancer100

L1: Registered
Sep 22, 2023
6
0
If the payload stops moving, then the trigger_capture_zone is likely set to an non-capturable point. Ensure the following:

team_control_point entities have their BLUE Previous Required Point 1 set up correctly.
Each path_track used for capturing should:
  1. Send a CaptureCurrentCP to the trigger_capture_area
  2. Send SetOwner 3 to the related team_control_point (0.1 second delay)
Unfortunatly, this did not work. The cart still gets stuck with this icon

1729810095653.png
 

NoobDancer100

L1: Registered
Sep 22, 2023
6
0
I used ABS's implementation (mostly) so I'm just really confused. I'm just practicing so here is my map file (don't judge the name, I decided to take the map in another direction):
 

Attachments

  • pl_station.vmf
    175.4 KB · Views: 22

Blade x64

Logical insanity
aa
Sep 3, 2009
264
646
None of the BLUE Previous Required 1 values are set. point_1 should point to itself, point_2 to point_1, point_3 to point_2, and point_4 to point_3.
 
Solution

NoobDancer100

L1: Registered
Sep 22, 2023
6
0
None of the BLUE Previous Required 1 values are set. point_1 should point to itself, point_2 to point_1, point_3 to point_2, and point_4 to point_3.
I completely forgot about that setting , I even remember seeing it when I was first getting started and thinking that it seems important and I shouldn't forget about it"