• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

Game Message?

Status
Not open for further replies.
Level 9
Joined
Apr 3, 2008
Messages
700
Ahh! You mean that error messages!
Well.
For example, there is an action in advanced WEU functions, smth lihe "Show Error message."
And, you can make it without that advanced, just color text and play the sound to local player.
 
Level 9
Joined
Apr 3, 2008
Messages
700
This must work. Just change sounds and text to that ones you need.

JASS:
function Trig_Melee_Initialization_Actions takes nothing returns nothing
    if ( GetTriggerPlayer() == GetLocalPlayer() ) then
        call PlaySoundBJ( gg_snd_WyvernCageDeath1 )
        call DisplayTimedTextToForce( GetPlayersAll(), 30, "***" )
    endif
endfunction
 
Status
Not open for further replies.
Top