Search found 8 matches

by MxMCube
Tue Jan 06, 2015 7:57 pm
Forum: Games and Creations
Topic: Typing Simulator 2014[REPOST]
Replies: 13
Views: 14378

Re: Typing Simulator 2014[REPOST]

Yeah your right lol. But this game needs a lot of updating. I will update the hell out of this once I get my iMac.
by MxMCube
Thu Oct 23, 2014 9:27 pm
Forum: Games and Creations
Topic: Typing Simulator 2014[REPOST]
Replies: 13
Views: 14378

Re: Typing Simulator 2014[REPOST]

Hey everyone, founder of TS14 here. We will have a Mac version up in 1-2 months. The reason why, is because I was waiting for the new 5k iMacs, and I had no other Mac device at the time when we made the game.

Thanks for your patience.
by MxMCube
Sat Aug 23, 2014 5:47 pm
Forum: Support and Development
Topic: Rotate text from the center point.
Replies: 2
Views: 2559

Re: Rotate text from the center point.

Seems a bit difficult, but i'll see what I can do with the code. Thanks for the reply ;p
by MxMCube
Sat Aug 23, 2014 3:57 pm
Forum: Support and Development
Topic: Rotate text from the center point.
Replies: 2
Views: 2559

Rotate text from the center point.

https://love2d.org/imgmirrur/oYm9o2B.png This is the code: if badWords == true then love.graphics.setFont(epilepsyFont) epilepsy:draw(0, 0) love.graphics.printf("STOP SWEARING!!!1!!11", 0, height/2, width, "center") end I want to rotate the text from the center point. How do I d...
by MxMCube
Sat Aug 23, 2014 12:56 am
Forum: Libraries and Tools
Topic: Typing Simulator 2014
Replies: 0
Views: 1706

Typing Simulator 2014

H4i8uw92RT0 Info The dawn of a new era begins today. The release of a product never before seen. Maybe. We don't know. The ultimate mixture of badass and practicality comes together to create a perfect bond, intriguing anyone who plays it and locking them into a trance of pure awesome. Credits Code...
by MxMCube
Fri Aug 22, 2014 8:00 pm
Forum: Support and Development
Topic: Find a 12 letter word in a string.
Replies: 1
Views: 1723

Find a 12 letter word in a string.

This is some code.

Code: Select all

amazingString = "Hello, this is a test. Blahblahblahblahblah"
I need an if statement that can find a 12 letter word inside amazingString, and if it does find a 12 letter word, then do something.
by MxMCube
Fri Aug 22, 2014 1:31 am
Forum: Support and Development
Topic: Moving bird.
Replies: 4
Views: 3538

Re: Moving bird.

Thanks a ton dude! This did the job. I never thought of making bird.direction. Thanks ;)
by MxMCube
Fri Aug 22, 2014 12:04 am
Forum: Support and Development
Topic: Moving bird.
Replies: 4
Views: 3538

Moving bird.

https://love2d.org/imgmirrur/WN9e5Xz.png This is my game so far. Ignore the background. xD I have this: bird = {} bird.x = 0 bird.y = height/2 bird.speed = 300 What I want, is that the bird.x goes from 0 to 854 then back to 0 then back to 854, and so on. I want it to go 300 (bird.speed) pixels forw...