Remove damage by fall
Game Modding | Call of Duty: Black Ops 3 | Scripting
ModmeBot:
Thread By: ByKris
How can remove damage by fall?
ModmeBot:
Reply By: natesmithzombies
You need to override the stock player_damage_override function. To do so:
1) paste this at the bottom of your mapname.gsc
2) Place this in function main() of your mapname.gsc :
Edit: Something is pretty wacked out with the copy and paste of code. Here is the 2 functions in a paste link
ModmeBot:
Reply By: ByKris
natesmithzombiesYou need to override the stock player_damage_override function. To do so:
1) paste this at the bottom of your mapname.gsc
2) Place this in function main() of your mapname.gsc :
Edit: Something is pretty wacked out with the copy and paste of code. Here is the 2 functions in a paste link
^1}
^1^
^1ERR(6E) scripts/zm/zm_impossible.gsc (381,1) : Compiler Internal Error : Uninitialized local variable 'perk_whoswho'
By the way my character has 50 not 77 of life
ModmeBot:
Reply By: natesmithzombies
ByKris^1}
^1^
^1ERR(6E) scripts/zm/zm_impossible.gsc (381,1) : Compiler Internal Error : Uninitialized local variable 'perk_whoswho'
By the way my character has 50 not 77 of life
One/more of the .gsh files need to be included using the #include call in your mapname.gsc somewhere.
ModmeBot:
Reply By: ByKris
natesmithzombiesByKris^1}
^1^
^1ERR(6E) scripts/zm/zm_impossible.gsc (381,1) : Compiler Internal Error : Uninitialized local variable 'perk_whoswho'
By the way my character has 50 not 77 of life
One/more of the .gsh files need to be included using the #include call in your mapname.gsc somewhere.
And what do i need include?
ModmeBot:
Reply By: natesmithzombies
ByKrisnatesmithzombiesByKris^1}
^1^
^1ERR(6E) scripts/zm/zm_impossible.gsc (381,1) : Compiler Internal Error : Uninitialized local variable 'perk_whoswho'
By the way my character has 50 not 77 of life
One/more of the .gsh files need to be included using the #include call in your mapname.gsc somewhere.
And what do i need include?
At the top of your mapname.gsc add any of these that are missing:
ModmeBot:
Reply By: ByKris
natesmithzombiesByKrisnatesmithzombiesByKris^1}
^1^
^1ERR(6E) scripts/zm/zm_impossible.gsc (381,1) : Compiler Internal Error : Uninitialized local variable 'perk_whoswho'
By the way my character has 50 not 77 of life
One/more of the .gsh files need to be included using the #include call in your mapname.gsc somewhere.
And what do i need include?
At the top of your mapname.gsc add any of these that are missing:
Thanx nates!