eNoodles

Members
  • Content Count

    78
  • Joined

  • Last visited

  • Days Won

    1

eNoodles last won the day on July 27 2018

eNoodles had the most liked content!

Community Reputation

31 Jedi Knight

About eNoodles

  • Rank
    Jedi Padawan

Recent Profile Visitors

4,029 profile views

Single Status Update

See all updates by eNoodles

  1. GetPartyMemberByIndex() doesn't work?

    Had the worst night ever scripting a little cutscene (so many bugs and limitations+my unorganization), and was wondering why my party members weren't doing anything. Tried using GetObjectByTag for the specific companions I had and everything worked...

    So is GetPartyMemberByIndex the problem? What alternative is there?

    1. JCarter426

      JCarter426

      Hmm, I would hazard a guess that it doesn't work during cutscenes. You could try:

      object oPC = GetFirstPC();
      object oPM1 = GetNextPC();
      object oPM2 = GetNextPC();

       

    2. Show next comments  6 more