stand #224
Aliases: stand
3 verbs · 19 properties · 0 children
Verbs
| Verb | Spec | Flags | Definer | Lines |
|---|---|---|---|---|
_finish | this none this | rxd | #224 | 9 |
_start | this none this | rxd | #224 | 1 |
doing_msg | this none this | rxd | #224 | 6 |
Properties
| Property | Definer | Flags | Owner | Value |
|---|---|---|---|---|
help_msg | #93 | rc | #361 | <clear> |
duration | #93 | rc | #361 | <clear> |
preemptible | #93 | rc | #361 | <clear> |
unstoppable | #93 | rc | #361 | <clear> |
dodge_mod | #93 | rc | #361 | <clear> |
doing_msg | #93 | rc | #361 | <clear> |
doing_to_msg | #93 | rc | #361 | <clear> |
oabort_msg | #93 | rc | #361 | <clear> |
can_parry | #93 | rc | #361 | <clear> |
aliases | #1 | rc | #361 | {"stand"} |
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 | rc | #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): #93 Generic Action → #1 root
Children: none
Call graph
Source
_finish
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
Referenced by
none
Source
1return {this:duration(), 0};
doing_msg
Referenced by
none
Source
1who = args[1]; 2if (args[2]) 3return "standing up from " + args[2][1]:dname(); 4else 5return "standing up"; 6endif