- Joined
- Aug 15, 2010
- Messages
- 53
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
How can I create Custom Loading Screen of this versiyon?
Game - Display to (Player group(Player 1 (Red))) for 30.00 seconds the text: Hello World
Loading screen with Loading Progress of Players tutorial
2. I don't think it is possible to trigger a chat.
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
there is one already in Spells section.
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. :)
