Lastmango Member Joined Nov 25, 2014 Messages 173 Oct 22, 2015 #1 Is there a property that returns the character's Path? I've looked through the actors object and didn't see anything. I'd just like conditional statements based on it, like GameManager.LocalPlayer.Path = "Settler", etc. -LastMango
Is there a property that returns the character's Path? I've looked through the actors object and didn't see anything. I'd just like conditional statements based on it, like GameManager.LocalPlayer.Path = "Settler", etc. -LastMango
Deathdisguise Community Developer Joined Mar 7, 2015 Messages 678 Oct 22, 2015 #2 Code: PlayerPathType GameManager.LocalPlayer.PlayerPathType; public enum PlayerPathType{ Soldier = 0, Settler = 1, Scientist = 2, Explorer = 3, } Useage in a profile: Condition="GameManager.LocalPlayer.PlayerPathType == PlayerPathType.Settler"
Code: PlayerPathType GameManager.LocalPlayer.PlayerPathType; public enum PlayerPathType{ Soldier = 0, Settler = 1, Scientist = 2, Explorer = 3, } Useage in a profile: Condition="GameManager.LocalPlayer.PlayerPathType == PlayerPathType.Settler"
Lastmango Member Joined Nov 25, 2014 Messages 173 Oct 22, 2015 #3 You Rock.. Thank you. I didn't see it in the object browser when I looked. Thanks again.