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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Lastmango

Member
Joined
Nov 25, 2014
Messages
173
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