Is there a way to use the firebase push() method without their auto generated IDs?

Solution 1:

Use ref and set. I don't know your code, but something like:

database.ref('/game_bans/' + bannedUserId).set({moderator: ... });