generic newbie sign #176
Aliases: generic newbie sign, sign, helpful sign
4 verbs · 33 properties · 0 children
Verbs
| Verb | Spec | Flags | Definer | Lines |
|---|---|---|---|---|
read | this none none | rxd | #176 | 1 |
hear_event_arrive | this none this | rxd | #176 | 12 |
look_self | this none this | rxd | #176 | 3 |
look_place_msg | this none this | rxd | #176 | 5 |
Properties
| Property | Definer | Flags | Owner | Value |
|---|---|---|---|---|
seen | #176 | rc | #361 | {} |
xp_award | #176 | rc | #361 | 10 |
orphan_msg | #176 | rc | #361 | {} |
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 | "%IT is posted here." |
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 | {"generic newbie sign", "sign", "helpful sign"} |
description | #1 | rc | #361 | list of 3{"Welcome to the real world!", "", "You should probably find a weapon and some armor. Try 'Am' on your map (Ammu-Nation, a weapons shop) or 'Pr' (Protect Ya Neck, an armor shop)."} |
object_size | #1 | r | #29 | {3024, 1298434174} |
hidden_verbs | #1 | rc | #361 | <clear> |
phelp_msg | #1 | rc | #361 | <clear> |
weight | #1 | rwc | #361 | -1 |
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
read
Referenced by
none
Source
1this:look_self();
hear_event_arrive
Referenced by
none
Source
1if (is_player(args[3])) 2if (!(args[3] in this.seen)) 3this.seen = listappend(this.seen, args[3]); 4player = args[3]; 5fork (1) 6this:look_self(args[3]); 7if (this.xp_award) 8args[3]:award_xp(this.xp_award); 9endif 10endfork 11endif 12endif
look_self
Referenced by
- #176:read line 1:
this:look_self - #176:hear_event_arrive line 6:
this:look_self
Source
1player:tell($ansi.cyan, $ansi.bold_on); 2pass(@args); 3player:tell($ansi.reset);
look_place_msg
Referenced by
none
Source
1if (r = pass(@args)) 2return ((($ansi.bold_on + $ansi.cyan) + r) + $ansi.white) + $ansi.reset; 3else 4return r; 5endif