Arrow

Double and Triple scores | Family Feud | Forum

Back to the Family Feud post

Please consider registering
guest

Log In

Lost password?
Advanced Search

— Forum Scope —

  

— Match —

   

— Forum Options —

   

Minimum search word length is 4 characters - maximum search word length is 84 characters

Topic RSS
Double and Triple scores
November 30, 2010
1:29 pm
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?

November 30, 2010
6:41 pm
Peter
Admin
Forum Posts: 841
Offline

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.

December 1, 2010
9:49 am
KIm
Guest

I've figured it out! Thanks though :lol:

December 1, 2010
9:53 am
Peter
Admin
Forum Posts: 841
Offline

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

December 1, 2010
10:01 am
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!

December 1, 2010
10:44 am
Peter
Admin
Forum Posts: 841
Offline

Awesome. Thanks!