Fic_Mon
It Wandered In From the Wastes

Code:
#include "..\headers\define.h"
#define NAME SCRIPT_GJUNKSEL
#include "..\headers\command.h"
procedure start;
procedure critter_p_proc;
procedure damage_p_proc;
procedure pickup_p_proc;
procedure talk_p_proc;
procedure look_at_p_proc;
procedure description_p_proc;
procedure use_skill_on_p_proc;
procedure Node998;
procedure Node999;
procedure Node001;
procedure Node002;
procedure Node003;
#define LVAR_Hostile (5)
#define LVAR_Personal_Enemy (6)
procedure start begin
end
procedure critter_p_proc begin
if (local_var(LVAR_Hostile) == 2) then begin
set_local_var(LVAR_Hostile,1);
attack(dude_obj);
end
end
procedure damage_p_proc begin
if (source_obj == dude_obj) then begin
set_local_var(LVAR_Personal_Enemy,1);
end
end
procedure pickup_p_proc begin
if (source_obj == dude_obj) then begin
set_local_var(LVAR_Hostile,1);
end
end
procedure talk_p_proc begin
if (obj_art_fid(dude_obj) == FID_HMWARR) or (obj_art_fid(dude_obj) == FID_HFPRIM) then begin
start_gdialog(NAME,self_obj,4,-1,-1);
gSay_Start;
call Node001();
gSay_End;
end_dialogue;
end
else begin
start_gdialog(NAME,self_obj,4,-1,-1);
gsay_start;
call Node002();
gsay_end;
end_dialogue;
end
end
procedure look_at_p_proc begin
script_overrides;
display_msg(mstr(100));
end
procedure description_p_proc begin
script_overrides;
display_msg(mstr(101));
end
procedure use_skill_on_p_proc begin
end
procedure Node998 begin
set_local_var(LVAR_Hostile,2);
end
procedure Node999 begin
end
procedure Node001 begin
Reply(mstr(200));
NOption(200,Node999,004);
end
procedure Node002 begin
Reply(mstr(201));
NOption(201,Node003,004);
end
procedure Node003 begin
call Node998();
end
I really dont know what is wrong with it, I registered the script and put it in the script folder, then slapped it onto a critter and it does nothing. In the mapper and in the game.