Download Game! Currently 104 players and visitors. Last logged in:SpickHarrowedShigaDbv

BatMUD Forums > Ideas-wanted > Re:

 
 
#1
28 Mar 2012 19:23
 
 
"eq" is kinda spammy. It doesn't help that there's 9 lines at the end to
describe your armour coverage..

You have almost non-existent protection against general damage.
You have non-existent protection against bashing.
You have non-existent protection against cutting.
You have almost non-existent protection against stabbing.
A bit over half of your body is covered by armour.
Your armour improves your general protection to be meager.
Your armour improves your protection against bashing to be little.
Your armour improves your protection against cutting to be meager.
Your armour improves your protection against stabbing to be meager.

Could be shortened by almost half by something like:

A bit over half of your body is covered by armour.
Your armour improves your general protection from non-existent to meager.
Your armour improves your bashing protection from non-existent to little.
Your armour improves your cutting protection from non-existent to meager.
Your armour improves your stabbing protection from non-existent to meager.

I'm assuming that "eq" obeys cutter width.. why doesn't news?

 
Rating:
3
Votes:
5
 
 
Diolyx
N e w b i e  H e l p e r
19d, 5h, 25m, 5s old
Level:
50
 
 
#2
28 Mar 2012 21:04
 
 
Quote:
"eq" is kinda spammy. It doesn't help that there's 9 lines at the end to
describe your armour coverage..

You have almost non-existent protection against general damage.
You have non-existent protection against bashing.
You have non-existent protection against cutting.
You have almost non-existent protection against stabbing.
A bit over half of your body is covered by armour.
Your armour improves your general protection to be meager.
Your armour improves your protection against bashing to be little.
Your armour improves your protection against cutting to be meager.
Your armour improves your protection against stabbing to be meager.

Could be shortened by almost half by something like:

A bit over half of your body is covered by armour.
Your armour improves your general protection from non-existent to meager.
Your armour improves your bashing protection from non-existent to little.
Your armour improves your cutting protection from non-existent to meager.
Your armour improves your stabbing protection from non-existent to meager.

I'm assuming that "eq" obeys cutter width.. why doesn't news?
'eq' is a command-alias to 'equipment brief'
No more spam.

 
Rating:
1
Votes:
1
 
 
Tugmeno
162d, 3h, 32m, 50s old
Level:
75
 
 
#3
28 Mar 2012 21:42
 
 
Quote:
'eq' is a command-alias to 'equipment brief'
I used to do this (especially as a barsoomian, the spam gets unwieldly).
However, other eq commands (like eq weight) won't work with that command (and
you have to do stuff like @@eq weight).

 
 
 
Tyril
N e w b i e  H e l p e r
2y, 358d, 23h, 2m, 53s old
Level:
100
 
 
#4
28 Mar 2012 22:15
 
 
Tugmeno wrote:
Quote:
A bit over half of your body is covered by armour.
Your armour improves your general protection from non-existent to meager.
Your armour improves your bashing protection from non-existent to little.
Your armour improves your cutting protection from non-existent to meager.
Your armour improves your stabbing protection from non-existent to meager.

I'm assuming that "eq" obeys cutter width.. why doesn't news?
'eq' is a command-alias to 'equipment brief'
No more spam.
Also 'eq brief' does not show coverage and protection which people
may want to know.

--Hair

 
 
 
Hair
N e w b i e  H e l p e r
2y, 150d, 3h, 21m, 24s old
Level:
74
 
 
#5
29 Mar 2012 01:30
 
 
Tugmeno wrote:
'eq' is a command-alias to 'equipment brief'
No more spam.
I still want to see my prot level and coverage, 9 lines is just a little much.
That being said, you gave me an idea which does work just fine:

command eq grep -v '^You have' equipment $*

Now I just feel sorry for all the new players or anyone that missed this
thread..

 
 
 
Xyloid
N e w b i e  H e l p e r
2y, 330d, 8h, 25m, 32s old
Level:
100
 
 
#6
29 Mar 2012 01:45
 
 
Xyloid wrote:
Tugmeno wrote:
'eq' is a command-alias to 'equipment brief'
No more spam.
I still want to see my prot level and coverage, 9 lines is just a little much.
That being said, you gave me an idea which does work just fine:

command eq grep -v '^You have' equipment $*

Now I just feel sorry for all the new players or anyone that missed this
thread..
./def -agGL -Fp500000 -mregexp -t"^You have (.+) protection against general
damage.$" eqspam1 = \
. /def -n1 -Fp500000 -mregexp -t"^Your armour improves your general
protection to be (.+).$$" eqspam1b = \
. /substitute Your armour improves general protection from %P1 to %%P1.
./def -agGL -Fp500000 -mregexp -t"^You have (.+) protection against bashing.$"
eqspam2 = \
. /def -n1 -Fp500000 -mregexp -t"^Your armour improves your protection
against bashing to be (.+).$$" eqspam2b = \
. /substitute Your armour improves bashing protection from %P1 to %%P1.
./def -agGL -Fp500000 -mregexp -t"^You have (.+) protection against cutting.$"
eqspam3 = \
. /def -n1 -Fp500000 -mregexp -t"^Your armour improves your protection
against cutting to be (.+).$$" eqspam3b = \
. /substitute Your armour improves cutting protection from %P1 to %%P1.
./def -agGL -Fp500000 -mregexp -t"^You have (.+) protection against
stabbing.$" eqspam4 = \
. /def -n1 -Fp500000 -mregexp -t"^Your armour improves your protection
against stabbing to be (.+).$$" eqspam4b = \
. /substitute Your armour improves stabbing protection from %P1 to %%P1.

 
 
 
Xyloid
N e w b i e  H e l p e r
2y, 330d, 8h, 37m, 10s old
Level:
100