Type Mismatch

  • Two Factor Authentication is now available on BeyondUnreal Forums. To configure it, visit your Profile and look for the "Two Step Verification" option on the left side. We can send codes via email (may be slower) or you can set up any TOTP Authenticator app on your phone (Authy, Google Authenticator, etc) to deliver codes. It is highly recommended that you configure this to keep your account safe.

Darknigh+

New Member
Oct 19, 2003
113
0
0
www.cis.usouthal.edu
Okay I am getting a "Type Mismatch in = " error and it doesn't make sense why I am. All I have done is extended NavigationPoints class and added a bool value to it. Then in my code when I do the following it gives me an error:
Code:
class TeamDMController extends xbot;
var array<TeamNP> NP;

function whatever
{
for ( N=Level.NavigationPointList; N!=None; N=N.NextNavigationPoint )
	{
		NP[NP.Length] = N;
	}


}

Here is my TeamNP code:
Code:
class TeamNP extends NavigationPoint;
var bool beenHere;


function PostBeginPlay()
{
	beenHere = false;
	Super.PostBeginPlay();
	
}