Chaosforge Forum

  • March 28, 2024, 09:41
  • Welcome, Guest
Please login or register.



Login with username, password and session length

Show Posts

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.

Topics - Shoop da Whoop

Pages: 1 [2]
16
Off Topic / Feel the Power of Random!
« on: January 02, 2010, 16:09 »
Just run this:

Code: [Select]
program mtrx;
uses CRT;
var x, y: shortint;

procedure thr_x;
begin
  x:=trunc(Random*79.79);
end;

procedure thr_y;
begin
  y:=trunc(Random*25.25);
end;

procedure rnbw;
begin
  TextColor(trunc(Random*15.15));
end;

BEGIN
  ClrScr;
  Randomize;
  x:=1;
  y:=1;
  repeat
    thr_x;
    thr_y;
    rnbw;
    gotoxy(x, y);
    write(round(Random*10))
  until KeyPressed;
END.

in Pascal compiler.

17
Discussion / Translation? Why not?
« on: December 11, 2009, 13:36 »
I'd wish to translate some version of DoomRL into other language, but I need to know: is it possible in any way? Are the strings deep inside the code or aren't they? Second case is better, of course.
So what do you think about DoomRL in insert_your_language?

Pages: 1 [2]