Hello ,
First -forgive me my bad english but im not a natural english speaker.
I have developed my first addon http://static.curseforge.net/content/files/416/915/bigletter.zip .
You can types things in huge letters in the chat . And it will post some little ascii arts in the chat . In the Lua environment works well but in WoW i got an error message wenn i will send the google asccii art . Command in wow "/bl s google1" .
local newstr = ""
for i = 1, zeile_x:len() do
local n = zeile_x:sub(i, i)
newstr = newstr .. n
if n == "|" then
newstr = newstr .. n
end
end
zeile_x = newstr
Rollback Post to RevisionRollBack
To post a comment, please login or register a new account.
First -forgive me my bad english but im not a natural english speaker.
I have developed my first addon http://static.curseforge.net/content/files/416/915/bigletter.zip .
You can types things in huge letters in the chat . And it will post some little ascii arts in the chat . In the Lua environment works well but in WoW i got an error message wenn i will send the google asccii art . Command in wow "/bl s google1" .
see the code below
zeichensatz.lua
bigletter.lua
any idias to fix the problem ?
Thanks in advance
I replace the pipe with a double pipe ^^