StringRoomListCur = CurrentRoom .. ". (" .. CurrentArea .. ")$\n^" .. CurrentDesc
StringRoomListOld = OldRoom .. ". (" .. OldArea .. ")$\n^" .. OldDesc
-- These rooms look like: The gates of Mhaldor. (Mhaldor)\nRoomDescription.
StringRoomListCur = string.gsub (StringRoomListCur, "[^%a%c%d]", "\\" .. "%1")
StringRoomListOld = string.gsub (StringRoomListOld, "[^%a%c%d]", "\\" .. "%1")
AddTriggerEx("", StringRoomListCur, "[WORMHOLE: " .. OldArea .. ", " .. OldRoom .. "]", 41, -1, 0, "", "", 2, 100)
AddTriggerEx("", StringRoomListOld, "[WORMHOLE: " .. CurrentArea .. ", " .. CurrentRoom .. "]", 41, -1, 0, "", "", 2, 100)
That is the code inside an alias called whm. It creates two triggers based on information stored about the previous two rooms visited (wormholes in Achaea). My only problem I keep running into is \n, \\n, to \\\\\n doesn't work. Am I missing something here because the system keeps coming back with the string is incomplete at the \n as the alias keeps putting in a literal line return mid string.
Compile error
World: Achaea
Immediate execution
[string "Alias: "]:3: unfinished string near '")'
StringRoomListOld = OldRoom .. ". (" .. OldArea .. ")$\n^" .. OldDesc
-- These rooms look like: The gates of Mhaldor. (Mhaldor)\nRoomDescription.
StringRoomListCur = string.gsub (StringRoomListCur, "[^%a%c%d]", "\\" .. "%1")
StringRoomListOld = string.gsub (StringRoomListOld, "[^%a%c%d]", "\\" .. "%1")
AddTriggerEx("", StringRoomListCur, "[WORMHOLE: " .. OldArea .. ", " .. OldRoom .. "]", 41, -1, 0, "", "", 2, 100)
AddTriggerEx("", StringRoomListOld, "[WORMHOLE: " .. CurrentArea .. ", " .. CurrentRoom .. "]", 41, -1, 0, "", "", 2, 100)
That is the code inside an alias called whm. It creates two triggers based on information stored about the previous two rooms visited (wormholes in Achaea). My only problem I keep running into is \n, \\n, to \\\\\n doesn't work. Am I missing something here because the system keeps coming back with the string is incomplete at the \n as the alias keeps putting in a literal line return mid string.
Compile error
World: Achaea
Immediate execution
[string "Alias: "]:3: unfinished string near '")'