![]() | This is the transcript of a script file, which runs certain tasks in the game upon execution. |
---|
Details | |
---|---|
Type | Decompiled script |
SCRIPTS.LST comment | dry bones from a body in the Glow |
MSG file | BONEBODY.MSG |
procedure start;
variable rndx;
procedure start
begin
if ((script_action == 21) or (script_action == 3)) then begin
script_overrides;
rndx := random(1, 3);
if (rndx == 1) then begin
display_msg(message_str(293, 100));
end
else begin
if (rndx == 2) then begin
display_msg(message_str(293, 101));
end
else begin
if (rndx == 3) then begin
display_msg(message_str(293, 102));
end
end
end
end
end