Need help with setting specific highscores per level/mode?
hello,
i have a game in which there are three modes (arcade, classical and story mode ) i have 1 game.hiscore attribute. the problem is that if i play the arcade mode nd get a high score it shows the same score in the highscore of other modes too... how do i get rid of it. for eg:- if i play arcade mode. i want it to show arcade mode high score only. or if i play level 1 in story mode i want it to show the high score of level 1 only.
thank you
i have a game in which there are three modes (arcade, classical and story mode ) i have 1 game.hiscore attribute. the problem is that if i play the arcade mode nd get a high score it shows the same score in the highscore of other modes too... how do i get rid of it. for eg:- if i play arcade mode. i want it to show arcade mode high score only. or if i play level 1 in story mode i want it to show the high score of level 1 only.
thank you
![:) :)](http://forums.gamesalad.com/plugins/emojiextender/emoji/twitter/smile.png)
Best Answer
-
MarkOnTheIron Posts: 1,447
Answers
My GameSalad Academy Courses! ◦ Check out my quality templates! ◦ Add me on Skype: braydon_sfx
hey...
u have unlocked the scoring actors.... my actors are getting spawned so cant unlock them.....
Have an ex. INDEX attribute for switching between Arcade and Story mode called ex. "AorS" where Arcade could be 1 and Story 2. When you press the arcade button you change the INDEX attribute to 1 and 2 for Story.
In your SHOW HIGHSCORE actor you have a rule:
If AorS = 1
Display = Arcade Highscore
Else
Display = TableCellValue(yourTableName,theLevelYoureAt,1) (ROW will be your Levels)
This way you can spawn your highscore actor.
-:HC:-