How do I . . . .

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

MxFxSunrise

New Member
Jul 21, 2000
567
0
0
Looking in from the outside
enable a player in game to use the summon command or summon a pawn? Don't have to be specific. I am new to unreal coding (but not programing) so if you could just tell me what part of the engine controls this that would also help
 

Papapishu

我是康
Jun 18, 2001
2,043
0
0
42
void
www.vovoid.com
There's the spawn command that's used with just about everything.
Almost every thing you see is "spawned" with that command, in one way or another.
Then you could use the ConsoleCommand("summon thing"); line, but that's like crossing the river for water...
 

2COOL4-U

New Member
Mar 17, 2001
505
0
0
37
dot NL
2cool.free.fr
dont' spawn it using summon if you want to change somethings in the code but do something like this

local MyClass MC;
MC = Spawn(class'MyClass',self,,self.Location);
MC.bCool = True;
MC.i = 2;