Arrow

Double and Triple scores | Family Feud | Forum

Back to the Family Feud post
 
Current User: Guest
Search Forums:


 






Minimum search word length is 4 characters – Maximum search word length is 84 characters
Wildcard Usage:
*  matches any number of characters    %  matches exactly one character

Double and Triple scores

Reply to Post Add a New Topic
UserPost

1:29 pm
November 30, 2010


KIm

Guest

I have created a game with 18 questions and am needing to have 3 rounds of 6. First round with regular scoring, second round with double and 3rd with triple scoring. I have found the code mentioned in the topic on disabling double and triple scoring all togther. Is there a way to change when the multiple scoring starts and ends?

6:41 pm
November 30, 2010


Peter

Admin

posts 730

You'd have to edit the source .fla file for that. Unfortunately I'm not sure of specifically what you'd have to do as I don't have Flash CS3.

9:49 am
December 1, 2010


KIm

Guest

I've figured it out! Thanks though Laugh

9:53 am
December 1, 2010


Peter

Admin

posts 730

Can you please share your findings to help others in the same situation in the future?

10:01 am
December 1, 2010


KIm

Guest

I guess I should share how it was done, so that others may be enlightened. Forums are not my forte.

I copied the score muliplier code as follows:

//Score multiplier:
//The “numround” variable defines when the multiplier will start being applied to the score.
//The “mult” variable defines the value that the score will be multiplied by.
if (numRound ==7){
mult_txt.text = “Double”;
mult = 2;
} else if (numRound>7){
mult_txt.text = “Double”;
mult = 7;
}
if (numRound ==13){
mult_txt.text = “Triple”;
mult = 3;
} else if (numRound>13){
mult_txt.text = “Triple”;
mult = 13;
}
//end score multiplier code

As I said above, I needed the Double round to start at Question 7 and the Triple rounds to start at Question 13.

Hope this helps!

10:44 am
December 1, 2010


Peter

Admin

posts 730

Awesome. Thanks!

Reply to Post

Reply to Topic:
Double and Triple scores

Guest Name (Required):

Guest Email (Required):

HTML Editor
Smileys
Confused Cool Cry Embarassed Frown Kiss Laugh Smile Surprised Wink Yell
Post New Reply

Guest URL (required)

Math Required!
What is the sum of:
7 + 4