View Single Post
11/02/14, 05:44 PM   #9
zireko
 
zireko's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 63
Still just getting the whitebox and I changed the code too

Lua Code:
  1. local function QuestMaps()
  2.     local zoneIndex = GetCurrentMapZoneIndex()
  3.     local imgQuests = questZone[zoneIndex]
  4.     if type(imgQuests) == "string" then
  5.         image:SetTexture(imgQuests)
  6.         tlw:SetHidden(false)
  7.     else
  8.         tlw:SetHidden(true)
  9.     end
  10. end

O and yes I'm in Auridon when testing this.

Last edited by zireko : 11/02/14 at 05:52 PM.
  Reply With Quote