Search found 128 matches

by Darlex
Thu May 02, 2019 12:49 pm
Forum: General
Topic: love2D desktop wallpaper
Replies: 1
Views: 6302

Re: love2D desktop wallpaper

HMM. Looks cool but there is a little problem. The masking of the LÖVE logo.
There is little white pixels around the logo that makes the logo looks less professional.
you could use a png instead
by Darlex
Thu May 02, 2019 12:46 pm
Forum: Games and Creations
Topic: is it possible to make a rpg like Mother?
Replies: 12
Views: 18899

Re: is it possible to make a rpg like Mother?

Im actually doing that and releasing a game engine like gamemaker with rpg functionality
by Darlex
Sun Apr 28, 2019 12:41 am
Forum: Support and Development
Topic: Launching .love from dropbox on Android
Replies: 6
Views: 5280

Re: Launching .love from dropbox on Android

Actually, the apk didn't quite work out for ms, as it gives me an odd "unsupported scheme 'content'" error. 0_o I rolled it back to the 10.2 version for now. Hmm, that's weird! You should report the error. And for the color thing. I suggested a function that translates the rgb colors (25,...
by Darlex
Thu Apr 25, 2019 11:10 am
Forum: Support and Development
Topic: Launching .love from dropbox on Android
Replies: 6
Views: 5280

Re: Launching .love from dropbox on Android

You can download the 11.1 version https://bitbucket.org/rude/love/downloads/love-11.1-android.apk And for the color thing... You can do this: function rgb(r,g,b) return r/255,g/255,b/255 end or use this code for HEX: function hex(hex) hex = hex:gsub("#","") return tonumber("...
by Darlex
Tue Mar 26, 2019 6:46 pm
Forum: General
Topic: Is the proper name löve or love2d?
Replies: 14
Views: 17453

Re: Is the proper name löve or love2d?

im using linux :( Are you in Chile? According to this page: https://www.dsi-keyboards.com/shop/accessories/chilean-spanish-keyboard-labels/ the Chilean Spanish keyboard has the umlaut (diéresis) to the right of the P, with shift, as a dead key. You press shift+¨ then o and get ö. The Spanish keyboa...
by Darlex
Mon Mar 25, 2019 1:40 am
Forum: General
Topic: Is the proper name löve or love2d?
Replies: 14
Views: 17453

Re: Is the proper name löve or love2d?

You can't write LÖVE on a keyboard. I don't even know how they got the Ö thing. On macOS it's: Shift+l > Option+u > o > v > e Option plus a letter on macOS will activate accent mode for certain characters. So for the letter "u" it activates the umlauts (äëïöü) then you press a vowel immed...
by Darlex
Mon Mar 25, 2019 1:40 am
Forum: General
Topic: Is the proper name löve or love2d?
Replies: 14
Views: 17453

Re: Is the proper name löve or love2d?

adrix89 wrote: Tue Mar 19, 2019 4:08 am You think I am going to do and remember all that for a weird letter?
At best I will copy paste.
I search in google: "Weird O with two points"
by Darlex
Mon Mar 25, 2019 1:09 am
Forum: Games and Creations
Topic: polyamory - Multi-version LÖVE
Replies: 25
Views: 40767

Re: polyamory - Multi-version LÖVE

You are a fricking genius.
by Darlex
Sun Mar 24, 2019 8:26 pm
Forum: Support and Development
Topic: Encryption and stuff [SOLVED]
Replies: 6
Views: 3774

Re: Encryption and stuff

There is no built-in API for encryption. What do you need it for, how secure does it have to be? I'm working on a multiproposal multiplatform "easy to use" game engine. I think the best option is something easy to use but enough secure to protect data from dataminers or hackers (and maybe...
by Darlex
Sun Mar 24, 2019 6:09 pm
Forum: Support and Development
Topic: Encryption and stuff [SOLVED]
Replies: 6
Views: 3774

Encryption and stuff [SOLVED]

There is a way of encrypt a string with a password like:

Code: Select all

string = "example"
pass = "example2"
encoded = encode(string,pass) --3DaB75E
decoded = decode(encoded,pass) --example
?