Search found 8 matches

by zhek0s
Mon Aug 24, 2015 6:28 pm
Forum: General
Topic: LÖVE on Discord - Real-time text & voice chat group
Replies: 22
Views: 14414

Re: LÖVE on Skype

zhek0s

Love in SKYPE!
by zhek0s
Mon Aug 10, 2015 11:44 am
Forum: General
Topic: LOVE users map
Replies: 182
Views: 118246

Re: LOVE users map

Ukraine, Dnipropetrovsk

Hi all!
by zhek0s
Fri May 15, 2015 5:14 pm
Forum: Games and Creations
Topic: Rigid Boy 2
Replies: 42
Views: 26555

Re: Rigid Boy 2

by zhek0s
Tue Apr 07, 2015 8:12 pm
Forum: Support and Development
Topic: I need help with xFF!
Replies: 5
Views: 3264

Re: I need help with xFF!

line 27: Decoding error: invalid utf-8
At line 27 i have lg.print(text)
by zhek0s
Mon Apr 06, 2015 5:09 pm
Forum: Support and Development
Topic: I need help with xFF!
Replies: 5
Views: 3264

Re: I need help with xFF!

I need some systeminfo. I have trubles with numbers that cmd.exe returns, for exemple: 2xFF048 KB (you can see it when set encoding on notepad to utf-8 without BOM).
if i run something like os.execute("help >"..n), no errors and normal text.
Really dont know what to do...
by zhek0s
Mon Apr 06, 2015 3:26 pm
Forum: Support and Development
Topic: I need help with xFF!
Replies: 5
Views: 3264

Re: I need help with xFF!

n = os.tmpname ()
os.execute ("chcp 437")
os.execute ("tasklist > " .. n)
for line in io.lines (n) do
text[#text+1]=line
print(line)
end
end
os.remove(n)
by zhek0s
Sun Apr 05, 2015 1:11 pm
Forum: Support and Development
Topic: I need help with xFF!
Replies: 5
Views: 3264

I need help with xFF!

Hi every one. Im have very big problem(maybe only for me).
My project needs input from cmd.exe, but it have some problems with numbers like 2xFF048 on utf-8 encoding without BOM.
utf-8.lua and libraries like them dont help.
Help me please.