GMHall.lua 448 B

12345678910111213141516
  1. --[[
  2. Script Name : ZoneScripts/GMHall.lua
  3. Script Purpose : Announce locations
  4. Script Author : John Adams * TyroneSWG
  5. Script Date : 2009.05.07 * 2019.01.15
  6. Script Notes : GMHall General Script
  7. --]]
  8. function init_zone_script(Zone)
  9. SetLocationProximityFunction(Zone, 670, -36, 1490, 50, "GMHall_InRange")
  10. end
  11. function GMHall_InRange(Zone, Player)
  12. SendPopUpMessage(Player, "Welcome to the Game Masters' Hall", 244, 66, 134)
  13. end