Re: RFP: deadEarth RPG documentation - free and open RPG game

2023-06-28 Thread Stefan Monnier
> :https://web.archive.org/web/20021211104811/http://www.deadearth.com/index.pl/legal > * License : License GNU Free Documentation License v1.1 or any later > version, no invariant sections or front and back text > Programming Lang: unknown > Description : tabletop r

Re: RFP: deadEarth RPG documentation - free and open RPG game

2023-06-28 Thread Emanuel Berg
Joshua Allen wrote: > deadEarth is a free and open TTRPG game for use in real > life or online Never heard of but sounds interesting, as technology, and maybe even as a game. Is it TT as in https://en.wikipedia.org/wiki/Tabletop_Simulator ? -- underground experts united

Re: RFP: deadEarth RPG documentation - free and open RPG game

2023-06-28 Thread Patrick Wiseman
ps://web.archive.org/web/20021211104811/http://www.deadearth.com/index.pl/legal > * License : License GNU Free Documentation License v1.1 or any later > version, no invariant sections or front and back text > Programming Lang: unknown > Description : tabletop rpg game &

RFP: deadEarth RPG documentation - free and open RPG game

2023-06-28 Thread Joshua Allen
License v1.1 or any later version, no invariant sections or front and back text Programming Lang: unknown Description : tabletop rpg game - deadEarth is a free and open TTRPG game for use in real life or online - I am aware of other TTRPGs but this looks to be the oldest one I could find

Re: use of awk instead of complex multielement commands (was Re: 'grep -o -m' (was Re: Can't mount CD image of Win95 game))

2022-12-20 Thread David
On Wed, 21 Dec 2022 at 04:18, Lee wrote: > On 12/20/22, David wrote: > > $ echo -e '100:CD001\nXXX\n200:CD001' | awk 'BEGIN { FS=":" ; done=0 } > > /CD001/ && done==0 { print $1 - 50 ; done=1 }' > > 50 > > You can do it without flags: > > $ echo -e '100:CD001\nXXX\n200:CD001' | awk -F: '/CD001/

Re: Can't mount CD image of Win95 game

2022-12-20 Thread Thomas Schmitt
Hi, i meanwhile had a chance to inspect the image file and found that it shows a repeating pattern of bytes with value 255 every 2352 bytes. This corresponds to the size of medium level CD sectors, as can be obtained by SCSI command "READ CD" (e.g. via Linux ioctl CDROMREADRAW). CD-DA audio

Re: use of awk instead of complex multielement commands (was Re: 'grep -o -m' (was Re: Can't mount CD image of Win95 game))

2022-12-20 Thread Lee
On 12/20/22, David wrote: > On Tue, 20 Dec 2022 at 22:04, David wrote: >> On Tue, 20 Dec 2022 at 22:02, David wrote: > >> > $ echo -e '100:CD001\n200:CD001' | awk 'BEGIN { FS=":" } /CD001/ && >> > NR==1 { print $1 - 50 }' >> > 50 >> >> Oops, my mistake, that's not the solution. Give me another

Re: use of awk instead of complex multielement commands (was Re: 'grep -o -m' (was Re: Can't mount CD image of Win95 game))

2022-12-20 Thread Stefan Monnier
> Not that that is always important. But I just commented today > because so often 'awk' is ignored as if its only capability is 'print $1' > when in fact it is actually very powerful but neglected. FWIW, `sed` can also do that job. Tho the subtraction part would take a lot more work (`sed`

Re: use of awk instead of complex multielement commands (was Re: 'grep -o -m' (was Re: Can't mount CD image of Win95 game))

2022-12-20 Thread David
On Tue, 20 Dec 2022 at 22:04, David wrote: > On Tue, 20 Dec 2022 at 22:02, David wrote: > > $ echo -e '100:CD001\n200:CD001' | awk 'BEGIN { FS=":" } /CD001/ && > > NR==1 { print $1 - 50 }' > > 50 > > Oops, my mistake, that's not the solution. Give me another minute and I > will post a better

Re: 'grep -o -m' (was Re: Can't mount CD image of Win95 game)

2022-12-20 Thread Thomas Schmitt
Hi, The Wanderer wrote: > With the '-o' option, grep prints only the parts of the line that were > matched - but the plural here is very relevant. If that guess is > correct, then the "line" in question has *four* occurrences, so grep > prints them all - each on a separate line of output. The

Re: Can't mount CD image of Win95 game

2022-12-20 Thread Thomas Schmitt
Hi, Yvan Masson wrote: > Kernel logs say "isofs_fill_super: get root inode failed". So there is more stuff inserted between the volume descriptor and the root directory of the ISO. (The descriptor contains a minimal directory record which points to the content of the root directory. All

Re: use of awk instead of complex multielement commands (was Re: 'grep -o -m' (was Re: Can't mount CD image of Win95 game))

2022-12-20 Thread David
On Tue, 20 Dec 2022 at 22:02, David wrote: > $ echo -e '100:CD001\n200:CD001' | awk 'BEGIN { FS=":" } /CD001/ && > NR==1 { print $1 - 50 }' > 50 Oops, my mistake, that's not the solution. Give me another minute and I will post a better one one.

Re: use of awk instead of complex multielement commands (was Re: 'grep -o -m' (was Re: Can't mount CD image of Win95 game))

2022-12-20 Thread David
On Tue, 20 Dec 2022 at 21:53, The Wanderer wrote: > On 2022-12-20 at 05:37, David wrote: > > On Tue, 20 Dec 2022 at 21:10, The Wanderer wrote: > >> On 2022-12-20 at 02:51, Thomas Schmitt wrote: > >>> This contradicts the promises of man grep about option -m. > >> It does seem to, at least at a

use of awk instead of complex multielement commands (was Re: 'grep -o -m' (was Re: Can't mount CD image of Win95 game))

2022-12-20 Thread The Wanderer
On 2022-12-20 at 05:37, David wrote: > On Tue, 20 Dec 2022 at 21:10, The Wanderer > wrote: > >> On 2022-12-20 at 02:51, Thomas Schmitt wrote: >>> This contradicts the promises of man grep about option -m. >> >> It does seem to, at least at a glance - but I think I've figured >> out what's

Re: 'grep -o -m' (was Re: Can't mount CD image of Win95 game)

2022-12-20 Thread David
On Tue, 20 Dec 2022 at 21:10, The Wanderer wrote: > On 2022-12-20 at 02:51, Thomas Schmitt wrote: > >>> offst=$( expr \ > >>> $( grep -a -o -b -m 1 CD001 cdimage.iso \ > >>> | sed -e 's/:/ /' \ > >>> | awk '{ print $1 }' ) - 32769 ) > > > > The

'grep -o -m' (was Re: Can't mount CD image of Win95 game)

2022-12-20 Thread The Wanderer
On 2022-12-20 at 02:51, Thomas Schmitt wrote: > Hi, > > i wrote: >>> To obtain the offset of the first occurence of "CD001", do >>> >>> offst=$( expr \ >>> $( grep -a -o -b -m 1 CD001 cdimage.iso \ >>> | sed -e 's/:/ /' \ >>> | awk '{ print $1 }' )

Re: Can't mount CD image of Win95 game

2022-12-20 Thread Yvan Masson
. I really appreciate the help on this very specific and technical issue, but I am not sure it is worth the effort. As I said, it can be mounted with dosbox. And indeed, the game is the french version of "The Magic School Bus Explores the Solar System". For those interested, it can be easil

Re: Can't mount CD image of Win95 game

2022-12-19 Thread Thomas Schmitt
Hi, i wrote: > > To obtain the offset of the first occurence of "CD001", do > > > > offst=$( expr \ > > $( grep -a -o -b -m 1 CD001 cdimage.iso \ > > | sed -e 's/:/ /' \ > > | awk '{ print $1 }' ) - 32769 ) The Wanderer wrote: > Cutting down the

Re: Can't mount CD image of Win95 game

2022-12-19 Thread The Wanderer
On 2022-12-19 at 16:07, Thomas Schmitt wrote: > Hi, > > Yvan Masson wrote: >> I am really not at ease using tools like hexdump, > > I pondered a bit more. If it's an ISO filesystem wrapped into some header > and maybe a footer, then mount option -o offset= could help. > > To obtain the offset

Re: Can't mount CD image of Win95 game

2022-12-19 Thread Thomas Schmitt
.) Then use the resulting number with the mount command mount -t iso9660 -o offset="$offst" cdimage.iso /mnt It might be that you get errors when mounting or when accessing the files in the mounted image. Check your kernel logs even if all looks good. --- (Do the year 1995 and

Re: Can't mount CD image of Win95 game

2022-12-19 Thread Yvan Masson
Le 19/12/2022 à 16:34, Thomas Schmitt a écrit : Hi, i wrote: dd if=cdimage.iso bs=1 count=64 | od -t c Yvan Masson wrote: 000 \0 377 377 377 377 377 377 377 377 377 377 \0 \0 002 \0 001 020 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 This does not give

Re: Can't mount CD image of Win95 game

2022-12-19 Thread Thomas Schmitt
Hi, i wrote: > >dd if=cdimage.iso bs=1 count=64 | od -t c Yvan Masson wrote: > 000 \0 377 377 377 377 377 377 377 377 377 377 \0 \0 002 \0 001 > 020 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 This does not give me ideas. > >strings cdimage.iso | head

Re: Can’t mount CD image of Win95 game

2022-12-19 Thread Yvan Masson
Le 19/12/2022 à 15:25, Kamil Jońca a écrit : Yvan Masson writes: Hi list, I have a CD image of an old Win 95 game. I can mount it from dosbox with the `imgmount` command (`imgmount D cdimage.iso -t iso`), but could not mount it with Debian: $ file cdimage.iso cdimage.iso: data $ sudo mount

Re: Can’t mount CD image of Win95 game

2022-12-19 Thread Kamil Jońca
Yvan Masson writes: > Hi list, > > I have a CD image of an old Win 95 game. I can mount it from dosbox > with the `imgmount` command (`imgmount D cdimage.iso -t iso`), but > could not mount it with Debian: > > $ file cdimage.iso > cdimage.iso: data > > $ sudo

Re: Can't mount CD image of Win95 game

2022-12-19 Thread Yvan Masson
Hi Thomas, Le 19/12/2022 à 13:28, Thomas Schmitt a écrit : Hi, Yvan Masson wrote: I have a CD image of an old Win 95 game. [...] $ file cdimage.iso cdimage.iso: data So the cdimage.iso is not an ISO 9660 filesystem or somehow defaced. (Does the image file perhaps begin by "RIFF...

Re: Can't mount CD image of Win95 game

2022-12-19 Thread Thomas Schmitt
Hi, Yvan Masson wrote: > I have a CD image of an old Win 95 game. [...] > $ file cdimage.iso > cdimage.iso: data So the cdimage.iso is not an ISO 9660 filesystem or somehow defaced. (Does the image file perhaps begin by "RIFFCDXA" ?) What do you get from the fol

Can’t mount CD image of Win95 game

2022-12-19 Thread Yvan Masson
Hi list, I have a CD image of an old Win 95 game. I can mount it from dosbox with the `imgmount` command (`imgmount D cdimage.iso -t iso`), but could not mount it with Debian: $ file cdimage.iso cdimage.iso: data $ sudo mount cdimage.iso /mnt -o loop mount: /mnt/sshfs: wrong fs type, bad

Re: Installation and other problems ... [20 questions game].

2021-03-06 Thread David Wright
that's NETinst. Keep up. > Let me try and help narrow down some of the scope of what you're asking and > then see if we can help you on the debian-user list. Maybe you could: > > Pick one machine that you're wanting to install Debian on. [Just Debian, > for the moment]. &

Re: Part 2 {Re: Installation and other problems ... [20 questions game]}

2021-03-06 Thread IL Ka
> > I'm not sure what protocol would be running over the USB2 interface - maybe > PPTP - equivalent to some of the dial-up protocols. > A small note: PPTP works on top of IP, it is a VPN protocol. It encapsulates PPP protocol (which I believe you were talking about). PPP can run IP over

Re: Part 2 {Re: Installation and other problems ... [20 questions game]}

2021-03-06 Thread Andrew M.A. Cater
y way". > Second, it makes all installation logs conveniently available. > > > > > This is a game of twenty questions > > > > What's this machine going to be FOR? > > > > 1. What's the end goal for that machine? What do you want to use it for? > > Th

Part 2 {Re: Installation and other problems ... [20 questions game]}

2021-03-06 Thread Richard Owlett
Debian configured "my way". Second, it makes all installation logs conveniently available. This is a game of twenty questions What's this machine going to be FOR? 1. What's the end goal for that machine? What do you want to use it for? The immediate goal is diagnosing the problem of n

Re: Installation and other problems ... [20 questions game].

2021-03-06 Thread Richard Owlett
On 03/06/2021 05:46 AM, Andrew M.A. Cater wrote: Hi Richard, Hi yourself. Just how did you know I'd just finished my first cup of coffee? as one well past 'three score and ten' it's decaf :{ Looking at the threads from you over the last year+: I think I see a common pattern. Yep. Been

Re: Installation and other problems ... [20 questions game].

2021-03-06 Thread David
On Sat, 6 Mar 2021 at 22:46, Andrew M.A. Cater wrote: > Looking at the threads from you over the last year+: > I think I see a common pattern. This has been going on since 2015 or so. > Given that we can't actually sit by your side to do this: answers to some of > these in order may help us

Installation and other problems ... [20 questions game].

2021-03-06 Thread Andrew M.A. Cater
to them get confusing. Let me try and help narrow down some of the scope of what you're asking and then see if we can help you on the debian-user list. Maybe you could: Pick one machine that you're wanting to install Debian on. [Just Debian, for the moment]. This is a game of twenty

Re: Shell game? was Re: pmount could perhaps be of greater utility?

2019-05-08 Thread KHMan
On 5/9/2019 12:34 AM, David Wright wrote: On Wed 08 May 2019 at 14:08:03 (+0800), KHMan wrote: On Tue 07 May 2019 at 10:12:10 (+1000), David wrote: On Mon, 6 May 2019 at 23:53, Erik Christiansen wrote: On 06.05.19 09:03, Greg Wooledge wrote: On Sat, May 04, 2019 at 01:48:01PM +0200, Jonas

Re: Shell game? was Re: pmount could perhaps be of greater utility?

2019-05-08 Thread David Wright
On Wed 08 May 2019 at 14:08:03 (+0800), KHMan wrote: > > On Tue 07 May 2019 at 10:12:10 (+1000), David wrote: > > > On Mon, 6 May 2019 at 23:53, Erik Christiansen wrote: > > > > On 06.05.19 09:03, Greg Wooledge wrote: > > > > > On Sat, May 04, 2019 at 01:48:01PM +0200, Jonas Smedegaard wrote: >

Re: Shell game? was Re: pmount could perhaps be of greater utility?

2019-05-08 Thread KHMan
On Tue 07 May 2019 at 10:12:10 (+1000), David wrote: On Mon, 6 May 2019 at 23:53, Erik Christiansen wrote: > On 06.05.19 09:03, Greg Wooledge wrote: > > On Sat, May 04, 2019 at 01:48:01PM +0200, Jonas Smedegaard wrote: [snipped all] Hi Erik Maybe you would enjoy answering this question then?

Shell game? was Re: pmount could perhaps be of greater utility?

2019-05-07 Thread David Wright
On Tue 07 May 2019 at 10:12:10 (+1000), David wrote: > On Mon, 6 May 2019 at 23:53, Erik Christiansen > wrote: > > On 06.05.19 09:03, Greg Wooledge wrote: > > > On Sat, May 04, 2019 at 01:48:01PM +0200, Jonas Smedegaard wrote: > > > > Quoting Erik Christiansen (2019-05-04 08:43:53) > > > > > >

Bug with hack in bsdgames-2.17-26build1 - SIGSEGV when type 'i' after restoring a saved game - WITH A FIX!

2018-03-25 Thread Richard Henschel
Program hack core dumps when you restore a saved game and then enter 'i' to see Inventory.  The following patch to hack.o_init.c fixes the problem.  (Sorry if cut and paste changed tabs to spaces...)  I am running Ubuntu 17.10, but don't think platform matters. *** hack.o_init.c.old    2003

Re: i386 game without wine32

2018-03-21 Thread The Wanderer
On 2018-03-21 at 12:04, Josh W. wrote: > I have a x86_64 archetecture on my Debian Stretch system... I am trying to > play a i386 pc game but when i try to install wine32 in the terminal i get > the following message. > > josh@debian:/var/lib/dpkg$ sudo apt-get install wine32 &g

i386 game without wine32

2018-03-21 Thread Josh W.
I have a x86_64 archetecture on my Debian Stretch system... I am trying to play a i386 pc game but when i try to install wine32 in the terminal i get the following message. josh@debian:/var/lib/dpkg$ sudo apt-get install wine32 Reading package lists... Done Building dependency tree Reading state

nederlands versie van commerciele game data

2015-09-20 Thread Alexandre Detiste
Dag, Ik werk op Debian's game-data-packager project [1]. Bedoel van dit is om commerciele/"freeware" speel data te kunnen automatisch packagen in .deb voor lokale verbruik. Vandaag heb ik eerst nederlandstalig speel toegevoegd. "Hank's Quest: Slachtoffer Van Het Gebeuren." [

Re: WAS Re: debian 8 NOW game keyboard config

2015-04-13 Thread Ric Moore
On Sun, Apr 12, 2015 at 10:39:31PM -0400, Ric Moore wrote: On 04/11/2015 04:31 PM, Reco wrote: Hi. On Sat, 11 Apr 2015 16:00:11 -0400 Ric Moore wayward4...@gmail.com wrote: On 04/11/2015 03:05 PM, Reco wrote: dpkg-reconfigure -plow keyboard-configuration ric@iam:~$ sudo su - [sudo]

Re: WAS Re: debian 8 NOW game keyboard config solved

2015-04-13 Thread Ric Moore
On 04/12/2015 10:33 PM, Ric Moore wrote: On 04/11/2015 04:31 PM, Reco wrote: Hi. On Sat, 11 Apr 2015 16:00:11 -0400 Ric Moore wayward4...@gmail.com wrote: On 04/11/2015 03:05 PM, Reco wrote: dpkg-reconfigure -plow keyboard-configuration ric@iam:~$ sudo su - [sudo] password for ric:

Re: WAS Re: debian 8 NOW game keyboard config

2015-04-11 Thread Reco
Hi. On Sat, 11 Apr 2015 16:00:11 -0400 Ric Moore wayward4...@gmail.com wrote: On 04/11/2015 03:05 PM, Reco wrote: dpkg-reconfigure -plow keyboard-configuration ric@iam:~$ sudo su - [sudo] password for ric: root@iam:~# dpkg-reconfigure -plow keyboard-configuration update-rc.d: warning:

WAS Re: debian 8 NOW game keyboard config

2015-04-11 Thread Ric Moore
On 04/11/2015 03:05 PM, Reco wrote: dpkg-reconfigure -plow keyboard-configuration ric@iam:~$ sudo su - [sudo] password for ric: root@iam:~# dpkg-reconfigure -plow keyboard-configuration update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults update-rc.d:

Re: Help me run an old Windows game. PlayOnLinux? Wine?

2014-12-30 Thread Elimar Riesebieter
* Kevin O'Gorman kogor...@gmail.com [2014-12-29 14:58 -0800]: I have an image of the old Windows 98 Entertainment Pack floppy. I'd like to run one of the games that's on it, TIC.EXE. It's not in PlayOnLinux's list of applications or games, and I'm completely new to trying this. I could

Help me run an old Windows game. PlayOnLinux? Wine?

2014-12-29 Thread Kevin O'Gorman
I have an image of the old Windows 98 Entertainment Pack floppy. I'd like to run one of the games that's on it, TIC.EXE. It's not in PlayOnLinux's list of applications or games, and I'm completely new to trying this. I could use help, advice, warnings or pointers to a better place to get help.

Re: Help me run an old Windows game. PlayOnLinux? Wine?

2014-12-29 Thread Francesco Ariis
On Mon, Dec 29, 2014 at 02:58:00PM -0800, Kevin O'Gorman wrote: I have an image of the old Windows 98 Entertainment Pack floppy. I'd like to run one of the games that's on it, TIC.EXE. It's not in PlayOnLinux's list of applications or games, and I'm completely new to trying this. I remember

Re: Help me run an old Windows game. PlayOnLinux? Wine?

2014-12-29 Thread Kevin O'Gorman
On Mon, Dec 29, 2014 at 3:24 PM, Francesco Ariis fa...@ariis.it wrote: On Mon, Dec 29, 2014 at 02:58:00PM -0800, Kevin O'Gorman wrote: I have an image of the old Windows 98 Entertainment Pack floppy. I'd like to run one of the games that's on it, TIC.EXE. It's not in PlayOnLinux's list

Re: Help me run an old Windows game. PlayOnLinux? Wine?

2014-12-29 Thread Doug
On 12/29/2014 06:55 PM, Kevin O'Gorman wrote: On Mon, Dec 29, 2014 at 3:24 PM, Francesco Ariis fa...@ariis.it mailto:fa...@ariis.it wrote: On Mon, Dec 29, 2014 at 02:58:00PM -0800, Kevin O'Gorman wrote: I have an image of the old Windows 98 Entertainment Pack floppy. I'd like

Re: Help me run an old Windows game. PlayOnLinux? Wine?

2014-12-29 Thread Doug
On 12/29/2014 07:04 PM, Doug wrote: On 12/29/2014 06:55 PM, Kevin O'Gorman wrote: On Mon, Dec 29, 2014 at 3:24 PM, Francesco Ariis fa...@ariis.it mailto:fa...@ariis.it wrote: On Mon, Dec 29, 2014 at 02:58:00PM -0800, Kevin O'Gorman wrote: I have an image of the old Windows 98

Re: Help me run an old Windows game. PlayOnLinux? Wine? (SOLVED)

2014-12-29 Thread Kevin O'Gorman
On Mon, Dec 29, 2014 at 3:55 PM, Kevin O'Gorman kogor...@gmail.com wrote: On Mon, Dec 29, 2014 at 3:24 PM, Francesco Ariis fa...@ariis.it wrote: On Mon, Dec 29, 2014 at 02:58:00PM -0800, Kevin O'Gorman wrote: I have an image of the old Windows 98 Entertainment Pack floppy. I'd like to

Re: Building/Compiling game xonix without X11 for console only

2014-03-28 Thread Markos
Hi, How to play this game? Thanks, Markos On 26-03-2014 13:35, Hörmetjan Yiltiz wrote: Hi, I like `xonix' quite a lot. This game is so fun! But I prefer to play it from the console, rather than in an X window. The game originally written without X11 support. Here is man page xonix(6x

Building/Compiling game xonix without X11 for console only

2014-03-26 Thread Hörmetjan Yiltiz
Hi, I like `xonix' quite a lot. This game is so fun! But I prefer to play it from the console, rather than in an X window. The game originally written without X11 support. Here is man page xonix(6x): The original xonix game has been seen somewhere on an old PC/XT clone

Re: Steam game TF2 needs newer libc

2013-07-10 Thread Karl E. Jorgensen
Hi On Wed, Jul 10, 2013 at 06:25:24AM +0100, John Tate wrote: An update for steam has come out and now I can't run my favourite game TF2. /bin/sh: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.14' not found (required by /home/john/.local/share/Steam/ubuntu12_64/gameoverlayrenderer.so

Re: Steam game TF2 needs newer libc

2013-07-10 Thread John Tate
to be a part of something! Thanks for the tip. On Wed, Jul 10, 2013 at 7:19 PM, Karl E. Jorgensen karl.jorgen...@nice.com wrote: Hi On Wed, Jul 10, 2013 at 06:25:24AM +0100, John Tate wrote: An update for steam has come out and now I can't run my favourite game TF2. /bin/sh: /lib/x86_64-linux-gnu

Steam game TF2 needs newer libc

2013-07-09 Thread John Tate
An update for steam has come out and now I can't run my favourite game TF2. /bin/sh: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.14' not found (required by /home/john/.local/share/Steam/ubuntu12_64/gameoverlayrenderer.so) It's because it is written for Ubuntu basically, I figure testing

Re: [OT] Cierra The Linux Game Tome

2013-04-09 Thread Camaleón
El Tue, 09 Apr 2013 01:08:23 +0200, Pedro Gras escribió: aunque estaba muy descuidado y arrasado por el spam , cierra uno de los sitios míticos de Linux, The Linux Game Tome http://happypenguin.org , la referencia durante unos cuantos años para conseguir información sobre juegos para nuestro

[OT] Cierra The Linux Game Tome

2013-04-08 Thread Pedro Gras
Buenas, aunque estaba muy descuidado y arrasado por el spam , cierra uno de los sitios míticos de Linux, The Linux Game Tome http://happypenguin.org , la referencia durante unos cuantos años para conseguir información sobre juegos para nuestro querido sistema operativo. Ponen su base de datos en

Re: Is unlimited redeal no longer possible in Aisleriot's Klondike game?

2012-05-18 Thread Camaleón
On Wed, 16 May 2012 16:35:00 -0400, Patrick Wiseman wrote: It used to be one could edit klondike.scm, set redeal to -1, and so have infinite redeals. But klondike.scm no longer exists after a recent upgrade. Is there another way to get infinite redeals? Mmm, yes, it could be an upstream

Is unlimited redeal no longer possible in Aisleriot's Klondike game?

2012-05-16 Thread Patrick Wiseman
It used to be one could edit klondike.scm, set redeal to -1, and so have infinite redeals. But klondike.scm no longer exists after a recent upgrade. Is there another way to get infinite redeals? Thanks Patrick -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of

Re: Game for toddlers

2011-07-06 Thread Rob Owens
the mouse, clicking, dragging, using the keyboard, etc. It's great for beginners. childsplay -- This has less games than gcompris, but it's perhaps a little less overwhelming. It's big drawback is (last time I used it), you need to read in order to quit the game. Gcompris lets you quit visually

Re: Game for toddlers

2011-07-06 Thread Ralf Mardorf
the game. Gcompris lets you quit visually by clicking an icon. tuxpaint -- My kids really like this, especially the stamps. It's like Gimp for children. A very good program, once they have mouse skills. tuxmath, tuxtype -- These both have beginner levels that only require the child

Re: Game for toddlers

2011-07-06 Thread Preston Boyington
Ralf Mardorf wrote: snipped P.S. Be sure to give the kids their own accounts, because they will drag panels all over the screen, add countless Untitled Folders to the desktop, etc. My kids also liked the idea of having a secret password to log in. I used our last name, so they could practice

Re: Game for toddlers

2011-07-05 Thread Preston Boyington
T o n g wrote: Hi, Do you have any *first hand experiences* of games available in Debian that toddlers of 2 to 4 can enjoy? while not exactly a game, my daughter enjoyed playing with TuxPaint. there are plenty of stamps, colors, and sounds that kept her entertained while getting her used

Re: Game for toddlers

2011-07-04 Thread Lisi
a game on my computer? not Come on, time for the computer. HTH - rather than bores you ;-) - Lisi -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/201107042304.55645.lisi.re

Re: Game for toddlers

2011-07-04 Thread MRH
On 04/07/11 21:51, T o n g wrote: Hi, Do you have any *first hand experiences* of games available in Debian that toddlers of 2 to 4 can enjoy? Or, a bit OT, your *first hand experiences* of online games for toddlers please? I found my child extremely slow in picking up the idea of the games

Re: Game for toddlers

2011-07-04 Thread Pablo Sánchez
T o n g, my two children learnt with gcompris, starting when they were two years old. Little one, 3 years old now, realy likes it on linux and windows. Pablo Sánchez Hi, Do you have any *first hand experiences* of games available in Debian that toddlers of 2 to 4 can enjoy? Or, a bit OT,

Publicado Nautilus Game Library

2011-05-04 Thread Altair Linux
Por fin, llego la hora, despues de muchos retrasos por mil cosas. http://ngl.ayudaprogramacion.net/NGL_BETA-0.1.tar.gz Nautilus Game Library (NGL) es una libreria en C/C++ que combina el lenguaje C (y un poco de C++) con las librerias SDL para crear una forma de programar juegos 2D bajo Linux

OT: Web de Nautilus Game Library online

2010-12-21 Thread Altair Linux
http://nautilusgl.zobyhost.com Web basica online, con la informacion necesaria para bajarse la primera alfa de sourceforge, compilar y demas. Con esta version debe compilar y ejecutarse sin problemas el primer ejemplo que puse en YouTube, da una primera idea de por donde van las cosas. Como se

Game online

2010-11-02 Thread Alex PADOLY
Hi, Di you know a game online that I can play with firefox on Linux. Regards. Alex Une messagerie gratuite, garantie à vie et des services en plus, ça vous tente ? Je crée ma boîte mail www.laposte.net -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject

Re: Game online

2010-11-02 Thread Camaleón
On Tue, 02 Nov 2010 13:12:41 +0100, Alex PADOLY wrote: Di you know a game online that I can play with firefox on Linux. Regards. http://en.lmgtfy.com/?q=linux+online+games :-P Greetings, -- Camaleón -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject

Re: Game online

2010-11-02 Thread Alan Ianson
On Tue November 2 2010 05:12:41 am Alex PADOLY wrote: Di you know a game online that I can play with firefox on Linux. Regards. I like quakelive.com. I haven't run it in a while but it is much like running quake III.. one of many.. :) -- To UNSUBSCRIBE, email to debian-user-requ

Re: Game online

2010-11-02 Thread Kelly Clowers
On Tue, Nov 2, 2010 at 05:12, Alex PADOLY alex.pad...@laposte.net wrote: Hi, Di you know a game online that I can play with firefox on Linux. Regards. games.AdultSwim.com (may be mildly NSFW, but no, it isn't a porn site, it is Cartoon Network's late night division) popcap.com (commercial

Small Game RectsFight

2010-03-22 Thread Рустам
rectsfight2.tar.gz Description: GNU Zip compressed data

Re: Problems with play action in DopeWars game

2009-06-17 Thread AG
. Cheers, Eric Yeah - looked at doing that. Not much chance though. The SourceForge site lists last activity 2003 or so. Too bad - it was a fun game. Installed fine on my old machine but not on this. Even if there's no upstream activity, the bug could be fixed

Re: Problems with play action in DopeWars game

2009-06-17 Thread Tzafrir Cohen
On Wed, Jun 17, 2009 at 08:05:20AM +0100, AG wrote: What is very strange is that the problems are related to playing the game on this machine. My previous machine played it just fine, and it isn't the version either as far as I can tell, because I removed the Squeeze version

Re: Problems with play action in DopeWars game

2009-06-17 Thread AG
Tzafrir Cohen wrote: On Wed, Jun 17, 2009 at 08:05:20AM +0100, AG wrote: What is very strange is that the problems are related to playing the game on this machine. My previous machine played it just fine, and it isn't the version either as far as I can tell, because I removed

Re: Problems with play action in DopeWars game

2009-06-16 Thread Eric Gerlach
On Sat, Jun 13, 2009 at 05:09:33PM +0100, AG wrote: AG wrote: Hi When playing the GTK version of DopeWars in Squeeze, when one goes to sell one's purchases, the option to sell all at once doesn't work - it only allows 1 item at a time to be sold. Those of you who play the game may

Re: Problems with play action in DopeWars game

2009-06-16 Thread AG
who play the game may appreciate that selling several hundred items 1-by-1 is both tedious and a real drag to playing the game. I cannot lay my hands on the config file either, so cannot seem to change it from there if that is even an option. Any suggestions please? Thanks AG

Re: Problems with play action in DopeWars game

2009-06-16 Thread Eric Gerlach
Yeah - looked at doing that. Not much chance though. The SourceForge site lists last activity 2003 or so. Too bad - it was a fun game. Installed fine on my old machine but not on this. Even if there's no upstream activity, the bug could be fixed in the debian package. Less likely, true

Re: Problems with play action in DopeWars game

2009-06-13 Thread AG
AG wrote: Hi When playing the GTK version of DopeWars in Squeeze, when one goes to sell one's purchases, the option to sell all at once doesn't work - it only allows 1 item at a time to be sold. Those of you who play the game may appreciate that selling several hundred items 1-by-1 is both

Problems with play action in DopeWars game

2009-06-13 Thread AG
Hi When playing the GTK version of DopeWars in Squeeze, when one goes to sell one's purchases, the option to sell all at once doesn't work - it only allows 1 item at a time to be sold. Those of you who play the game may appreciate that selling several hundred items 1-by-1 is both tedious

tremulous game

2009-04-19 Thread Hashimoto
Hi, I just installed the game tremulous (aptitude install tremulous) but I can't play it. When I run tremulous the game opens but there's no server available on the list. I click on refresh but no servers shows up. Does anyone here play it ? Any idea ? Thanks

Re: tremulous game

2009-04-19 Thread Nuno Magalhães
# apt-cache search tremulous tremulous - Aliens vs Humans, team based FPS game with elements of an RTS tremulous-doc - Tremulous documentation tremulous-server - Tremulous server tremulous-data - Tremulous datas Install the server and config it for local use only? -- () ascii ribbon campaign

Re: tremulous game

2009-04-19 Thread Shams Fantar
Hashimoto wrote: Hi, I just installed the game tremulous (aptitude install tremulous) but I can't play it. When I run tremulous the game opens but there's no server available on the list. I click on refresh but no servers shows up. Does anyone here play it ? Any idea ? Thanks When

Re: Can you recommend a game in etch?

2009-04-03 Thread Michael Pobega
person shooters: prboom (doom engine) urbanterror (not a Debian package, http://urbanterror.net/) nexuiz (Quake-like deathmatch game) tremulous puzzle: worldofgoo (not free, $20 purchase; demo is available online though) frozen-bubble -- http://pobega.wordpress.com

Re: Can you recommend a game in etch?

2009-04-01 Thread Juha Tuuna
Freedroid is fun. Of course you can install Dosbox and play old DOS games. -- Juha Tuuna -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Re: Can you recommend a game in etch?

2009-04-01 Thread Long Wind
I have installed freedroid I haven't figure out how to play it. On Wed, Apr 1, 2009 at 2:56 AM, Juha Tuuna juha.tu...@iki.fi wrote: Freedroid is fun. Of course you can install Dosbox and play old DOS games. -- Juha Tuuna -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org

Can you recommend a game in etch?

2009-03-31 Thread Long Wind
I like simple action games Below are the kind of games I like: lbreakout2 tetris wolf3d for DOS from 3drealms raptor for DOS from 3drealms -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Re: Can you recommend a game in etch?

2009-03-31 Thread Michael Ekstrand
Long Wind longwind2...@gmail.com writes: I like simple action games Below are the kind of games I like: lbreakout2 tetris wolf3d for DOS from 3drealms raptor for DOS from 3drealms Frozen Bubble is good fun. So is rafkill. - Michael -- mouse, n: A device for pointing at the xterm in

Re: Can you recommend a game in etch?

2009-03-31 Thread Ron Johnson
On 2009-03-31 20:38, Long Wind wrote: I like simple action games Below are the kind of games I like: lbreakout2 tetris wolf3d for DOS from 3drealms raptor for DOS from 3drealms What DE/WM do you use? -- Scooty Puff, Sr The Doom-Bringer -- To UNSUBSCRIBE, email to

Re: Can you recommend a game in etch?

2009-03-31 Thread Long Wind
I use twm :) On Wed, Apr 1, 2009 at 12:20 AM, Ron Johnson ron.l.john...@cox.net wrote: On 2009-03-31 20:38, Long Wind wrote: I like simple action games Below are the kind of games I like: lbreakout2 tetris wolf3d for DOS from 3drealms raptor for DOS from 3drealms What DE/WM do you use?

game engine 2d escrito en xul?

2008-09-02 Thread The sent one.
alguien conoce algo o ha oido algo del tema? se me ocurre la posibilidad de hacer juegos multiplataforma usando gecko, alguna idea? -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

Re: How to launch installed chess game

2007-10-10 Thread Chris Bannister
On Sun, Oct 07, 2007 at 01:30:45PM +, Oscar Corte wrote: Hello: I used Synaptic Package Manager to install ?eboard? (described a A Graphical Chess program). The installation finished successfully but I can't find any option menu to launch it. Could somebody give me any hints in

Re: How to launch installed chess game

2007-10-10 Thread Daniel Burrows
The Debian menu entry for eboard should be in Games/Board. Daniel -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

How to launch installed chess game

2007-10-07 Thread Oscar Corte
Hello: I used Synaptic Package Manager to install “eboard” (described a A Graphical Chess program). The installation finished successfully but I can't find any option menu to launch it. Could somebody give me any hints in order to start the program? Thanks a lot in advance and regards

Re: How to launch installed chess game

2007-10-07 Thread Celejar
On Sun, 7 Oct 2007 13:30:45 + Oscar Corte [EMAIL PROTECTED] wrote: Hello: I used Synaptic Package Manager to install “eboard” (described a A Graphical Chess program). The installation finished successfully but I can't find any option menu to launch it. Could somebody give me any

Re: iceape-browser crashes on http://www.i-dac.com/game/door/door3.html

2007-06-16 Thread Gerard Robin
On Wed, Jun 06, 2007 at 03:45:26AM +, Oscar Blanco wrote: From: Oscar Blanco [EMAIL PROTECTED] To: Gerard Robin [EMAIL PROTECTED], debian-user@lists.debian.org Subject: Re: iceape-browser crashes on http://www.i-dac.com/game/door/door3.html 2007/6/3, Gerard Robin [EMAIL PROTECTED]: Hello

  1   2   3   >