To change quick revive to have the updated colored hint you can change it in zombie.str along with the other perks. Then for the solo version you can open _zombiemode_perks.gsc to line 828 where you will find this line:
Code Snippet
Plaintext
self SetHintString("Press & hold &&1 to buy Second Chance [Cost: " + 500 + ", Uses Left: " + level.ugxm_sp_quickrevive_maxuses + "]");
As for the gun hud image that is something fairly custom which I won't go into full detail with as it's somewhat extensive. I would recommend learning about how hud works via script to implement it. It would involve displaying the image when the player is within a radius of the weapon spawn, you would need to match the player to the weapon spawn with the zombie_weapon_upgrade KVP used on the spawns, you then will know which image to spawn.
For the ammo bit it's not exactly practical as each player needs a different message based on if he/she's bought the weapon or not. In world at war treyarch did this half way by changing the hint once it's bought to have the weapon and ammo cost. If you really want to do this then you would need to have two different triggers, one with each hint. You would then need to make a check for who has purchased the weapon, if they have display the ammo trigger to them, if not display the weapon cost.
To change quick revive to have the updated colored hint you can change it in zombie.str along with the other perks. Then for the solo version you can open _zombiemode_perks.gsc to line 828 where you will find this line:
Code Snippet
Plaintext
self SetHintString("Press & hold &&1 to buy Second Chance [Cost: " + 500 + ", Uses Left: " + level.ugxm_sp_quickrevive_maxuses + "]");
As for the gun hud image that is something fairly custom which I won't go into full detail with as it's somewhat extensive. I would recommend learning about how hud works via script to implement it. It would involve displaying the image when the player is within a radius of the weapon spawn, you would need to match the player to the weapon spawn with the zombie_weapon_upgrade KVP used on the spawns, you then will know which image to spawn.
For the ammo bit it's not exactly practical as each player needs a different message based on if he/she's bought the weapon or not. In world at war treyarch did this half way by changing the hint once it's bought to have the weapon and ammo cost. If you really want to do this then you would need to have two different triggers, one with each hint. You would then need to make a check for who has purchased the weapon, if they have display the ammo trigger to them, if not display the weapon cost.
Thanks.
Where would you recommend i start when learning WaW script.
Also, what are the different strings to change the colour.
I would recommend learning the basics of a c language to get you into to some of the "styles" of gcz. then i recomend you look at the waw scripts and see how they are. This is how alot of people learn gsc, including me