Search found 174 matches
- Wed Aug 02, 2023 3:17 pm
- Forum: Support and Development
- Topic: using t.console on linux [SOLVED]
- Replies: 8
- Views: 3118
Re: using t.console on linux
appimage is still executable, it doesn't work any differently from programs installed in different way. Just make sure that love appimage is runnable and run it in terminal. For example: /path/to/appimage/love-11.4-x86_64.AppImage Yeah I can easily run love it self through a terminal just copy the ...
- Fri Jul 14, 2023 11:04 pm
- Forum: Support and Development
- Topic: [SOLVED]How can I check if remote socket is terminated?
- Replies: 4
- Views: 2133
Re: How can I check if remote socket is terminated?
Solved by adding small amount of code below to client side. Thank you for everyone who checked and tried to help. local result = client:send("Hi!\n") if result ~= nil then print("Send data to server: Hi! ") else print("Oops. Something happened: Can't send data to server.&qu...
- Thu Jul 13, 2023 8:16 pm
- Forum: Support and Development
- Topic: [SOLVED]How can I check if remote socket is terminated?
- Replies: 4
- Views: 2133
Re: How can I check if remote socket is terminated?
It is usually handled with ping packets - packets, that are sent at regular intervals from one side to another and pack (for example client sends ping and when server received it, it cas send pong back, so you can get how long it took to connect to the server and get response and if other side is al...
- Tue Jul 11, 2023 8:47 pm
- Forum: Support and Development
- Topic: Not being able to do stuff
- Replies: 3
- Views: 1297
Re: Not being able to do stuff
It’s love . not love. (There is space between love and .)
Also make sure, that love is installed and is in your %PATH%
Also make sure, that love is installed and is in your %PATH%
- Wed Jul 05, 2023 6:51 am
- Forum: Support and Development
- Topic: Question about for loops
- Replies: 5
- Views: 2055
Re: Question about for loops
Thats what [ code ] [/ code] tags are for (without spaces in [])SquareFish wrote: ↑Tue Jul 04, 2023 7:56 pm Thanks, I realized that the forum text editor removed the [ i ]
- Mon Jul 03, 2023 2:57 pm
- Forum: Support and Development
- Topic: Share On Phone??
- Replies: 7
- Views: 2748
Re: Share On Phone??
Based on your post in another thread: This is like the 4th forum iv typed, but no good answer =( ... I MADE A GAME, AND I WANT TO SHARE IT ON A PHONE, NOT A COMPUTER 1. IS THAT EVEN POSSIBLE? 2. SHOW ME EXACTLY HOW. 3. ONLY ANSWER IF YOUV DONE IT BEFORE OR IF U KNOW HOW. 4. I WANT IT TO BE ON A PHON...
Re: Functions
When you are creating table (return { … }), you can not reference keys or values in that table, as you are just creating it. Move the Distance = … outside before that return. And if you want to return also Distance, just add Distance = Distance in that table. P.S.: please use support and development...
- Sat Jun 24, 2023 12:41 pm
- Forum: Support and Development
- Topic: Share in app store?
- Replies: 2
- Views: 2782
Re: Share in app store?
Yes, it is definitely possible, but the question is, if it is worth it for game, that has 3 levels. For Google Play, there is some one time fee like $25 and some % of money made by that app. For Apple, it is a bit more complicated. If I remember correctly, you need to have Mac with xcode and develop...
- Sat Jun 17, 2023 7:52 pm
- Forum: Support and Development
- Topic: File wont save [SLOVED]
- Replies: 15
- Views: 12245
Re: File wont save
I added this to the love.update function and it tells me that the file name is illegal or is insecure if love.keyboard.isDown("return") then local success, message = love.filesystem.write(game.file_n, game.txt) if success then print("File saved successfully!") else print("E...
- Sat Jun 17, 2023 2:19 pm
- Forum: Support and Development
- Topic: File wont save [SLOVED]
- Replies: 15
- Views: 12245
Re: File wont save
I added this to the love.update function and it tells me that the file name is illegal or is insecure if love.keyboard.isDown("return") then local success, message = love.filesystem.write(game.file_n, game.txt) if success then print("File saved successfully!") else print("E...