Now that the script works and the player receives 20 caps and a Nuka-Cola, I want to alter the object selection.
I already changed this line:
item_caps_adjust(dude_obj, 20);
to this:
item_caps_adjust(dude_obj, random(1,20));
Now the player receives a random amount of caps between 0 and 21.
Is it...