LVAR dosent seem to respond - stuck on -1

Zorchar

Look, Ma! Two Heads!
Hey guys.

I've been trying for hours now to get this script to work
~~~

procedure talk_p_proc begin

start_gdialog(NAME,self_obj,4,-1,-1);
gSay_Start;
if (local_var(LVAR_Herebefore) == 1) then call Node010;
else call Node001;
set_local_var(LVAR_Herebefore,1);
gSay_End;
end_dialogue;

end
~~~
I have tried like twenty different ways of syntax. basically i'm trying to get one node if i talked to the guy, and another if i didn't yet.

I am using this script on an "average peasant" proto(I think it's relevant)
I know that the nodes do change accordingly, if i change the local var to a global one.
I also noticed that the following generic default script isn't working on the selected critter. (he always get's the second option, even at first)
~~~
procedure look_at_p_proc begin
script_overrides;
if (local_var(LVAR_Looked_Before) == 0) then begin
set_local_var(LVAR_Looked_Before,1);
display_msg(mstr(100));

end
else
display_msg(mstr(101));
end

~~~

So my guess is, its something with local variables.
Please help. Thanks

Edit:

The only place i defined the variable is in the critter's script. which the aforementioned syntax is part of.
Also defined 2 more local variables to the script. indexed 9 and 10
 
Last edited:
There's nothing wrong with the local variable.

I think it should be like this:
Code:
procedure talk_p_proc begin

if (local_var(LVAR_Herebefore) == 0) 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  Node010;
gSay_End;
end_dialogue;
end

set_local_var(LVAR_Herebefore,1);

end

This way you start with Node001 and LVAR_Herebefore is set to 1 and on the next talk it should go to Node010.
Maybe yours would work too if you move set_local_var(LVAR_Herebefore,1); before the last end, so it's in the main talk_p_proc procedure, I don't know, I just used on the official script to do the above.
 
Thanks for replying so quickly. Didn't work for me, though. how can i display/see the current value of the variable?
I think it might be a setting thing, cuz the variable seems to be not equal to 1 or 0.
 
Do you have these two defined:
#define LVAR_Herebefore (4)
#define LVAR_Looked_Before (7)

?

Try this:

Code:
procedure look_at_p_proc begin
   script_overrides;

   if (local_var(LVAR_Looked_Before) == 0) then begin
       display_msg("LVAR " +local_var(LVAR_Looked_Before));
       set_local_var(LVAR_Looked_Before,1);
       display_msg(mstr(100)+local_var(LVAR_Looked_Before));
   end
   else
       display_msg(mstr(101)+local_var(LVAR_Looked_Before));
end

It shows you the Looked before variable right before changing it to 1, then again, together with the mstr 100 after changing it to 1 and finally together with mstr 101 when you look again.

You could do similar stuff in dialogue, making it show the value of of Herebefore
 
good. at least the display msg works.
it gives me a value of -1. so the only massage i get obviously is Henry-1
why -1?

Edit:
it remains stuck on -1 even after changing to this

procedure look_at_p_proc begin
script_overrides;

if (local_var(LVAR_Looked_Before) == 0) then begin
display_msg("LVAR " +local_var(LVAR_Looked_Before));
set_local_var(LVAR_Looked_Before,1);
display_msg(mstr(100)+local_var(LVAR_Looked_Before));
end
else
display_msg(mstr(101)+local_var(LVAR_Looked_Before));
set_local_var(LVAR_Looked_Before,1);
display_msg("LVAR " +local_var(LVAR_Looked_Before));
end
 
No idea, I barely started scripting and that never happened to me.
If it's -1 it sounds like it's not defined correctly, but I don't know.

Look at one of the official scripts to see how it's done there. For example AHHAKUN.SSL
 
Thank you FtR.

Can it be anyway related to the fact that I am using more then 255 maps? I mean, I have no idea what's happening. I think all local variables don't work, even in broken hills for instance i get the same look_at massages.
or maybe an sfall option?

Sorry for being so impatient. I hope someone knows what to do.
 
Did you define the correct amount of LVARs in the scripts.lst file?

Also you people seriously need to start using macros. This whole wall of text above can be shortened to this:
Code:
procedure talk_p_proc begin
   if (local_var(LVAR_Herebefore) == 0) then begin
       start_dialog_at_node(Node001);
   end
   else begin
       start_dialog_at_node(Node010);
   end
   set_local_var(LVAR_Herebefore,1);
end
^ if this code doesn't work, your LVAR isn't correctly defined and / or overwritten somewhere else in the script.
 
Thanks Lexx.

Didn't work for me, unfortunately. the LVAR is still -1. I don't know how else I can define it besides #define. sfall editor dosent say i have an error.

the code do work in other scripts, so i'll just start over from scratch i think.
 
I took the exact script from acklint and changed define name only to new script name NHBlinth

now look at their variables in the side. their variables are different. last two lines are of NHBLinth script.
upload_2018-8-21_5-11-30.png



I've seen on the scripts.lst that it has a # local_vars=10 or a diffrent number. does the number matter? iv'e tried changing it but it didnt do anything.
 

Attachments

  • upload_2018-8-21_5-5-26.png
    upload_2018-8-21_5-5-26.png
    73.3 KB · Views: 415
  • upload_2018-8-21_5-9-20.png
    upload_2018-8-21_5-9-20.png
    498.5 KB · Views: 418
This number defines how many LVARs are used in the script. If the number is too low, later variables won't be recognized.

Post your whole script in [ code ] [ /code ] tags.
 
I changed the script many times. the recent script is the default ACKLINT.ssl with the name changed to SCRIPT_NHBlinth, and the look_at protocol changed to display value.

Code:
/*
    Copyright 1998-2003 Interplay Entertainment Corp.  All rights reserved.
*/

/*
        Name:
        Location:
        Description:

        Log:
           Please note any changes that have been made to the file in Updated. Then comment
           the code which you have changed/altered/commented out. Please, do not delete any
           code which was written.

           Created:

           Updated:
*/

/* Include Files */

/* Note, the Following Lines need to be in this order so that
   the script will be compilable. The define Name is referenced
   in a module from define.h and used in command.h. Please do
   not change the ordering.
        -rwh2   11/13/97
*/
#include "..\headers\define.h"
//#include "..\headers\<TownName.h>"

#define NAME                    SCRIPT_NHBlinth
#define TOWN_REP_VAR            (GVAR_TOWN_REP_ARROYO)

#include "..\headers\command.h"
#include "..\headers\ModReact.h"


/* Standard Script Procedures */
procedure start;
procedure critter_p_proc;
procedure pickup_p_proc;
procedure talk_p_proc;
procedure destroy_p_proc;
procedure look_at_p_proc;
procedure description_p_proc;
procedure use_skill_on_p_proc;
procedure damage_p_proc;
procedure map_enter_p_proc;

/* Script Specific Procedure Calls */
procedure Node998;                                      // This Node is Always Combat
procedure Node999;                                      // This Node is Always Ending


// The next lines are added in by the Designer Tool.
// Do NOT add in any lines here.
//~~~~~~~~~~~~~~~~ DESIGNER TOOL STARTS HERE

procedure Node001;
procedure Node002;
procedure Node003;
procedure Node004;
procedure Node005;
procedure Node006;
procedure Node007;
procedure Node008;

//~~~~~~~~~~~~~~~~ DESIGN TOOL ENDS HERE
// The Following lines are for anything that is not needed to be
// seen by the design Tool


/* Local Variables which are saved. All Local Variables need to be
   prepended by LVAR_ */
#define LVAR_Herebefore                 (4)
#define LVAR_Hostile                    (5)
#define LVAR_Personal_Enemy             (6)
#define LVAR_Looked_Before              (7)
#define LVAR_Taught_Player              (8)

/* Imported variables from the Map scripts. These should only be
   pointers and variables that need not be saved. If a variable
   Needs to be saved, make it a map variable (MVAR_) */


/* Local variables which do not need to be saved between map changes. */
variable Only_Once:=0;

procedure start begin
end

/* This procedure will get called each time that the map is first entered. It will
   set up the Team number and AI packet for this critter. This will override the
   default from the prototype, and needs to be set in scripts. */
procedure map_enter_p_proc begin
   variable pole;

   Only_Once:=0;
   critter_add_trait(self_obj,TRAIT_OBJECT,OBJECT_TEAM_NUM,TEAM_ARROYO);
   critter_add_trait(self_obj,TRAIT_OBJECT,OBJECT_AI_PACKET,AI_ARROYO_WARRIOR);

   if ((tile_contains_obj_pid(21303,0,PID_TEMPLE_SKULL_POLE)) and (global_var(GVAR_START_ARROYO_TRIAL) != 0)) then begin
       pole:=tile_contains_pid_obj(21303,0,PID_TEMPLE_SKULL_POLE);
       move_to(pole,19698,0);
   end
end


/* Every heartbeat that the critter gets, this procedure will be called. Anything from
   Movement to attacking the player on sight can be placed in here.*/
procedure critter_p_proc begin

/* If the critter is mad at the player for any reason, it will attack and remember to attack
   the player should the game be saved and loaded repeatedly. Additionally, if any special
   actions need to be taken by the critter based on previous combat, the critter will remember
   this as well. */

   if ((local_var(LVAR_Hostile) == 2) and (obj_can_see_obj(self_obj,dude_obj))) then begin
       set_local_var(LVAR_Hostile,1);
       attack(dude_obj);
   end

end

/* Whenever the critter takes damage of any type, this procedure will be called. Things
   like setting ENEMY_ and LVAR_Personal_Enemy can be set here. */
procedure damage_p_proc begin

/* If the player causes damage to this critter, then he will instantly consider the player
   his personal enemy. In Critter_Proc or through dialog, actions will be taken against
   the player for his evil acts. */
   if (source_obj == dude_obj) then begin
       set_local_var(LVAR_Personal_Enemy,1);
       set_global_var(GVAR_ENEMY_ARROYO,1);
   end

end

/* Any time that the player is caught stealing from this critter, Pickup_proc will be called.
   In here, various things can happen. The most common response is instant hostility which
   will be remembered. */
procedure pickup_p_proc begin
   if (source_obj == dude_obj) then begin
       set_local_var(LVAR_Hostile,2);
   end
end

/* The dialog system is setup and prepares the player to talk to this NPC. Where To Go
   written by designers are placed in here. Additionally, Reactions are generated and
   stored which affects player interactions. */
procedure talk_p_proc begin
   Evil_Critter:=0;
   Slavery_Tolerant:=SLAVE_TOLERANT;
   Karma_Perception:=KARMA_PERCEPTION1;

   CheckKarma;

   GetReaction;

       start_gdialog(NAME,self_obj,4,-1,-1);
       gSay_Start;
           call Node001;
       gSay_End;
       end_dialogue;

end

/* This procedure gets called only on the death of this NPC. Special things like
   incrementing the death count for reputation purposes and Enemy Counters are placed
   in here. */
procedure destroy_p_proc begin

/* Increment the aligned critter counter*/
   inc_good_critter

/* Set global_variable for Enemy status*/
end

/* Look_at_p_proc gets called any time that the player passes the cursor over any object.
   This should only hold the most cursory of glances for the player. */
procedure look_at_p_proc begin
   script_overrides;

   if (local_var(LVAR_Looked_Before) == 0) then begin
       display_msg("LVAR " +local_var(LVAR_Looked_Before));
       set_local_var(LVAR_Looked_Before,1);
       display_msg(mstr(100)+local_var(LVAR_Looked_Before));
   end
   else
       display_msg(mstr(101)+local_var(LVAR_Looked_Before));
       set_local_var(LVAR_Looked_Before,1);
       display_msg("LVAR " +local_var(LVAR_Looked_Before));
end

/* The player will see more indepth descriptions from this procedure. They are actively
   looking at the critter and want more information. Things like names can be added here
   if the critter is known to the player. */
procedure description_p_proc begin
   script_overrides;
   display_msg(mstr(102));
end

/* Any time a skill is used on a critter this call is made. This can be to give examinations
   for things like Doctor skill or messages for various other skills. */
procedure use_skill_on_p_proc begin
end

/* Should the Player ever cause the NPC too much discomfort that he desires to attack the player,
   this call will be made. Essentially, it stores the Hostile vaule so that the critter remembers
   he was once hostile towards the player.*/
procedure Node998 begin
   set_local_var(LVAR_Hostile,2);
end

/* Anytime that there is a need for an ending to dialog, this node is to be called. It will just
   exit from the dialog system without any reprisals from the NPC. */
procedure Node999 begin
end


// Not lines are allowed to be added below here
// The Following lines are from the Design Tool
//~~~~~~~~~~~~~~~~ DESIGN TOOL STARTS HERE

procedure Node001 begin
   Reply(mstr(103)+obj_name(dude_obj)+mstr(104));

   NLowOption(105,Node005);
   NOption(106,Node003,004);
end

procedure Node002 begin
   Reply(mstr(111));

   NLowOption(112,Node999);
end

procedure Node003 begin
   Reply(mstr(107)+mstr(108));

   NOption(109,Node004,004);
   NOption(111,Node006,004);
   NOption(110,Node005,004);
end

procedure Node004 begin
   NMessage(113);

   gfade_out(600);
   gfade_in(600);

   game_time_advance(4*ONE_GAME_HOUR);
   critter_mod_skill(dude_obj,SKILL_OUTDOORSMAN,10);
   set_local_var(LVAR_Taught_Player,1);

   Reply(107);

   NOption(108,Node999,004);
end

procedure Node005 begin
   NMessage(107);
   end

procedure Node006 begin
   NMessage(112);
end

procedure Node007 begin
   NMessage(124);
end

procedure Node008 begin
end

EDIT:
I use the SFALL script editor to compile.

Is there a problem with defining TOO MANY variables in the script.lst? Lets say it's 10, and only 4 are defined in the script itself(not the list)
 
Last edited:
OK guys.

I installed a fresh version of fallout 2. Now it works.

I still wonder what went wrong, though it might be for the best. Easier to mod with a non modded version.
 
Back
Top