Page 1 of 1

How to exclude items from game search

PostPosted: Saturday, 4th August 2012, 08:53
by wux
Hi guys.

Hoping someone can help me with this. I have been through the options guide and I cant seem to find out how to do the below. There is a section on options for "Travel and Exploration" in the guide but it doesnt explain it very clearly, unless my brain is more fuddled than usual tonight.

Searching
How do I prevent certain items from showing up when I perform a search using Ctrl-F.
For example - corpses and skeletons

Auto-Explore/Travel/Resting
How do I prevent it from stopping when -
my hunger state changes
my corpse chunks rot or disappear

Thanks,
Wux

Re: How to exclude items from game search

PostPosted: Saturday, 4th August 2012, 09:23
by CommanderC
wux wrote:Searching
How do I prevent certain items from showing up when I perform a search using Ctrl-F.
For example - corpses and skeletons

Use a regular expression like this:
something && !!corpse && !!skeleton

wux wrote:Auto-Explore/Travel/Resting
How do I prevent it from stopping when -
my hunger state changes
my corpse chunks rot or disappear

Add these lines to your init.txt:
  Code:
ignore := runrest_ignore_message
ignore = You are feeling hungry
ignore = You are feeling very hungry
ignore = You are near starving
ignore = You smell rotting flesh
ignore = You smell something rotten
ignore = Some of the corpses in your inventory have partially rotted away
ignore = Some of the chunks of flesh in your inventory have completely rotted away

Re: How to exclude items from game search

PostPosted: Saturday, 4th August 2012, 12:42
by wux
wux wrote:
Searching
How do I prevent certain items from showing up when I perform a search using Ctrl-F.
For example - corpses and skeletons

Use a regular expression like this:
something && !!corpse && !!skeleton


Thanks Commander C. But I should of clarified this by saying that I meant to make it so these things never show up in all my searches. Am I able to do this in the options?

Add these lines to your init.txt:
Code:
ignore := runrest_ignore_message
ignore = You are feeling hungry
ignore = You are feeling very hungry
ignore = You are near starving
ignore = You smell rotting flesh
ignore = You smell something rotten
ignore = Some of the corpses in your inventory have partially rotted away
ignore = Some of the chunks of flesh in your inventory have completely rotted away


Great, I will try this tonight.