Im having a issue with Uranium processing from this post:
https://www.altisliferpg.com/index.php?/top…ranium-mine-44/
Basically, when you go to the NPC theres just a little bar, which is shown here.
When I process it with the little bar I get no text in the progression bar, also shown here,
This is an example what it should look like:
Code: Config_Process.hpp
class uranium {
MaterialsReq[] = {{"uranium_unrefined",1}};
MaterialsGive[] = {{"uranium_refined",1}};
Text = "STR_Process_Uranium";
//ScrollText = "Refine Uranium";
NoLicenseCost = 1120;
};
Code
init="this enableSimulation false; this allowDamage false; this addAction[localize""STR_MAR_Process_Uranium"",life_fnc_processAction,""uranium"",0,false,false,"""",' life_inv_uraniumunrefined > 0 && !life_is_processing && !life_action_inUse']; this addAction[format[""%1 ($%2)"",localize (getText(missionConfigFile >> ""Licenses"" >> ""uranium"" >> ""displayName"")), [(getNumber(missionConfigFile >> ""Licenses"" >> ""uranium"" >> ""price""))] call life_fnc_numberText],life_fnc_buyLicense,""uranium"",0,false,false,"""",' !license_civ_uranium && playerSide isEqualTo civilian ']; " \n "";
Getting no errors on RPT Logs.
How can I fix this?