I think the RP comes with the mapper (at least my RP folder has the mapper)? If so, in the mapper folder is a /scripts/ folder, which is what you are looking for.
The Red 888 Guns store table script is "\Scripts\SANFRAN\FIGUNTBL.SSL"
Open that script and scroll down until you hit stuff like
Code:
check_restock_item(PID_2MM_EC_AMMO, 1, 4, 33)
Copy that and add your own ammo PID_x item.
The PID_ are defined in "\Scripts\headers\ITEMPID.h" - add yours to the end of the list (or anyhwere you want), with the correct proto number. If you don't know the proto number, it corresponds with the entry in the pro_item.msg file (number / 100).
If you are using the new Sfall Script Editor and setup correctly, hoovering with the mouse over "check_restock_item" will show you the macro behind it.
To explain the numbers a bit, the restock checks like this:
check_restock_item(
ITEM,
minimum items to spawn,
maximum items to spawn,
chance to spawn)
In the
PID_2MM_EC_AMMO example above, there is a
33% chance to spawn
1 to
4 of said item.
Anyways... edit your stuff, hit compile and if there is no warning, it should start working ingame.
PS: I found the table script via opening the map in the mapper, then clicking the table container and pressing edit. There you can see the assigned script.