• 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!

[General] How can I use this?

Status
Not open for further replies.
Level 4
Joined
Aug 15, 2010
Messages
53
Hi, I need new loading screen but..

How can I create Custom Loading Screen of this versiyon?

attachment.php


I need some help.

And second question;

How can I use triggers to write private message for player?
 

Attachments

  • Load Screen.jpg
    Load Screen.jpg
    339.5 KB · Views: 232
Level 16
Joined
Mar 27, 2011
Messages
1,349
How can I create Custom Loading Screen of this versiyon?

Not sure. You use a special .mdx file for a loading screen which displays a blank picture. No idea how to maintain the player's loading status with a custom background though.

This tutorial explains how to implement basic backgrounds:
http://world-editor-tutorials.thehelper.net/loadscreen.php

2.) This will send a message to player 1 (red) only:

  • Game - Display to (Player group(Player 1 (Red))) for 30.00 seconds the text: Hello World
 
Level 4
Joined
Aug 15, 2010
Messages
53
Loading screen with Loading Progress of Players tutorial

2. I don't think it is possible to trigger a chat.

Thx for Load Screen. I'll try.

Not sure. You use a special .mdx file for a loading screen which displays a blank picture. No idea how to maintain the player's loading status with a custom background though.

This tutorial explains how to implement basic backgrounds:
http://world-editor-tutorials.thehelper.net/loadscreen.php

2.) This will send a message to player 1 (red) only:

  • Game - Display to (Player group(Player 1 (Red))) for 30.00 seconds the text: Hello World

I need Private Message Trigger. Computer to Player. :p

for example;

<w> Computer 01: Hi there!
 
Level 16
Joined
Mar 27, 2011
Messages
1,349
I suppose if every player wasn't allied, nobody would hear their message. Your trigger could then pass that message to the specified player using substrings. You could make other triggers to simulate an alliance with other players. "Allies" could be neutral with shared vision to prevent auto attacking. Experience and what not could to triggered to be shared, etc, etc.

Suppose it could work. Maybe there's another solution? I know players can already privately message if they're playing online but LAN and single player won't have this functionality.
 
Level 4
Joined
Aug 15, 2010
Messages
53
Player 01: Hi all. I need some Gold. (First -Hi- and second -gold- triggers. Private or all chat)

- Computer 02: Hi, Player 01. How much do you need? (See all players but Written by computer so that it will appear.)

or...

I understand. I think I'll try other ideas. thanks :)
 
Level 24
Joined
Aug 1, 2013
Messages
4,658
there is one already in Spells section.

nope, nope, nope and nope.
Can you post link edo which you meant?

I am thinking about using
"/<playernumber> <my message to that player>" to send to a player.
"/all <my message to everyone>" to send to everyone.
no '/' at start to send to allies.
where '/' can be modified and where that one also excludes itself from chat for console commands.
Think that it's gonna be fun.
 
Level 11
Joined
Jan 23, 2015
Messages
788
How can I use triggers to write private message for player?

  • PM
    • Events
      • Player - Player 1 (Red) types a chat message containing -pm as A substring
      • Player - Player 2 (Blue) types a chat message containing -pm as A substring
      • Player - Player 3 (Teal) types a chat message containing -pm as A substring
      • Player - Player 4 (Purple) types a chat message containing -pm as A substring
    • Conditions
    • Actions
      • Set TempPMNumber = (Integer((Substring((Entered chat string), 4, 5))))
      • Set TempPrivateMessage = (Substring((Entered chat string), 6, 200))
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • TempPMNumber Not equal to (Player number of (Triggering player))
        • Then - Actions
          • Game - Display to (Player group((Player(TempPMNumber)))) the text: ((Name of (Triggering player)) + (: + TempPrivateMessage))
        • Else - Actions
          • Game - Display to (Player group((Triggering player))) the text: You cannot send yourself a private message. :)
here you go.. the first variable is an integer variable, while the second one is a string variable, the first one determines the number of the player about to get the message (e.g. -pm 2 [message]), while the second variable determines the message about to be sent
you can either do it with a number or the player name (e.g. -pm wietlol hey buddy) (pm me if you dont know how to do it with the player name) ;)
 
Status
Not open for further replies.
Top