Difference between revisions of "Talk:Autopickup exception"

From NetHackWiki
Jump to navigation Jump to search
(Created page with "==How to make a .slashemrc-gtk config file in linux== Create ~/.slashemrc-gtk (the -gtk is necessary for the GTK version of the game). Its contents should contain something like…")
 
 
Line 1: Line 1:
 
==How to make a .slashemrc-gtk config file in linux==
 
==How to make a .slashemrc-gtk config file in linux==
Create ~/.slashemrc-gtk (the -gtk is necessary for the GTK version of the game). Its contents should contain something like the following:
+
Create ~/.slashemrc-gtk (the -gtk is necessary for the GTK version of the game). Its contents should contain something like the following:
 
  OPTIONS=name:Bucket,catname:Tequilla,dogname:Beowulf,horsename:MrEd
 
  OPTIONS=name:Bucket,catname:Tequilla,dogname:Beowulf,horsename:MrEd
 
  OPTIONS=color,hilite_pet,lit_corridor
 
  OPTIONS=color,hilite_pet,lit_corridor
Line 11: Line 11:
 
  TILES=name:Big 3D tiles,file:x11big3dtiles,transparent,pseudo3D
 
  TILES=name:Big 3D tiles,file:x11big3dtiles,transparent,pseudo3D
 
  OPTIONS=tiles:Small tiles
 
  OPTIONS=tiles:Small tiles
This will start the game with the small tiles, and auto-pickup only money. Then you must add to your ~/.bashrc (or appropriate shell rc) the following: export SLASHEMOPTIONS=~/.slashemrc-gtk
+
This will start the game with the small tiles, and auto-pickup only money. Then you must add to your ~/.bashrc (or appropriate shell rc) the following:
Be sure to "''source ~/.bashrc"'' after saving. Most of this info was copied from [http://www.basicallytech.com/blog/index.php?/archives/16-SlashEM-on-Linux-configure,-install,-setup-and-play.html here] .
+
export SLASHEMOPTIONS=~/.slashemrc-gtk
 +
 
 +
 
 +
Be sure to "''source ~/.bashrc"'' after saving. Most of this info was copied from [http://www.basicallytech.com/blog/index.php?/archives/16-SlashEM-on-Linux-configure,-install,-setup-and-play.html here] .

Latest revision as of 05:02, 2 October 2010

How to make a .slashemrc-gtk config file in linux

Create ~/.slashemrc-gtk (the -gtk is necessary for the GTK version of the game). Its contents should contain something like the following:

OPTIONS=name:Bucket,catname:Tequilla,dogname:Beowulf,horsename:MrEd
OPTIONS=color,hilite_pet,lit_corridor
OPTIONS=help,!news,mail,silent,time
OPTIONS=showexp,showrace,showweight,showdmg
OPTIONS=pickup_types:$

TILES=name:Small tiles,file:x11tiles
TILES=name:Big tiles,file:x11bigtiles,transparent
TILES=name:Big 3D tiles,file:x11big3dtiles,transparent,pseudo3D
OPTIONS=tiles:Small tiles

This will start the game with the small tiles, and auto-pickup only money. Then you must add to your ~/.bashrc (or appropriate shell rc) the following:

export SLASHEMOPTIONS=~/.slashemrc-gtk


Be sure to "source ~/.bashrc" after saving. Most of this info was copied from here .