Is there a mod that gives ammo pickups to all players instead of just the person who picks it up? I would like this if it is an easy mod to make.
An online multiplayer mod for Nuclear Throne. · By
An easy thing would be to do
/gml ultra_set(0, 2, 1)
which would give you the "shared ammo from pickups" coop ultra mutation. Similarly,
/gml ultra_set(0, 1, 1)
can be used to get "shared health from pickups" ultra mutation.
At one point someone was doing a mod that had all players have shared ammo pool, but apparently it wasn't finished and was generally acting kind of weird at best.
You could make a file called shareammo.mod.gml, and have it execute it on game start:
#define game_start
ultra_set(0, 2, 1)
Then you'd `/loadmod shareammo` once per session and that would be it.
The only friendly fire that there is by default is on explosive weapons, but that is not easily gotten rid of. May want to pick Boiling Veins in such case.