bitmap modifiers

Is there a way to get the return value of the bitmap modifiers? I checked ashref mod for something along the lines of bitmap_modifier(), but didn't find anything. I just tried modtrace and maximize on clownosity and found out the bitmap modifiers aren't supported by those commands?
 

Bale

Minion
Like this:

Code:
[COLOR="#808000"]> ash numeric_modifier($item[bloody clown pants], "clownosity")[/COLOR]

Returned: 1.0

[COLOR="Olive"]> ash numeric_modifier($item[clown harness], "clownosity")[/COLOR]

Returned: 2.0

[COLOR="#808000"]> ash numeric_modifier($item[acid-squirting flower], "clownosity")[/COLOR]

Returned: 0.0

To find your current clownosity:

Code:
[COLOR="Olive"]> ash numeric_modifier("clownosity")[/COLOR]

Returned: 0.0
Putting on bloody clown pants...
Equipment changed.

[COLOR="#808000"]> ash numeric_modifier("clownosity")[/COLOR]

Returned: 1.0
 
Top