Hey gents, I'm working on some Coast Guard missions and I have one part in which you take an HH65 to pick up some supplies and fly them to a remote mountain house. So I have a bunch of card board boxes next to the LZ. In a trigger covering the LZ, I have
West present
condition: (getpos plr select 2) < 1
activation: plr addAction ["Pick up supplies", "pickup.sqs"]
The script teleports the crates to the middle of a forest, and when you land at the dropoff LZ, I have a similar trigger that teleports them back right next to the helicopter, with the same condition (creating the effect that they had been on the helicopter).
So, naturally, I only want this action to be available when the chopper is on the ground. The problem, however, is that when I land at either LZ, BOTH actions show, even though they are separate triggers that cover only their respective LZs. For example, when I land for pickup both "Pick up supplies" and "Drop off supplies" appears in the action menu, though that trigger only covers the former. Even weirder, when I remove the condition, the action no longer shows up at all, which I can find positively no explanation to. Before I added the condition, the action would show up if I was hovering 50m above the town, and now, nothing. That may not be germane though.
Any way to reconcile this? Thanks a lot.