Search found 34 matches

by Croutonix
Sat Aug 20, 2016 8:41 pm
Forum: Support and Development
Topic: Setting console title remove line ends
Replies: 4
Views: 2839

Re: Setting console title remove line ends

Is it coming soon or only in a few months?
by Croutonix
Sat Aug 20, 2016 11:16 am
Forum: Support and Development
Topic: Setting console title remove line ends
Replies: 4
Views: 2839

Re: Setting console title remove line ends

Also note that if I set title and open my program with a batch file

Code: Select all

@echo off
title Hello World!
love.exe src <program.exe>
Everything displays correctly.
by Croutonix
Sat Aug 20, 2016 1:16 am
Forum: Support and Development
Topic: Setting console title remove line ends
Replies: 4
Views: 2839

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://...
by Croutonix
Fri Aug 19, 2016 4:08 pm
Forum: Support and Development
Topic: LuaSocket returns nil with http.request
Replies: 10
Views: 6233

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?
by Croutonix
Fri Aug 19, 2016 3:41 pm
Forum: Support and Development
Topic: LuaSocket returns nil with http.request
Replies: 10
Views: 6233

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.
by Croutonix
Fri Aug 19, 2016 1:30 pm
Forum: Support and Development
Topic: LuaSocket returns nil with http.request
Replies: 10
Views: 6233

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?
by Croutonix
Fri Aug 19, 2016 11:55 am
Forum: Support and Development
Topic: How can I use Lua 5.2 for LOVE
Replies: 16
Views: 8889

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
by Croutonix
Thu Aug 18, 2016 11:55 pm
Forum: Support and Development
Topic: How can I use Lua 5.2 for LOVE
Replies: 16
Views: 8889

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?
by Croutonix
Thu Aug 18, 2016 11:52 pm
Forum: Support and Development
Topic: LuaSocket returns nil with http.request
Replies: 10
Views: 6233

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...