We can call it Ittens 

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.
Show posts MenuQuote from: SSH on Tue 15/01/2008 17:45:30
You can fill in what you likeIf it comes in the top 3/5/whatever then I'll look at its merits...
Quote from: jetxl on Mon 14/01/2008 23:02:20
You should use that style that everybody likes.
Quote from: Dualnames on Mon 14/01/2008 21:57:34
Why oh why don;t you make it to Greece?
Quote from: Quitch on Sun 13/01/2008 11:49:46Actual download ratings, and the rather low amount of games starting with a number ("1111" sorts before "acme") suggest otherwise.
But isn't the incentive currently to ensure you name your game Acme so that you're on the first two pages i.e. the ones which I bet are highly more likely to score downloads.
QuoteThat's a false dichotomy; there is a difference between "too arbitrary to be a meaningful sort ordering" and "not worth a damn". But as a matter of fact, a better rating system is being worked on.
If the rating system isn't considered to be worth a damn, why have it?
Quote from: Stupot on Sat 12/01/2008 09:43:14
You could make the Walkable Area 1 pixel wide so that the character cannot move about diagonally.
Quote from: Nikkylo on Sat 12/01/2008 00:20:56
I've tried that, but can't seem to get past guard to jump in harbor - is there a way to get clothes? I tried at the tailor's but couldn't get in.
Quote from: LittleQueen on Fri 11/01/2008 02:53:35
Fizzii, thanks. I've gotten pretty far in the game but now I'm stuck onSpoiler
the Angel. How do I mention the sins?[close]
#define MAX_LINE 10
int frame, linecount;
struct lineinfo { int x1, y1, x2, y2 };
lineinfo line [MAX_LINE];
function my_line (int x1, int y1, int x2, int y2) {
if (linecount < MAX_LINE) {
line[linecount].x1 = x1;
line[linecount].y1 = y1;
line[linecount].x2 = x2;
line[linecount].y2 = y2;
linecount ++;
}
}
function repeatedly_execute () {
frame = (frame +1) % 4;
RawRestoreScreen ();
int i=0;
while (i < MAX_LINE) {
draw_line (line[i].x1, line[i].y1, line[i].x2, line[i].y2, frame);
i ++l
}
}
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 0.440 seconds with 16 queries.