How do I spawn pickups?

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

Mithrandel

New Member
Oct 29, 2003
7
0
0
I've gone through the pickup class and extended it to make my own pickup (schweet!). However, I don't know how to put these pickups into a level...

How do I put a pickup spawner in my level?

Thanks. =)
 

Mithrandel

New Member
Oct 29, 2003
7
0
0
Daid303 said:
Just put the pickup in a level? Make it placeble?
Well, actually, that's my question - how do I place it in my level? What do I do to add an actor to a level that I've created?

Sorry for being a bother.
 

oxygen

New Member
Nov 16, 2002
7
0
0
40
Australia
Mithrandel said:
Well, actually, that's my question - how do I place it in my level? What do I do to add an actor to a level that I've created?

Sorry for being a bother.

I think it's in the class declaration:

Code:
class Child expands Parent placeable;
 

Mithrandel

New Member
Oct 29, 2003
7
0
0
Alright, thanks guys, I just placed my first pickup in a level. It rotates, glows, and looks spiffy, but I can't get my Pawn to pick it up. =P

Oh well, time to dive through the scripts and see what I can dig up.

Thanks again for the help. =)