scoreboard chip #168
Aliases: scoreboard chip, chip
5 verbs · 39 properties · 0 children
Verbs
| Verb | Spec | Flags | Definer | Lines |
|---|---|---|---|---|
can_glob | this none this | rxd | #168 | 1 |
is_scorable | this none this | rxd | #168 | 1 |
display | this none this | rxd | #168 | 10 |
tree_tag | this none this | rxd | #168 | 14 |
calculate | this none this | rxd | #168 | 1 |
Properties
| Property | Definer | Flags | Owner | Value |
|---|---|---|---|---|
(minimum_xp) | #168 | rc | #361 | 10000 |
(score_cache) | #168 | rc | #361 | {} |
(button_name) | #168 | rc | #361 | "" |
(maximum_disconnect_days) | #168 | rc | #361 | 90 |
(ignore_players) | #168 | rc | #361 | {} |
(ignore_rooms) | #168 | rc | #361 | {#-1} |
(person_title) | #168 | rc | #361 | "" |
(ignore_corps) | #168 | rc | #361 | {} |
(brag_msg) | #168 | rc | #361 | "I'm the #%position %[tperson_title] in the world." |
handed | #5 | rc | #361 | <clear> |
wield_msg | #5 | rc | #361 | <clear> |
unwield_msg | #5 | rc | #361 | <clear> |
size | #5 | rc | #361 | <clear> |
look_place_msg | #5 | rc | #361 | <clear> |
value | #5 | rc | #361 | <clear> |
get_msg | #5 | rc | #361 | <clear> |
drop_msg | #5 | rc | #361 | <clear> |
get_fail_msg | #5 | rc | #361 | <clear> |
junk_ok | #5 | rc | #361 | <clear> |
floats | #5 | rc | #361 | <clear> |
long_name_msg | #5 | rc | #361 | <clear> |
article | #5 | rc | #361 | <clear> |
setup_list | #5 | rc | #361 | <clear> |
health | #5 | rc | #361 | <clear> |
health_max | #5 | rc | #361 | <clear> |
min_skill | #5 | rc | #361 | <clear> |
skill | #5 | rc | #361 | <clear> |
recipe_for | #5 | rc | #361 | <clear> |
carried_msg | #5 | rc | #361 | <clear> |
aliases | #1 | rc | #361 | {"scoreboard chip", "chip"} |
description | #1 | rc | #361 | <clear> |
object_size | #1 | r | #29 | {0, 0} |
hidden_verbs | #1 | rc | #361 | <clear> |
phelp_msg | #1 | rc | #361 | <clear> |
weight | #1 | rwc | #361 | <clear> |
owner_verbs | #1 | rc | #361 | <clear> |
plural_name | #1 | rc | #361 | <clear> |
client_image | #1 | rc | #361 | <clear> |
listening | #1 | rc | #361 | <clear> |
Ancestry
Ancestors (nearest first): #5 generic thing → #1 root
Children: none
Call graph
Source
can_glob
Referenced by
none
Source
1return 0;
is_scorable
Referenced by
none
Source
1return 0;
display
Referenced by
none
Source
1d = this:description(); 2if (typeof(d) != LIST) 3if (d) 4d = {d}; 5else 6d = {}; 7endif 8endif 9return d; 10return {"An unconfigured display."};
tree_tag
Referenced by
none
Source
1r = ""; 2if (this.button_name) 3r = ((r + " [") + this.button_name) + "]"; 4endif 5if ("calculate" in verbs(this)) 6r = r + " calc"; 7endif 8if ("display" in verbs(this)) 9r = r + " disp"; 10endif 11if ("is_scorable" in verbs(this)) 12r = r + " is_s"; 13endif 14return r;
calculate
Referenced by
none
Source
1return;