View Single Post
05/01/23, 11:29 AM   #9
sinnereso
AddOn Author - Click to view addons
Join Date: Oct 2022
Posts: 245
PERFECT! I think that will do the job for any of the entries including outlaws refuge's. I'll give it a whirl

Code:
local deadZones = {
		"Eyevea",
		"The Earth Forge",
		"Vateshram Hollows",
		"Maelstrom Arena",
		"Outlaws Refuge",
		--"Dark Brotherhood Sanctuary",
		"Norg-Tzel",
		"Heart's Grief",
		"Ancient Carzog's Demise"
	}
for _, deadZone in ipairs(deadZones) do
	if string.find(GetUnitZone(playerID), deadZone, 1, true) ~= nil or IsUnitPvPFlagged(playerID) then
is what im hoping will work out

Last edited by sinnereso : 05/01/23 at 11:38 AM.
  Reply With Quote