×
Create a new article
Write your page title here:
We currently have 56,058 articles on Fallout Wiki. Type your article name above or click on one of the titles below and start writing!



Fallout Wiki
56,058Articles
FO76 ui roleplay team.pngThis 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
Transcript.png

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