Game Modding | Call of Duty: Black Ops 3 | Scripting
Tanhasson:
Can anyone help me with a script for the BO4 Carpenter where it repairs your shield? I will be using Sphinx's Tranzit shield.
Pepergogo:
You can try using the shield repair script that Madgaz use in his Crusader Ale perk. Then that part implement in the carpinter powerup and that should work. I don't how to actually do it, but it's just an idea
Tanhasson:
You can try using the shield repair script that Madgaz use in his Crusader Ale perk. Then that part implement in the carpinter powerup and that should work. I don't how to actually do it, but it's just an idea
Good idea thanks! ill look into it!
Tanhasson:
this is what i came up with, it definitely didn't work. If anyone could take look at it i would appreciate it.
functioncarpenter(){while(1){levelwaittill("carpenter_finished");foreach(playerinGetPlayers()){if(!IS_TRUE(player.hasRiotShield))continue;IPrintLnBold("fix shield");equip=player.weaponRiotshield;playerzm_equipment::take(equip);//cuz it skips in giveplayerzm_equipment::give(equip);playerclientfield::set_player_uimodel("zmInventory.shield_health",1.0);}}}
Tanhasson:
This works on the zod shield
functioncarpenter(){while(1){levelwaittill("carpenter_finished");foreach(playerinGetPlayers()){if(!IS_TRUE(player.hasRiotShield))continue;IPrintLnBold("fix shield");equip=player.weaponRiotshield;playerzm_equipment::take(equip);//cuz it skips in giveplayerzm_equipment::give(equip);playerclientfield::set_player_uimodel("zmInventory.shield_health",1.0);}}}
that gives me this error
UNRECOVERABLE ERROR:
^1SCRIPT ERROR: No generated data for 'scripts/zm/zm_usermap.gsc'
I got that error too :/ Would be awesome if it would work, I making a new Tower map and the shield will repair from both full ammo and every new round.
Atchfam77:
I saw a release by FrostIceforge with something similar to what you're looking for. He has compatibility with that exact Tranzit shield too. Here's the link if you want to take a look at it.