I was forgetting one last thing:
How can I make story messages appear as radio messages (like when papabear speaks to me)?
put in the on activ of the trigger or waypoint:
[west, "HQ"] sidechat "INSERT YOUR TEXT HERE"
if you want to have something again after and want a time dely, create another trigger with, let's say, talk1 as the condition. then after the first sidechat put
talk1=true
so it look like this in the on activ of the first trigger:
[west, "HQ"] sidechat "INSERT YOUR TEXT HERE"; talk1=true
then put the player's reply or whatever in the on acitv field of the second trigger:
p sidechat "INSERT TEXT"
now, on that trigger, select 'timeout' and in the boxes put the amount of seconds for the delay - let's say 5.
so now, HQ will say something then 5 secs later the player will respond.