Im trying to fix the problem where they never stock leather armor mk2, the scripts that come with the mapper2 program are easy enough to understand, but they dont bear any resemblance to the ones that the RP uses.
Original script :
The mibalbox.int script that the RP uses looks completely different however.
Part of the script :
I dont get how this works. The PIDs dont even make sense, PID 479 are the navcomm parts according to the weapon editor, why does the balthas restocking script have them?
Original script :
Code:
procedure map_enter_p_proc begin
/* Set up the door state when the player first enters the map */
modoc_balthas_box_obj := self_obj;
if (is_loading_game == false) then begin
if (local_var(LVAR_Restock_Time) < game_time) then begin
check_restock_item(PID_BOTTLE_CAPS, 475, 525, 100)
check_restock_item(PID_LEATHER_ARMOR, 1, 1, 100)
check_restock_item(PID_LEATHER_JACKET, 1, 1, 100)
check_restock_item(PID_LEATHER_ARMOR_MK_II, 1, 1, 100)
set_local_var(LVAR_Restock_Time, (random(5,10) * ONE_GAME_DAY) + game_time);
end
end
end
The mibalbox.int script that the RP uses looks completely different however.
Part of the script :
Code:
procedure map_enter_p_proc
begin
variable LVar0 := 0;
variable LVar1 := 0;
modoc_balthas_box_obj := self_obj;
if (metarule(22, 0) == 0) then begin
if ((game_time < 0) and (local_var(1) == 0)) then begin
set_local_var(0, game_time - 1);
set_local_var(1, 1);
end
if (local_var(0) < game_time) then begin
LVar0 := create_object_sid(128, 5, 0, -1);
if (obj_is_carrying_obj_pid(self_obj, 479) > 0) then begin
LVar1 := obj_carrying_pid_obj(self_obj, 479);
rm_obj_from_inven(self_obj, LVar1);
add_obj_to_inven(LVar0, LVar1);
end
if (obj_is_carrying_obj_pid(self_obj, 479) > 0) then begin
LVar1 := obj_carrying_pid_obj(self_obj, 479);
rm_obj_from_inven(self_obj, LVar1);
add_obj_to_inven(LVar0, LVar1);
end
I dont get how this works. The PIDs dont even make sense, PID 479 are the navcomm parts according to the weapon editor, why does the balthas restocking script have them?