This is what I use
Code:
tText = "Yellow wpt5"; {tText = tText + "\n" + (name _x);} forEach thisList; hint tText;
Set trigger to bluefor present
on Act: put the above code. You can change Yellow wpt5 to whatever you want. That will be the hint. In this case it says the yellow wpt5 then the name of player, that is in the trigger. If you want to reverse that and say "player name" "Yellow wpt5" you would change it to this
Code:
tText = "Yellow wpt5"; {"\n" + (name _x) + tText = tText + "\n";} forEach thisList; hint tText;
I think thats right anyway. I know the first one works. We use it in our training map.