Search found 4373 matches

by albinopapa
November 5th, 2013, 3:47 pm
Forum: Everything
Topic: Help question is very simple.
Replies: 7
Views: 3017

Re: Help question is very simple.

user_x + 20 (right side of user) > bonus_x+20 (right side of bonus) this says Is the right side of user to the right of the right side of bonus? user_y + 20 (bottom of user) < bonus_y + 20 (bottom of bonus) this says Is the bottom of user above the bottom of bonus? and then you ask the same question...
by albinopapa
November 4th, 2013, 5:31 pm
Forum: Everything
Topic: [UPDATE] Desktop Toybox Game - 0.90 TheToddfather
Replies: 36
Views: 17062

Re: [UPDATE] Version 0.81e: Desktop Toybox.

Since you are debugging you might list the line that it failed on.
by albinopapa
November 4th, 2013, 5:28 pm
Forum: Everything
Topic: New member
Replies: 8
Views: 2740

Re: New member

haha, everytime i've read his sig i just think that laziness and impatience don't go together :P (since an impatient person would naturally do something, which isn't laziness lol xD) Just saying that you can be lazy yourself ( not you personally ) and still expect others to hurry. I for example con...
by albinopapa
November 4th, 2013, 12:58 am
Forum: Everything
Topic: New member
Replies: 8
Views: 2740

Re: New member

Not entirely true Luis, I don't want to do it but I want you to do it right now.
by albinopapa
October 30th, 2013, 2:18 pm
Forum: Everything
Topic: Who's up for a group challenge?
Replies: 165
Views: 74009

Re: Who's up for a group challenge?

Most recent version of project has been uploaded to first page of this thread. Thank you Cameron and Luis for all the help so far. It's not too late to help. We still have so many things left to add. // In game objects still needed Bosses Enemy Types Bonuses // In game actions still needed Enemy fli...
by albinopapa
October 29th, 2013, 1:52 pm
Forum: Everything
Topic: Classic snake game help
Replies: 39
Views: 12914

Re: Classic snake game help

Your welcome
by albinopapa
October 29th, 2013, 5:40 am
Forum: Everything
Topic: Classic snake game help
Replies: 39
Views: 12914

Re: Classic snake game help

You did a pretty good job of deciphering my cryptic post. All the elements are there that I mentioned. I think the first problem is that since you are converting back and forth between pixel position and square position you need to make sure you are updating pixel position as well. While stepping th...
by albinopapa
October 29th, 2013, 12:29 am
Forum: Everything
Topic: My balls dont bounce!
Replies: 29
Views: 9034

Re: My balls dont bounce!

Yeah, get through the intermediate series and you won't have to worry about kbd or images/sprites.

@luis...that's crazy 2days and 2nights, I'd be way past loopy.
by albinopapa
October 28th, 2013, 3:42 pm
Forum: Everything
Topic: My balls dont bounce!
Replies: 29
Views: 9034

Re: My balls dont bounce!

crap man when do you sleep? You must be an AI, I'm only up because I had to take son to school.
by albinopapa
October 28th, 2013, 3:10 pm
Forum: Everything
Topic: My balls dont bounce!
Replies: 29
Views: 9034

Re: My balls dont bounce!

You are correct in the understanding that if all conditions were false with the ! it would invert to true and execute the block of code. The part you are missing is they all have to be true to be true then inverted to false. False && True evaluates to False so !(False && True) = !(False) = True so t...