Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

warmux(6) [debian man page]

WARMUX(6)							   Games Manual 							 WARMUX(6)

NAME
Warmux - A convivial mass murder game. SYNOPSIS
warmux [-h|--help] [-v|--version] [-p|--play] [-i|--internet] [-s|--server] [-c|--client [ip]] [-d|--debug debug_masks] DESCRIPTION
Have the mascots of your favorite free software battle in the Warmux arena using dynamite, grenades, baseball bat and other weapons ... Exterminate your opponent in a funny 2D toon-style scenery. Each player (2 minimum, on the same PC) controls the team of his choice (tux, gnu, firefox, wilber,...) and must destroy his adversaries using more or less casual weapons. Although a minimum of strategy is required to be victorious, Warmux is pre-eminently a "convivial mass murder" game where, turn by turn, each team attempts to produce maximum damage to their opponents. CONTROLS
* Key left/right: walk to the left / to the right * Key up/down: Aim up/down * Key shift: Smaller aim increment/decrement when used with up or down. Smaller step while walking * Key 'b': ("Backwards") jump * Key enter: ("Horizontal") jump * Key backspace: ("Vertical") jump * Key tab: Switch to next or previous (when Ctrl is pressed too) character * Key 'c': Recenter to active character * Key space: Shoot. Exceptions: the parachute is automatically deployed, and teleportation is made with a mouse click. Warning: The automatic bazooka and air strike first need a target to be selected (select it with a left click) * Mouse right click: Show/hide weapons menu * Mouse left click on the map: Select a target for teleportation, automatic bazooka, or air strike * Mouse left click on a character: Make it active (if it's allowed) * Mouse move next to screen borders: Move the map * Key F1, F2, ... F5: Change weapon in category 1, 2, ... 5 * Key F10: Toggle Fullscreen * Key 'p': Pause the game * Key escape: Leave the game (confirmation necessary) SEE ALSO
Have a look at the official website http://warmux.org On the website, you will find some useful help: * List of weapons: http://warmux.org/wiki/en/weapons.php * List of maps: http://warmux.org/wiki/en/maps.php * How to write your own map: http://warmux.org/wiki/Create_your_own_map.php * List of skins: http://warmux.org/wiki/en/skins.php * Forum: http://www.warmux.org/forum/ AUTHOR
Warmux was written by: - Jean-Christophe DUBERGA <jcduberga@gmx.de> - Laurent DEFERT SIMONNEAU <lodesi2@yahoo.fr> - Lawrence AZZOUG <lawrenceazzoug@wanadoo.fr> - Matthieu FERTRE <matthieu.fertre@free.fr> - Renaud LOTTIAUX <renaud.lottiaux@free.fr> - Victor STINNER <victor.stinner@haypocalc.com> This manual page was originally written by Jean Parpaillon <artefact@altern.org>, for the Debian project (but may be used by others). It is maintained by the Warmux team. October 28, 2007 WARMUX(6)

Check Out this Related Man Page

Sort::Key::Register(3pm)				User Contributed Perl Documentation				  Sort::Key::Register(3pm)

NAME
Sort::Key::Register - tell Sort::Key how to sort new data types. SYNOPSYS
use Sort::Key::Register Person => sub { $_->surname, $_->name }, qw(string string); use Sort::Key::Register 'Color::Component' => 'integer'; use Sort::Key::Register Color => sub { $_->R, $_->G, $_->B }, ('Color::Component') x 3; DESCRIPTION
Sort::Key::Register allows one to register new data types with Sort::Key so that they can be sorted as natively supported ones. It works as a pragma module and doesn't export any function, all its functionality is provided via "use": use Sort::Key::Register ... To avoid collisions between modules registering types with the same name, you should qualify them with the package name. use Sort::Key::Register 'MyPkg::foo' => sub { $_ }, '-int'; # or using __PACKAGE__: use Sort::Key::Register __PACKAGE__, sub { $_ }, '-int'; USAGE use Sort::Key::Register $name => &multikeygen, @keytypes; registers type $name. &multikeygen is the multikey extraction function for the type and @keytypes are the types of the extracted keys. use Sort::Key::Register $name => $keytype; this 'use' is useful for simple types that are sorted as another type already registered, maybe changing the direction of the sort (ascending or descending). SEE ALSO
Sort::Key, Sort::Key::Maker. AUTHOR
Salvador Fandin~o, <sfandino@yahoo.com> COPYRIGHT AND LICENSE
Copyright (C) 2005 by Salvador Fandin~o This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.4 or, at your option, any later version of Perl 5 you may have available. perl v5.14.2 2012-06-30 Sort::Key::Register(3pm)
Man Page