stand #224

Parent #93Owner #361Flags readSource hellcore/hellcore.db

Aliases: stand

3 verbs · 19 properties · 0 children

Verbs

VerbSpecFlagsDefinerLines
_finishthis none thisrxd#2249
_startthis none thisrxd#2241
doing_msgthis none thisrxd#2246

Properties

PropertyDefinerFlagsOwnerValue
help_msg#93rc#361<clear>
duration#93rc#361<clear>
preemptible#93rc#361<clear>
unstoppable#93rc#361<clear>
dodge_mod#93rc#361<clear>
doing_msg#93rc#361<clear>
doing_to_msg#93rc#361<clear>
oabort_msg#93rc#361<clear>
can_parry#93rc#361<clear>
aliases#1rc#361{"stand"}
description#1rc#361<clear>
object_size#1r#29{0, 0}
hidden_verbs#1rc#361<clear>
phelp_msg#1rc#361<clear>
weight#1rc#361<clear>
owner_verbs#1rc#361<clear>
plural_name#1rc#361<clear>
client_image#1rc#361<clear>
listening#1rc#361<clear>

Ancestry

Ancestors (nearest first): #93 Generic Action#1 root

Children: none

Call graph

calls n224_0 #224:_finish n45_2 #45:has_verb n224_0->n45_2 n224_1 #224:_start n93_3 #93:duration n224_1->n93_3

Source

_finish

Spec this none thisFlags rxdOwner #361Definer #224

Referenced by

none

Source

1who = args[1];
2target = args[2][1];
3if ($object_utils:has_verb(target, "do_stand"))
4error = target:do_stand(who);
5if (!error)
6who.posture = "standing";
7who.location:broadcast_event(0, this, who, {target});
8endif
9endif

_start

Spec this none thisFlags rxdOwner #361Definer #224

Referenced by

none

Source

1return {this:duration(), 0};

doing_msg

Spec this none thisFlags rxdOwner #361Definer #224

Referenced by

none

Source

1who = args[1];
2if (args[2])
3return "standing up from " + args[2][1]:dname();
4else
5return "standing up";
6endif