Quasimodo #58456

Parent Owner Flags Source rpg_march_2006/toady.txt

Aliases: Quasimodo, modo, QM, toady, hunchback

4 verbs · 38 properties · 0 children

Verbs

VerbSpecFlagsDefinerLines
eval pevalthis none thisrx#5845612
movetothis none thisrxd#584561
eval_dthis none thisrx#5845612
call_verbthis none thisrxd#584567

Properties

PropertyDefinerFlagsOwnerValue
witnessing#58456not readable (E_PERM)
rooms#58456{{"Living", #17}, {"Dining", #28}, {"Library", #1670}, {"Pool", #1428}}
messages_going#58456not readable (E_PERM)
mail_options#58456{{"expire", -2}}
current_message#58456not readable (E_PERM)
messages#58456not readable (E_PERM)
features#58456{#55317}
previous_connection#58456not readable (E_PERM)
email_address#58456not readable (E_PERM)
last_disconnect_time#58456745283345
help#58456{#22999, #56204, #6524, #946, #6800}
linebuffer#58456not readable (E_PERM)
current_folder#58456not readable (E_PERM)
all_connect_places#58456not readable (E_PERM)
last_connect_place#58456not readable (E_PERM)
lines#58456not readable (E_PERM)
pq#58456"his"
pqc#58456"His"
ownership_quota#58456not 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#58456not readable (E_PERM)
first_connect_time#58456745281942
size_quota#58456not readable (E_PERM)
last_password_time#58456not readable (E_PERM)
last_connect_attempt#58456not readable (E_PERM)
key#58456not 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

Spec this none thisFlags rxOwner #58456Definer #58456

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

Spec this none thisFlags rxdOwner #58456Definer #58456

Referenced by

none

Source

1return 0;

eval_d

Spec this none thisFlags rxOwner #58456Definer #58456

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

Spec this none thisFlags rxdOwner #58456Definer #58456

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]);