How Do I make power ups?

belleechbelleech Member Posts: 34
edited November -1 in Working with GS (Mac)
Hiya Fellas,

I'd like to make power ups like when the actor collides with power up X, it makes the actor twice as big for 5 seconds then return to normal. Anyone has an idea? I tried a couple of rules but it just does crazy stuff.

Help!

REGARDS.

Comments

  • JGary321JGary321 Member Posts: 1,246
    When player collides with actor powerup
    Change Attribute
    self.size X to (100)
    self.size Y to (100)

    Timer:
    After 5 secs
    Change Attribute
    self.size X to (50)
    self.size Y to (50)
  • belleechbelleech Member Posts: 34
    Hey Man thanks, jesus been working on this one for hours, using booleans, I think I was over thinking it. Thanks man!!!!!!
  • JGary321JGary321 Member Posts: 1,246
    Hey no problem man. I've learned by doing things one way, then days later realizing there was a much simpler way. I still do it all the time. Sometimes we over think things & just need an outside perspective.
Sign In or Register to comment.