Hello,
After reading the XML tutorial made by Milva, I wanted to try the proximity message feature in the XML spawners. How exactly can I get this feature to work so that when a player enters that set area they get a message?
I put my message in the ProximityMSG box and nothing happens.
Thank you in advance.
There are several ways to accomplish this, but firstly let us make sure that your Props are correct:
If a player is triggering the Xmlspawner by Proximity set the ProximityRange to the farthest tile away from the Home point as you want players to be to trigger it. (it becomes a square with whatever value you enter. if ProximityRange is 4, that is 4 tiles away from the Xmlspawner on all 4 sides.)
Next is the SpawnOnTrigger and Min/Max Delay props:
SpawnOnTrigger means as soon as the player reaches the farthest tile you set the ProximityRange to, it is triggered. This does not mean something spawns though, because then the timer starts for the Min/Max Delays.
Next is setting the Max/Min Delays.
The time used here is the time it takes the Xmlspawner to spawn *after* SpawnOnTrigger. Player reaches the farthest tile, the Xmlspawner is triggered with a Min Delay of 1 minute and a Max Delay of 3 minutes. Sometime in between 1 minute and 3 minutes, the first spawn entry will spawn.
If you use a Sequential spawn on top of that, the time in Min/Max Delay is the time between spawn entries then.
If you want something to spawn immediately, zero the time for Min/Max Delay and use SpawnOnTrigger.
Hope that helps!
(Pm for most support if you like.
)