Ox_ said in [Release] Mob of the Dead Mod: "A cat has 9 lives":
The
player_lives
clientfield is only allocated two bits, since that's all you're supposed to need.
You can only fit numbers 0 though 3 into those two bits.To get past this, you'll need to patch
maps\mp\zombies\_zm_afterlife.gsc
.
This line specifically ininit()
:registerclientfield("toplayer", "player_lives", 9000, 4, "int"); //patched to allocate 4 bits
JezuzLizard This is what I am following. I am trying to get afterlife to display two digets or a number larger than 3.