Score to unlock actor help

Hi guys,

Just putting together the scoring system for a game and trying get my head around how to tell an actor that a score has been reached and to unlock it. I've created the main score system which tallies up.

I guess it's an attribute within the actor: if score is x spawn actor?

Any help would be muchly appreciated.

Rich

Comments

  • carlblanchetcarlblanchet Member Posts: 755
    edited October 2012
    You've got it, this happens with comparing the current score to the score amount you want for the actor to be unlocked. Instead of spawning the actor, you could have it there with a lock over it, and when TotalScore Attribute is equal to or greater than x amount -> destroy the lock.
    And in the actor When touch is pressed (or w.e) and score is equal to or greater than x amount -> [add rules here] i.e. change character from rat to mouse (lol)
  • richardcogginrichardcoggin Member Posts: 10
    Great. Thanks for that.
Sign In or Register to comment.