76
Gameplay & Discussion / Re: Introducing Delicious-Fruit.com!
« on: April 25, 2015, 01:54:05 AM »
A screenshot-related question, actually
Why do they show up in a random order?
Why do they show up in a random order?
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
I think it would be a good idea to add a section with games not on the actual wiki (no links to them), just so there's proof they have existed (and also to add them to your favorites and/or clear list if you have played/beaten them).
I saw that UpRising's in there. I know I can't review my own stuff, but is it okay for me to put the screenshots from the thread I made here on that page?
Also, if I may suggest something, maybe have a column on the fangame list stating whether the game is complete or not? Like "Completed", "In Progress", "Tech Demo", "Cancelled"?
You can post/screenshot/review anything you would like. There are no restrictions on that. All screenshots are approved by a moderator before they are public. We may consider different "fangame" in progress/completed/etc. categories in the near future after we clean up some of the site. Thanks!
This is pretty cool. Will definitely be using.
Would also be cool if people could not review their own game or post troll reviews, but maybe that's just me.
if (!place_free(x+hspeed,y)) {
hspeed=-hspeed;
}
if (!place_free(x,y+vspeed+yspeed)) {
if (vspeed!=0) {
yspeed=-vspeed;
vspeed=0;
}
else {
vspeed=-yspeed;
yspeed=0;
}
}
y+=yspeed;
if (place_meeting(x,y-2,player)) {
player.y+=vspeed+yspeed;
with (player) {
if (place_free(x+other.hspeed,y)) player.x+=other.hspeed;
}
}
if (place_meeting(x,y+2,player2)) {
player2.y+=vspeed+yspeed;
with (player2) {
if (place_free(x+other.hspeed,y)) player2.x+=other.hspeed;
}
}
if (vspeed<0) {
yspeed=vspeed;
vspeed=0;
}
if (yspeed>0) {
vspeed=yspeed;
yspeed=0;
}