Quasimodo #58456
Aliases: Quasimodo, modo, QM, toady, hunchback
4 verbs · 38 properties · 0 children
Verbs
| Verb | Spec | Flags | Definer | Lines |
|---|---|---|---|---|
eval peval | this none this | rx | #58456 | 12 |
moveto | this none this | rxd | #58456 | 1 |
eval_d | this none this | rx | #58456 | 12 |
call_verb | this none this | rxd | #58456 | 7 |
Properties
| Property | Definer | Flags | Owner | Value |
|---|---|---|---|---|
witnessing | #58456 | | — | not readable (E_PERM) |
rooms | #58456 | | — | {{"Living", #17}, {"Dining", #28}, {"Library", #1670}, {"Pool", #1428}} |
messages_going | #58456 | | — | not readable (E_PERM) |
mail_options | #58456 | | — | {{"expire", -2}} |
current_message | #58456 | | — | not readable (E_PERM) |
messages | #58456 | | — | not readable (E_PERM) |
features | #58456 | | — | {#55317} |
previous_connection | #58456 | | — | not readable (E_PERM) |
email_address | #58456 | | — | not readable (E_PERM) |
last_disconnect_time | #58456 | | — | 745283345 |
help | #58456 | | — | {#22999, #56204, #6524, #946, #6800} |
linebuffer | #58456 | | — | not readable (E_PERM) |
current_folder | #58456 | | — | not readable (E_PERM) |
all_connect_places | #58456 | | — | not readable (E_PERM) |
last_connect_place | #58456 | | — | not readable (E_PERM) |
lines | #58456 | | — | not readable (E_PERM) |
pq | #58456 | | — | "his" |
pqc | #58456 | | — | "His" |
ownership_quota | #58456 | | — | not readable (E_PERM) |
gender | #58456 | | — | "male" |
prc | #58456 | | — | "Himself" |
ppc | #58456 | | — | "His" |
poc | #58456 | | — | "Him" |
psc | #58456 | | — | "He" |
pr | #58456 | | — | "himself" |
pp | #58456 | | — | "his" |
po | #58456 | | — | "him" |
ps | #58456 | | — | "he" |
home | #58456 | | — | #175 |
password | #58456 | | — | not readable (E_PERM) |
first_connect_time | #58456 | | — | 745281942 |
size_quota | #58456 | | — | not readable (E_PERM) |
last_password_time | #58456 | | — | not readable (E_PERM) |
last_connect_attempt | #58456 | | — | not readable (E_PERM) |
key | #58456 | | — | not readable (E_PERM) |
aliases | #58456 | | — | {"Quasimodo", "modo", "QM", "toady", "hunchback"} |
description | #58456 | | — | "A shuffling hunchback with a vague resemblance to Charles Laughton. He's always friendly and eager to help the elders of the Bovine Illuminati." |
object_size | #58456 | | — | {8328, 1141286561} |
Ancestry
Ancestors (nearest first): none
Children: none
Source
eval peval
Referenced by
none
Source
1"eval(code)"; 2"Same as $no_one, but with a GM's permissions."; 3if (!$local.rpg:trusted(caller_perms())) 4 return E_PERM; 5endif 6set_task_perms(this); 7exp = args[1]; 8if (exp[1] != ";") 9 return eval(tostr("this=", caller, "; return ", exp, ";")); 10else 11 return eval(tostr("this=", caller, ";", exp, ";")); 12endif
moveto
Referenced by
none
Source
1return 0;
eval_d
Referenced by
none
Source
1":eval_d(code)"; 2"Same as $no_one, but with a GM's permissions."; 3if (!$local.rpg:trusted(caller_perms())) 4 return E_PERM; 5endif 6set_task_perms(this); 7exp = args[1]; 8if (exp[1] != ";") 9 return $code_utils:eval_d(tostr("this=", caller, "; return ", exp, ";")); 10else 11 return $code_utils:eval_d(tostr("this=", caller, ";", exp, ";")); 12endif
call_verb
Referenced by
none
Source
1"call_verb(object, verb name, args)"; 2"Same as $no_one, but with a GM's permissions."; 3if (!$local.rpg:trusted(caller_perms())) 4 return E_PERM; 5endif 6set_task_perms(this); 7return args[1]:(args[2])(@args[3]);