TheDisconcertingMeditation.lua 711 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : ZoneScripts/TheDisconcertingMeditation.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.11.21 03:11:31
  5. Script Purpose :
  6. :
  7. --]]
  8. function init_zone_script(Zone)
  9. end
  10. function player_entry(Zone, Player)
  11. EnterMessage(Zone,Player)
  12. SpawnSet(Player,"visual_state",496)
  13. end
  14. function EnterMessage(Zone,Player)
  15. SendMessage(Player, "You feel that the meditation will only last a short time. You must hurry!","yellow")
  16. SendPopUpMessage(Player, "You feel that the meditation will only last a short time. You must hurry!",250,250,250)
  17. PlaySound(Player,"sounds/ui/ui_warning.wav", GetX(Player), GetY(Player), GetZ(Player))
  18. end