What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Lastmango

Member
Joined
Nov 25, 2014
Messages
173
Reaction score
5
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
 
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"
 
You Rock.. Thank you. I didn't see it in the object browser when I looked. Thanks again.
 
Back
Top