Traders Not Working on Overpoch

I've ran into this problem before and I've forgotten on how to fix it.
After adding self blood bag the traders won't give the option to open them.

What all do I need to do to fix this problem ?

Something with the self actions I think.
 
in fnselfactions try changing this line

} else { hasBagItem = false;};

into this

} else {
hasBagItem = false;
};

some time arma spazs out on single line code
 
I found this and I believe it may work I may try.
http://epochmod.com/forum/index.php?/topic/17476-info-dze-configs-variables-init/page-1

Apparently Self Blood Bag is already setup on Epoch and since it's overpoch maybe it'll work.
oh forgot about that :)

yep just add this to your init.sqf and blood bag works :p

Code:
DZE_selfTransfuse = true; //Self blood bag
DZE_selfTransfuse_Values = [
6000, //Blood amount
 10,  // Chance of Infection
300 //Cooldown Timer
];
remove all old blood bag code you put in
 
Back
Top