View Single Post
11/01/14, 07:59 PM   #2
merlight
AddOn Author - Click to view addons
Join Date: Jul 2014
Posts: 671
First off you need to convert your images to DDS. I've seen some topics on how to do that here, but never did that myself so can't tell if there aren't any pitfalls. Just search for DDS.

Don't use backslashes in file paths. Never. Not even on Windows. It's an evil from the past. Windows 95 understood forward slashes, I can't believe 20 years later people still use them backwards.

Now to give you a real reason on top of zealous rant - in most programming languages, Lua included, backslashes in strings are special, escape characters. "\auridon" is not a backslash followed by auridon, it's the ALARM character (aka BEL, ASCII 7), which on some consoles actually produces a sound, followed by uridon!

[179] = "QuestMaps/Maps/auridon.dds",
  Reply With Quote