Search found 5 matches

by LesbianHam
Mon Nov 25, 2019 7:17 am
Forum: Libraries and Tools
Topic: Möan.lua - A simple messagebox system.
Replies: 40
Views: 88818

Re: Möan.lua - A simple messagebox system.

For anyone interested in this still, I have done a rewrite of this project with a bit more design and a bit more sillyness with the name: https://github.com/tanema/talkies Some Changes - eliminated all global leaking variables! - A bit more maintainable - less magic numbers and calculations in draw...
by LesbianHam
Thu Nov 21, 2019 6:56 pm
Forum: Games and Creations
Topic: Max Downforce - arcade racer
Replies: 15
Views: 20164

Re: Max Downforce - arcade racer

Thanks! @LesbianHam I have made the source code public to show others how I made this game, and for them as inspiration and/or to use parts of the code to make their own games. In writing this game I have myself also used examples and code from other places, such as from this website: http://www.ex...
by LesbianHam
Thu Nov 21, 2019 4:56 pm
Forum: Support and Development
Topic: RL-Dice: What am I doing wrong??
Replies: 2
Views: 2464

Re: RL-Dice: What am I doing wrong??

Please don't post code snippets as images, use [ code]...[ /code] tags. You're rolling the die up to four times. You roll it a first time, and set the result to the number. You roll it a second time, and if the roll is 1, you set the result to "rock". If the second roll is 2 or 3, you rol...
by LesbianHam
Thu Nov 21, 2019 4:15 am
Forum: Games and Creations
Topic: Max Downforce - arcade racer
Replies: 15
Views: 20164

Re: Max Downforce - arcade racer

This is really awesome! It would certainly be a daunting task for me with my current knowledge (or lack there of), but theoretically, could I have a your blessing to make and distribute a game based on the source code for this? And if so, how would you like to be credited? No worries if you're not a...
by LesbianHam
Thu Nov 21, 2019 2:04 am
Forum: Support and Development
Topic: RL-Dice: What am I doing wrong??
Replies: 2
Views: 2464

RL-Dice: What am I doing wrong??

I'm working on a simple rock, paper, scissors game to further familiarize myself with Love. So far, it's been going pretty well, I've been able to solve all my issues myself up until now. I'm at a loss for this one. I'm using RL-Dice for random number generation (I chose to use RL-Dice for this beca...