Question: How do I trigger at another spot in the map?
I know i would use a trigger multiple where i wanted to activate it but do i just need the trigger to call for that $player stufftext.....somehow??
Moderator: Moderators
just call a thread from the trigger multiple :hogleg wrote:I've got this at the start of my SP map, ( $player stufftext "tmstart sound/music/mus_04f_suspense.mp3" ).
Question: How do I trigger at another spot in the map?
I know i would use a trigger multiple where i wanted to activate it but do i just need the trigger to call for that $player stufftext.....somehow??
Code: Select all
thead_called:
local.p = parm.other
local.p stufftext "w/e"
end
Code: Select all
thread music 1
music1:
$player stufftext "tmstart sound/music/mus_10a_action.mp3"
end
Code: Select all
thread music 1
music1:
$player stufftext "tmstart sound/music/mus_02f_suspence.mp3"
Code: Select all
music1:
$player stufftext "tmstart sound/music/mus_02f_suspence.mp3"
endNo wonder it didn't work. Can't you guys spell 'suspense'?Code: Select all
music1: $player stufftext "tmstart sound/music/mus_02f_suspence.mp3" end