Not sure if this is the right place to post, but here goes. I want to alter multiple functions, but to extends them all is a lot of copy pasting..thought I could just extend them but replace the contents with their parent counterpart, and then modifiy that value. Example:
static function X2DataTemplate CreateSuperiorFreeFireUpgrade()
{
local X2WeaponUpgradeTemplate Template;
`CREATE_X2TEMPLATE(class'X2WeaponUpgradeTemplate', Template, 'FreeFireUpgrade_Sup');
SetUpFreeFireBonusUpgrade(Template);
SetUpTier3Upgrade(Template);
Template.strImage = "img:///UILibrary_StrategyImages.X2InventoryIcons.MagSniper_TriggerB_inv";
Template.FreeFireChance = default.FREE_FIRE_SUP;
return Template;
}
becomes
static function X2DataTemplate CreateSuperiorFreeFireUpgrade()
{
local X2DataTemplate Template;
Template = super.CreateSuperiorFreeFireUpgrade();
Template.FreeFireChance *= 2;
return Template;
}
Oddly enough, this throws 'Error, Unrecognized member 'FreeFireChance' in class 'X2DataTemplate', which is the same type the original function is returning. Changing it to other types like X2WeaponUpgradeTemplate results in a type mismatch. Any ideas? Is my way of calling the parent function incorrect? Edit: For what I'm trying to achieve here, it's probably easier to directly manipulate the .ini values, but for learning sake it would be nice to have this working