generic newbie sign #176

Parent #5Owner #361Flags read, fertileSource hellcore/hellcore.db

Aliases: generic newbie sign, sign, helpful sign

4 verbs · 33 properties · 0 children

Verbs

VerbSpecFlagsDefinerLines
readthis none nonerxd#1761
hear_event_arrivethis none thisrxd#17612
look_selfthis none thisrxd#1763
look_place_msgthis none thisrxd#1765

Properties

PropertyDefinerFlagsOwnerValue
seen#176rc#361{}
xp_award#176rc#36110
orphan_msg#176rc#361{}
handed#5rc#361<clear>
wield_msg#5rc#361<clear>
unwield_msg#5rc#361<clear>
size#5rc#361<clear>
look_place_msg#5rc#361"%IT is posted here."
value#5rc#361<clear>
get_msg#5rc#361<clear>
drop_msg#5rc#361<clear>
get_fail_msg#5rc#361<clear>
junk_ok#5rc#361<clear>
floats#5rc#361<clear>
long_name_msg#5rc#361<clear>
article#5rc#361<clear>
setup_list#5rc#361<clear>
health#5rc#361<clear>
health_max#5rc#361<clear>
min_skill#5rc#361<clear>
skill#5rc#361<clear>
recipe_for#5rc#361<clear>
carried_msg#5rc#361<clear>
aliases#1rc#361{"generic newbie sign", "sign", "helpful sign"}
description#1rc#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#1r#29{3024, 1298434174}
hidden_verbs#1rc#361<clear>
phelp_msg#1rc#361<clear>
weight#1rwc#361-1
owner_verbs#1rc#361<clear>
plural_name#1rc#361<clear>
client_image#1rc#361<clear>
listening#1rc#361<clear>

Ancestry

Ancestors (nearest first): #5 generic thing#1 root

Children: none

Call graph

calls n176_0 #176:read n176_2 #176:look_self n176_0->n176_2 n107_43 #107:tell n176_2->n107_43 n1_9 #1:look_self n176_2->n1_9 n176_1 #176:hear_event_arrive n176_1->n176_2 n176_3 #176:look_place_msg n1_43 #1:look_place_msg n176_3->n1_43

Source

read

Spec this none noneFlags rxdOwner #361Definer #176

Referenced by

none

Source

1this:look_self();

hear_event_arrive

Spec this none thisFlags rxdOwner #361Definer #176

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

Spec this none thisFlags rxdOwner #361Definer #176

Referenced by

Source

1player:tell($ansi.cyan, $ansi.bold_on);
2pass(@args);
3player:tell($ansi.reset);

look_place_msg

Spec this none thisFlags rxdOwner #361Definer #176

Referenced by

none

Source

1if (r = pass(@args))
2return ((($ansi.bold_on + $ansi.cyan) + r) + $ansi.white) + $ansi.reset;
3else
4return r;
5endif