Hi guys.
I am trying to check if a critter's inventory after barter is the same as before barter. I've tried this code
the variables are declared in the begining of the script, so I guess they are saved between procedures, right?
The extra steps are there just becuase I tried simpler versions of basiclly the same code just to make sure the conditions are checked in the right status.
So, about the result. It dosent matter if I trade any item with the critter or not, I always get messege 700, which happans if inv1 == inv3, as stated in the code.
Any help? much appriciated
I am trying to check if a critter's inventory after barter is the same as before barter. I've tried this code
the variables are declared in the begining of the script, so I guess they are saved between procedures, right?
Code:
variable inv1;
variable inv2;
variable inv3;
procedure barter1 begin
move_obj_inven_to_obj(self_obj, inv1);
inv2 := inv1;
move_obj_inven_to_obj(inv2, self_obj);
gdialog_mod_barter(0);
call Node006;
end
procedure Node006 begin
Reply(mstr(600));
NOption(601,Node007,004);
end
// did or didnt trade anything
procedure Node007 begin
move_obj_inven_to_obj(self_obj, inv3);
if inv1 == inv3 then
Reply(mstr(700));
else
Reply(mstr(800));
GOption(801,Node999,004);
NOption(1121,Node999,004);
BOption(1122,Node998,004);
move_obj_inven_to_obj(inv3, self_obj);
end
The extra steps are there just becuase I tried simpler versions of basiclly the same code just to make sure the conditions are checked in the right status.
So, about the result. It dosent matter if I trade any item with the critter or not, I always get messege 700, which happans if inv1 == inv3, as stated in the code.
Any help? much appriciated