Game Won Message

From SCI Wiki
Revision as of 12:52, 11 August 2013 by Andrew Branscom (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

By Cloudee1

To inform the player that he has won the game once a certain score has been reached:


Code:
(if(== gScore  gMaxScore) // 
 (Display "You've done it you are a winner.")
)


Notes:

  1. If you have any hidden points use equal to or greater than.
     
  2. A print statement will go away if if the player hits enter. A display might be better such as a new room that says congratulations or use a changestate method with animations.