• 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.
  • 💡 We're thrilled to announce that our upcoming texturing contest is in the works, and we're eager to hear your suggestions! Please take this opportunity to share your ideas in this theme discussion thread for the Texturing Contest #34!
  • 🏆 Hive's 7th HD Modeling Contest: Icecrown Creature is now open! The frozen wastes of Icecrown are home to some of Azeroth’s most terrifying and resilient creatures. For this contest, your challenge is to design and model a HD 3D monster that embodies the cold, undead, and sinister essence of Icecrown! 📅 Submissions close on April 13, 2025. Don't miss this opportunity to let your creativity shine! Enter now and show us your frozen masterpiece! 🔗 Click here to enter!

Displaying Text

Status
Not open for further replies.
Level 18
Joined
Aug 23, 2008
Messages
2,319
Why don't you change a message you don't use anyway (like "Not enough lumber") to the message you want to show. Then you trigger that error and it'll display. Doesn't work with a lot of different texts to display. Make sure you import a dummy sound (sound track with no sound) to add to the error in the Game Interface, or you'll still hear the text speach of the original error.
 
Level 16
Joined
Jul 21, 2008
Messages
1,121
Try this:

  • Example
    • Events
      • -------- Add Events Here --------
    • Conditions
      • -------- Add Conditions Here --------
    • Actions
      • Set TempPlayerGroup = (Player group((Owner of (<Unit>))))
      • Cinematic - Clear the screen of text messages for (All players)
      • Set TempString = <Empty String>
      • For each (Integer A) from 1 to 60, do (Actions)
        • Loop - Actions
          • Set TempString = (TempString + )
      • Set TempString = (TempString + <Message>)
      • Game - Display to (All players) the text: TempString
      • Game - Display to (All players) the text:
      • Game - Display to (All players) the text:
      • Game - Display to (All players) the text:
      • Game - Display to (All players) the text:
      • Game - Display to (All players) the text:
      • Game - Display to (All players) the text:
      • Game - Display to (All players) the text:
      • Game - Display to (All players) the text:
      • Game - Display to (All players) the text:
      • Custom script: call DestroyForce(udg_TempPlayerGroup)
 
Last edited:
Status
Not open for further replies.
Top