HomeUser Control Panel (unavailable in archive)ForumsTutorialsArt GalleryResourcesMaps

display text to one player

03-02-2004, 06:22 PM#1
macotee-east
how can i display a text message to only one player. i want something where a unit goes in an area and it sends the player who owns the unit a message, but for some reason i can't figure out the simple way to do this.

I know this is the wrong place for this, but is there any good place to find someone who will draw a loading screen??
03-02-2004, 06:47 PM#2
AoH
If you want a message:

Events- Unit - A unit enters "rect name"
Conditions- (none)
Actions- Game - (text message) Displayt to owner of entering unit the text: "your text"

and if you want a loadingscreen...(or anything else)
ask in the request section
03-02-2004, 07:28 PM#3
RaeVanMorlock
You forgot about the player conversion...

Code:
Untitled Trigger 003
    Events
        Unit - A unit enters Region001 <gen>
    Conditions
    Actions
        Game - Display to (Player group((Owner of (Entering unit)))) the text: Hi!
03-03-2004, 12:25 AM#4
macotee-east
Quote:
Originally Posted by RaeVanMorlock
You forgot about the player conversion...

Code:
Untitled Trigger 003
    Events
        Unit - A unit enters Region001 <gen>
    Conditions
    Actions
        Game - Display to (Player group((Owner of (Entering unit)))) the text: Hi!

thank you RaeVanMorlock!!