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



Fallout Wiki
54,069Articles
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 N/A
MSG file N/A
Transcript.png

procedure start;
procedure map_enter_p_proc;
procedure map_update_p_proc;
procedure start
begin
        if (script_action == 23) then begin
                call map_update_p_proc;
        end
        else begin
                if (script_action == 15) then begin
                        call map_enter_p_proc;
                end
        end
end
procedure map_enter_p_proc
begin
        reg_anim_func(1, 1);
        reg_anim_animate_forever(self_obj, 0);
        reg_anim_func(3, 0);
end
procedure map_update_p_proc
begin
        if (combat_is_initialized == 0) then begin
                reg_anim_func(1, 1);
                reg_anim_animate_forever(self_obj, 0);
                reg_anim_func(3, 0);
        end
end