Hi,
I am trying to show the current combat style of an actor in the MCM menu but the following line doesn't work:
AddTextOption("$CurrCombatStyle", FeyriaTywele.GetActorBase().GetCombatStyle().GetName())
What do I have to do to make this work?
Hi,
I am trying to show the current combat style of an actor in the MCM menu but the following line doesn't work:
AddTextOption("$CurrCombatStyle", FeyriaTywele.GetActorBase().GetCombatStyle().GetName())
What do I have to do to make this work?
try:
AddTextOption("$CurrCombatStyle", FeyriaTywele.GetActorBase().(GetCombatStyle() as form).GetName())
Edit: actually, the parentheses are wrong above, sorry - use this instead:
AddTextOption("$CurrCombatStyle", (FeyriaTywele.GetActorBase().GetCombatStyle() as form).GetName())