[FO2] Mason doesn't give "armload"

AcesHigh

First time out of the vault
So the problem is that upon receiving promotion to Salvatore's Mademan he gives NOTHING. Now, I've read Per's guide and he's supposed to give at least 50$ if neither Salvatore nor him like you. The thing is I believe that I am on good terms with both of them, yet I don't get anything, not that I actually need Metal armor or cells but still...
 
This is what he does in the "armload" dialogue node:

Code:
if (salvatore_respect > 15) then begin
   if (local_var(LVAR_Patience) > 4) then begin
      give_pid_qty(dude_obj, PID_METAL_ARMOR_MK_II, 1)
      give_pid_qty(dude_obj, PID_SMALL_ENERGY_CELL, 2)
      item_caps_adjust(dude_obj, 300);
   end else begin
      give_pid_qty(dude_obj, PID_METAL_ARMOR, 1)
      item_caps_adjust(dude_obj, 150);
   end
end else begin
   item_caps_adjust(dude_obj, 50);
end

So you can see you should never go without caps. Do you have problems with other items spawning? Do shops restock properly?
 
I didn't get anything from Mason either unless it was items or money I already had in my inventory and I didn't notice. In any case I didn't get any armour. I remember that I have been given armour in an earlier game though...
 
Now I decided to give it another shot and that's weird I dropped all money and he gave me 50$. Tried it again with my initial amount and he added 50$ to me. Yet yesterday I tried 3 times and nothing happened. Well I guess problem solved. Thanks Per.
 
Back
Top