Whats this critical error mean and How do I fix it?

  • 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.

MudBall

Phatt Moose
Jan 7, 2002
1
0
0
Originally posted by Call me Erdrik

abstarct
native
nativereplication;

what is that for anyway?

Native means there is a .dll file with functions for your class.

If you dont have one, that would explain the error.
 

Wormbo

Administrator
Staff member
Jun 4, 2001
5,913
36
48
Germany
www.koehler-homepage.de
Never put something in your code, just because you saw it somewhere else.

Abstract means this class cannot be spawned, native means some code is located in a .dll file and nativereplication means the network replication statements are not located in the UnrealScript part of your class but in native C++ code (the .dll file).