So I thought I should comment on a few more of hiperborejai's bugs.
SLOT 15: In random Yakuza encounter, half of the Yakuza members simply run away without fighting, although unhurt and unharmed in any way. (the same game in from the middle of fight; had no possibility of making a non-combat save).
The Yakuza equipped with throwing knives have way too low throwing skill (24%). When their chance to hit is too low they will go into flee state (by the look of things).
SLOT 41: Not sure if bug. Peasant in NCR does not talk or react at all (any other character at least gives you "flying" text, this one does not do absolutely anything).
He's missing the "scpeon" script.
SLOT 32: Serious bug. In sierra Army Depot, the turrets won't attack your party members. That means, that you can start a fight, run away where turrets can't reach you, and then have Myron destroy all the turrets with his fists (will take a lot of time though, but still...huge exploit potential).
They do sometimes, not sure exactly how they choose their target. What weapon and armor you have perhaps. Maybe how strong you are, or weak?
Would love to see a chance to hit check added to their targeting behavior, that would make them choose a new target if if their first choice is not good enough.
SLOT 35, SLOT 37, SLOT 38: Skynet keeps twitching weirdly and won't move after the combat. The only way to "fix" him, is to tell him to put away his weapon.
Old and faulty sex drug code, not sure why it wasn't changed for Skynet.
Code:
WCBRNBOT
variable waiting;
Beginning of critter_p procedure (replace old code):
if ((cur_map_index == 54) and (((self_obj == party_member_obj(16777295)) and (map_var(2) == party_member_obj(16777295)) or ((self_obj == party_member_obj(16777597)) and (map_var(2) == party_member_obj(16777597)))) then begin
set_map_var(2, 0);
waiting := 1;
if (get_critter_stat(self_obj, 0) < 10) then begin
use_obj_on_obj(create_object_sid(482, 0, 0, -1), self_obj);
end
end
Put this just before the code to move to the player if he is too far away.
if (waiting != 1) then begin
end of update map procedure:
if (waiting == 1) then begin
waiting := 0;
end
Thing is, can Skynet really use drugs? If not this is rather pointless. Might as well remove that code from his script entirely then, or?
SLOT 33: In New Reno Cat's Paw, if you ask to buy sex for companions, and choose Skynet (read a book for Skynet), the screen will fade to black (that's normal) and the game will hang (the screen remains black, had to ctrl+atl+del to go back to windows). Very curiously, it seems, as when the screen fades to black, it gets refreshed again and again without limit. After returning to windows, and trying to open the (still running) fallout window again, I briefly was able to see the words "THE END" written on the fallout screen, until it got refreshed to complete blackness again
Originally only the brainbot with cybernetic brain could have "sex". RP included the bot with a human brain as well, but missed a few things.
Code:
NCKITTY
add following to script:
procedure Node994;
procedure Node994
begin
sex_partner_obj := party_member_obj(16777597);
call Node015;
end
procedure Node014
change
if ((party_member_obj(16777295) != 0) or (party_member_obj(16777597) != 0)) then begin
giq_option(4, 452, 402, Node981, 50);
end
to
if (party_member_obj(16777295) != 0) then begin
giq_option(4, 452, 402, Node981, 50);
end
if (party_member_obj(16777597) != 0) then begin
giq_option(4, 452, 402, Node994, 50);
end
procedure Node989
add
if (party_member_obj(16777597) != 0) then begin
sex_partner_obj := party_member_obj(16777597);
call Node015;
end
@ Mirak
You are correct that the EPA location now takes precedence over the stash in Golgotha, when talking to Myron.
And thanks for the shadow who walks info, will add it right away.
As for the force field computer on blue level of the EPA, no the requirements were not lowered. Must have been luck on your part.
For the blond issue, I think you may have misunderstood it.
You can start the game as a blonde woman, but you cannot change from a brunette to a blonde with the auto-doc machines in the EPA yet.
Or maybe you misread "blonde" as "bald", then it would be correct.