Search found 34 matches
- Sat Aug 20, 2016 8:41 pm
- Forum: Support and Development
- Topic: Setting console title remove line ends
- Replies: 4
- Views: 2933
Re: Setting console title remove line ends
Is it coming soon or only in a few months?
- Sat Aug 20, 2016 11:16 am
- Forum: Support and Development
- Topic: Setting console title remove line ends
- Replies: 4
- Views: 2933
Re: Setting console title remove line ends
Also note that if I set title and open my program with a batch file
Everything displays correctly.
Code: Select all
@echo off
title Hello World!
love.exe src <program.exe>
- Sat Aug 20, 2016 1:16 am
- Forum: Support and Development
- Topic: Setting console title remove line ends
- Replies: 4
- Views: 2933
Setting console title remove line ends
os.execute("title Hello World") print("Line 1") print("Line 2") os.execute("pause") Prints https://s4.postimg.org/l5ojcylil/image1.png But if no title is set: print("Line 1") print("Line 2") os.execute("pause") It prints https://...
- Fri Aug 19, 2016 4:08 pm
- Forum: Support and Development
- Topic: LuaSocket returns nil with http.request
- Replies: 10
- Views: 6626
Re: LuaSocket returns nil with http.request
Yea I already read it and I don't get it, do I have the wrong version of LuaSocket?
- Fri Aug 19, 2016 3:41 pm
- Forum: Support and Development
- Topic: LuaSocket returns nil with http.request
- Replies: 10
- Views: 6626
Re: LuaSocket returns nil with http.request
c returns closed, which is not in the list of status codes? What does it mean?
I added it to firewall filter, nothing changed.
I added it to firewall filter, nothing changed.
- Fri Aug 19, 2016 1:30 pm
- Forum: Support and Development
- Topic: LuaSocket returns nil with http.request
- Replies: 10
- Views: 6626
Re: LuaSocket returns nil with http.request
Still returns nil with http...
What do you mean by not fragmentary?
I need to add love.conf function to main.lua?
What do you mean by not fragmentary?
I need to add love.conf function to main.lua?
- Fri Aug 19, 2016 12:55 pm
- Forum: Support and Development
- Topic: LuaSocket returns nil with http.request
- Replies: 10
- Views: 6626
- Fri Aug 19, 2016 11:55 am
- Forum: Support and Development
- Topic: How can I use Lua 5.2 for LOVE
- Replies: 16
- Views: 9414
Re: How can I use Lua 5.2 for LOVE
bit32.extract, bit32.btest and bit32.replace
I replaced the other functions with luajit bit
I replaced the other functions with luajit bit
- Thu Aug 18, 2016 11:55 pm
- Forum: Support and Development
- Topic: How can I use Lua 5.2 for LOVE
- Replies: 16
- Views: 9414
Re: How can I use Lua 5.2 for LOVE
It saves me work because bit and bit32 aren't the same.
This I don't need to write missing functions. (that I don't even understand)
But why is it so bad?
This I don't need to write missing functions. (that I don't even understand)
But why is it so bad?
- Thu Aug 18, 2016 11:52 pm
- Forum: Support and Development
- Topic: LuaSocket returns nil with http.request
- Replies: 10
- Views: 6626
LuaSocket returns nil with http.request
Wiki says LuaSocket is implented in love2d so I tried example code from LuaSocket webpage local http=require'socket.http' body,c,l,h = http.request('http://w3.impa.br/~diego/software/luasocket/http.html') print('status line',l) print('body',body) Returns status line nil body nil I tried multiple exa...