If score count reaches equal to or lesser than zero

LA-Laker
I need the correct code to end the process result if one player reaches to or lesser than zero. It is like entering the number of links to end the program. Here is my source code. Thanks.



@set my_string = Chapter 1, Stage 1

{my_string}

Foxy Blaze vs. Blackfire

[[Fight!]](round one)

[[round one]]:
@set Foxy = 100
@set Blackfire = 100

Variations:

Foxy Blaze: Hustler

vs.

Blackfire: Plasma Rage

[[Continue]](next)


[[next]]:


Health Meters

Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}

Choose your actions:

[a] [b] [c] [d] [e] [f] [g] [h] [i] [j] [k] [l] [m] [n] [o]


[a]:
@dec Blackfire 20

Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}

[b]:
@dec Foxy 15

Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}

[c]:
@dec Foxy 8

Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}

[d]:
@dec Blackfire 8

Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}

[e]:
@dec Blackfire 5

Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}

[f]:
@dec Blackfire 10

Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}

[g]:
@dec Foxy 5

Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}

[h]:
@dec Foxy 9

Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}

[i]:
@dec Foxy 12

Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}

[j]:
@dec Blackfire 17

Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}

[k]:
@dec Blackfire 15

Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}

[l]:
@dec Foxy 35

"X-Ray Damage!"

Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}

[m]:
@dec Blackfire 12

Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}

[n]:
@dec Blackfire 9

Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}

[o]:
@dec Blackfire 35

"X-Ray Damage!"

Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}





[@13]:
squiffy.story.go("Story");

[[Story]]:
- Foxy Blaze wins the match

- End of Stage 1

[Continue](C1-S1 - Result)
[C1-S1 - Result]:
Foxy Blaze: Got to go help out a friend in need.

R2T1
Hi. I haven't used Squiffy before, but a quick check of the documentation and armed with some basic programming knowledge from other languages, I think something like this may work. I have modified 2 of your tests (k & l) to test this and it seems to work. You will need to modify each of your test sections, (a-o) to check the relevant player after each decrement of their health/score.

The relevant bit of the docs is here.

[k]:
@dec Blackfire 55

{if Blackfire<=0:Blackfire has died.}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[l]:
@dec Blackfire 45

"X-Ray Damage!"

{if Blackfire<=0:Blackfire has died.}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}


EDIT: Just a thought. You may want to add some more text after each action. eg. "Foxy takes a 5 point blow to the legs." But you may already be planning something like this so ...
Also, to clarify the code above, if you replace your code for k & l with mine, then run it and choose k and then l (or l then k), you will see that Blackfire's score reduces after the first hit and then he dies on the second hit.

LA-Laker
Thanks, R2T1. That helps a lot. I have another question, but first: I'll upload the updated code in 2 to 4 hours.

LA-Laker
I need a function to cancel all links above if one person wins. I got rounds 2 and 3 covered. If you help, I'd appreciate it.


@set my_string = Chapter 1, Stage 1

{my_string}

Foxy Blaze 0 vs. Blackfire 0

Round 1

[[Fight!]](round one)

[[round one]]:
@set Foxy = 100
@set Blackfire = 100

Variations:

Foxy Blaze: Hustler

vs.

Blackfire: Plasma Rage

[[Continue]](next)


[[next]]:

Health Meters

Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}

Choose your actions:

[?](a) [?](b) [?](c) [?](d) [?](e) [?](f) [?](g) [?](h) [?](i) [?](j) [?](k) [?](l) [?](m)
[?](n) [?](o) [?](p) [?](q) [?](r) [?](s) [?](t) [?](u) [?](v) [?](w) [?](x) [?](y) [?](z)


[a]:
@dec Blackfire 20

{if Blackfire<=0:[Foxy Blaze Wins](Foxy-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[b]:
@dec Foxy 15

{if Foxy<=0:[Blackfire Wins](Blackfire-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[c]:
@dec Foxy 8

{if Foxy<=0:[Blackfire Wins](Blackfire-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[d]:
@dec Blackfire 8

{if Blackfire<=0:[Foxy Blaze Wins](Foxy-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[e]:
@dec Blackfire 5

{if Blackfire<=0:[Foxy Blaze Wins](Foxy-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[f]:
@dec Blackfire 10

{if Blackfire<=0:[Foxy Blaze Wins](Foxy-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[g]:
@dec Foxy 5

{if Foxy<=0:[Blackfire Wins](Blackfire-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[h]:
@dec Foxy 9

{if Foxy<=0:[Blackfire Wins](Blackfire-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[i]:
@dec Foxy 12

{if Foxy<=0:[Blackfire Wins](Blackfire-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[j]:
@dec Blackfire 17

{if Blackfire<=0:[Foxy Blaze Wins](Foxy-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[k]:
@dec Blackfire 15

{if Blackfire<=0:[Foxy Blaze Wins](Foxy-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[l]:
@dec Foxy 35

"X-Ray Damage!"

{if Foxy<=0:[Blackfire Wins](Blackfire-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[m]:
@dec Blackfire 12

{if Blackfire<=0:[Foxy Blaze Wins](Foxy-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[n]:
@dec Blackfire 9

{if Blackfire<=0:[Foxy Blaze Wins](Foxy-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[o]:
@dec Blackfire 35

"X-Ray Damage!"

{if Blackfire<=0:[Foxy Blaze Wins](Foxy-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[p]:
@dec Foxy 20

{if Foxy<=0:[Blackfire Wins](Blackfire-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[q]:
@dec Foxy 10

{if Foxy<=0:[Blackfire Wins](Blackfire-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[r]:
@dec Blackfire 12

{if Blackfire<=0:[Foxy Blaze Wins](Foxy-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[s]:
@dec Foxy 17

{if Foxy<=0:[Blackfire Wins](Blackfire-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[t]:
@dec Foxy 6

{if Foxy<=0:[Blackfire Wins](Blackfire-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[u]:
@dec Blackfire 6

{if Blackfire<=0:[Foxy Blaze Wins](Foxy-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[v]:
@dec Blackfire 11

{if Blackfire<=0:[Foxy Blaze Wins](Foxy-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[w]:
@dec Foxy 12

{if Foxy<=0:[Blackfire Wins](Blackfire-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[x]:
@dec Foxy 11

{if Foxy<=0:[Blackfire Wins](Blackfire-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[y]:
@dec Blackfire 18

{if Blackfire<=0:[Foxy Blaze Wins](Foxy-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[z]:
@dec Foxy 18

{if Foxy<=0:[Blackfire Wins](Blackfire-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[Foxy-Round1]:

Foxy Blaze 1 vs. Blackfire 0

Round 2


[Blackfire-Round1]:

Foxy Blaze 0 vs. Blackfire 1

Round 2

LA-Laker
Hello, please disregard the previous post above. I figured it out.

I have another question: What kind of function I need to cancel the rest of the link after one wins each round, before click on the winner's result link?
Here is the source code:

[[C1-S1-Fight]]:

@set my_string = Chapter 1, Stage 1

{my_string}

Foxy Blaze 0 vs. Blackfire 0

Round 1

[[Fight!]](round one)

[[round one]]:
@set Foxy = 100
@set Blackfire = 100

Variations:

Foxy Blaze: Hustler

vs.

Blackfire: Plasma Rage

[[Continue]](next)


[[next]]:

Health Meters

Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}

Choose your actions:

[?](a) [?](b) [?](c) [?](d) [?](e) [?](f) [?](g) [?](h) [?](i) [?](j) [?](k) [?](l) [?](m)
[?](n) [?](o) [?](p) [?](q) [?](r) [?](s) [?](t) [?](u) [?](v) [?](w) [?](x) [?](y) [?](z)


[a]:
@dec Blackfire 20

{if Blackfire<=0:[[End of Round 1 - Foxy Blaze Wins]](Foxy-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[b]:
@dec Foxy 15

{if Foxy<=0:[[End of Round 1 - Blackfire Wins]](Blackfire-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[c]:
@dec Foxy 8

{if Foxy<=0:[[End of Round 1 - Blackfire Wins]](Blackfire-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[d]:
@dec Blackfire 8

{if Blackfire<=0:[[End of Round 1 - Foxy Blaze Wins]](Foxy-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[e]:
@dec Blackfire 5

{if Blackfire<=0:[[End of Round 1 - Foxy Blaze Wins]](Foxy-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[f]:
@dec Blackfire 10

{if Blackfire<=0:[[End of Round 1 - Foxy Blaze Wins]](Foxy-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[g]:
@dec Foxy 5

{if Foxy<=0:[[End of Round 1 - Blackfire Wins]](Blackfire-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[h]:
@dec Foxy 9

{if Foxy<=0:[[End of Round 1 - Blackfire Wins]](Blackfire-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[i]:
@dec Foxy 12

{if Foxy<=0:[[End of Round 1 - Blackfire Wins]](Blackfire-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[j]:
@dec Blackfire 17

{if Blackfire<=0:[[End of Round 1 - Foxy Blaze Wins]](Foxy-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[k]:
@dec Blackfire 15

{if Blackfire<=0:[[End of Round 1 - Foxy Blaze Wins]](Foxy-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[l]:
@dec Foxy 35

"X-Ray Damage!"

{if Foxy<=0:[[End of Round 1 - Blackfire Wins]](Blackfire-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[m]:
@dec Blackfire 12

{if Blackfire<=0:[[End of Round 1 - Foxy Blaze Wins]](Foxy-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[n]:
@dec Blackfire 9

{if Blackfire<=0:[[End of Round 1 - Foxy Blaze Wins]](Foxy-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[o]:
@dec Blackfire 35

"X-Ray Damage!"

{if Blackfire<=0:[[End of Round 1 - Foxy Blaze Wins]](Foxy-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[p]:
@dec Foxy 20

{if Foxy<=0:[[End of Round 1 - Blackfire Wins]](Blackfire-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[q]:
@dec Foxy 10

{if Foxy<=0:[[End of Round 1 - Blackfire Wins]](Blackfire-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[r]:
@dec Blackfire 12

{if Blackfire<=0:[[End of Round 1 - Foxy Blaze Wins]](Foxy-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[s]:
@dec Foxy 17

{if Foxy<=0:[[End of Round 1 - Blackfire Wins]](Blackfire-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[t]:
@dec Foxy 6

{if Foxy<=0:[[End of Round 1 - Blackfire Wins]](Blackfire-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[u]:
@dec Blackfire 6

{if Blackfire<=0:[[End of Round 1 - Foxy Blaze Wins]](Foxy-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[v]:
@dec Blackfire 11

{if Blackfire<=0:[[End of Round 1 - Foxy Blaze Wins]](Foxy-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[w]:
@dec Foxy 12

{if Foxy<=0:[[End of Round 1 - Blackfire Wins]](Blackfire-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[x]:
@dec Foxy 11

{if Foxy<=0:[[End of Round 1 - Blackfire Wins]](Blackfire-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[y]:
@dec Blackfire 18

{if Blackfire<=0:[[End of Round 1 - Foxy Blaze Wins]](Foxy-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[z]:
@dec Foxy 18

{if Foxy<=0:[[End of Round 1 - Blackfire Wins]](Blackfire-Round1)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[[Foxy-Round1]]:
Foxy Blaze 1 vs. Blackfire 0

Round 2

[Fight!](round two-foxy)

[round two-foxy]:
@set Foxy = 100
@set Blackfire = 100

Health Meters

Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}

Choose your actions:

[?](o) [?](g) [?](b) [?](s) [?](p) [?](r) [?](l) [?](q) [?](i) [?](c) [?](m) [?](t) [?](k)
[?](n) [?](u) [?](z) [?](e) [?](v) [?](j) [?](w) [?](x) [?](a) [?](f) [?](y) [?](d) [?](h)


[a]:
@dec Blackfire 20

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[b]:
@dec Foxy 15

{if Foxy<=0:[[End of Round 2 - Blackfire Wins]](Blackfire-Round2)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[c]:
@dec Foxy 8

{if Foxy<=0:[[End of Round 2 - Blackfire Wins]](Blackfire-Round2)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[d]:
@dec Blackfire 8

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[e]:
@dec Blackfire 5

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[f]:
@dec Blackfire 10

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[g]:
@dec Foxy 5

{if Foxy<=0:[[End of Round 2 - Blackfire Wins]](Blackfire-Round2)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[h]:
@dec Foxy 9

{if Foxy<=0:[[End of Round 2 - Blackfire Wins]](Blackfire-Round2)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[i]:
@dec Foxy 12

{if Foxy<=0:[[End of Round 2 - Blackfire Wins]](Blackfire-Round2)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[j]:
@dec Blackfire 17

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[k]:
@dec Blackfire 15

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[l]:
@dec Foxy 35

"X-Ray Damage!"

{if Foxy<=0:[[End of Round 2 - Blackfire Wins]](Blackfire-Round2)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[m]:
@dec Blackfire 12

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[n]:
@dec Blackfire 9

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[o]:
@dec Blackfire 35

"X-Ray Damage!"

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[p]:
@dec Foxy 20

{if Foxy<=0:[[End of Round 2 - Blackfire Wins]](Blackfire-Round2)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[q]:
@dec Foxy 10

{if Foxy<=0:[[End of Round 2 - Blackfire Wins]](Blackfire-Round2)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[r]:
@dec Blackfire 12

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[s]:
@dec Foxy 17

{if Foxy<=0:[[End of Round 2 - Blackfire Wins]](Blackfire-Round2)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[t]:
@dec Foxy 6

{if Foxy<=0:[[End of Round 2 - Blackfire Wins]](Blackfire-Round2)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[u]:
@dec Blackfire 6

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[v]:
@dec Blackfire 11

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[w]:
@dec Foxy 12

{if Foxy<=0:[[End of Round 2 - Blackfire Wins]](Blackfire-Round2)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[x]:
@dec Foxy 11

{if Foxy<=0:[[End of Round 2 - Blackfire Wins]](Blackfire-Round2)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[y]:
@dec Blackfire 18

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[z]:
@dec Foxy 18

{if Foxy<=0:[[End of Round 2 - Blackfire Wins]](Blackfire-Round2)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}


[[Blackfire-Round1]]:
Foxy Blaze 0 vs. Blackfire 1

Round 2

[Fight!](round two-blackfire)

[round two-blackfire]:
@set Foxy = 100
@set Blackfire = 100

Health Meters

Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}

Choose your actions:

[?](d) [?](o) [?](y) [?](g) [?](u) [?](v) [?](p) [?](r) [?](x) [?](z) [?](l) [?](q) [?](s)
[?](a) [?](h) [?](i) [?](c) [?](m) [?](w) [?](f) [?](t) [?](k) [?](j) [?](b) [?](n) [?](e)



[a]:
@dec Blackfire 20

{if Blackfire<=0:[[End of Round 2 - Foxy Blaze Wins]](Foxy-Round2)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[b]:
@dec Foxy 15

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[c]:
@dec Foxy 8

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[d]:
@dec Blackfire 8

{if Blackfire<=0:[[End of Round 2 - Foxy Blaze Wins]](Foxy-Round2)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[e]:
@dec Blackfire 5

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[f]:
@dec Blackfire 10

{if Blackfire<=0:[[End of Round 2 - Foxy Blaze Wins]](Foxy-Round2)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[g]:
@dec Foxy 5

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[h]:
@dec Foxy 9

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[i]:
@dec Foxy 12

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[j]:
@dec Blackfire 17

{if Blackfire<=0:[[End of Round 2 - Foxy Blaze Wins]](Foxy-Round2)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[k]:
@dec Blackfire 15

{if Blackfire<=0:[[End of Round 2 - Foxy Blaze Wins]](Foxy-Round2)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[l]:
@dec Foxy 35

"X-Ray Damage!"

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[m]:
@dec Blackfire 12

{if Blackfire<=0:[[End of Round 2 - Foxy Blaze Wins]](Foxy-Round2)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[n]:
@dec Blackfire 9

{if Blackfire<=0:[[End of Round 2 - Foxy Blaze Wins]](Foxy-Round2)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[o]:
@dec Blackfire 35

"X-Ray Damage!"

{if Blackfire<=0:[[End of Round 2 - Foxy Blaze Wins]](Foxy-Round2)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[p]:
@dec Foxy 20

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[q]:
@dec Foxy 10

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[r]:
@dec Blackfire 12

{if Blackfire<=0:[[End of Round 2 - Foxy Blaze Wins]](Foxy-Round2)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[s]:
@dec Foxy 17

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[t]:
@dec Foxy 6

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[u]:
@dec Blackfire 6

{if Blackfire<=0:[[End of Round 2 - Foxy Blaze Wins]](Foxy-Round2)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[v]:
@dec Blackfire 11

{if Blackfire<=0:[[End of Round 2 - Foxy Blaze Wins]](Foxy-Round2)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[w]:
@dec Foxy 12

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[x]:
@dec Foxy 11

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[y]:
@dec Blackfire 18

{if Blackfire<=0:[[End of Round 2 - Foxy Blaze Wins]](Foxy-Round2)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[z]:
@dec Foxy 18

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}


[[Foxy-Round2]]:
Foxy Blaze 1 vs. Blackfire 1

Round 3

[Fight!](round three-foxy)

[round three-foxy]:
@set Foxy = 100
@set Blackfire = 100

Health Meters

Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}

Choose your actions:

[?](t) [?](b) [?](g) [?](u) [?](j) [?](d) [?](w) [?](m) [?](s) [?](v) [?](k) [?](n) [?](f)
[?](e) [?](p) [?](z) [?](l) [?](q) [?](a) [?](y) [?](o) [?](h) [?](i) [?](c) [?](x) [?](r)



[a]:
@dec Blackfire 20

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[b]:
@dec Foxy 15

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[c]:
@dec Foxy 8

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[d]:
@dec Blackfire 8

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[e]:
@dec Blackfire 5

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[f]:
@dec Blackfire 10

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[g]:
@dec Foxy 5

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[h]:
@dec Foxy 9

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[i]:
@dec Foxy 12

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[j]:
@dec Blackfire 17

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[k]:
@dec Blackfire 15

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[l]:
@dec Foxy 35

"X-Ray Damage!"

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[m]:
@dec Blackfire 12

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[n]:
@dec Blackfire 9

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[o]:
@dec Blackfire 35

"X-Ray Damage!"

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[p]:
@dec Foxy 20

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[q]:
@dec Foxy 10

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[r]:
@dec Blackfire 12

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[s]:
@dec Foxy 17

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[t]:
@dec Foxy 6

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[u]:
@dec Blackfire 6

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[v]:
@dec Blackfire 11

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[w]:
@dec Foxy 12

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[x]:
@dec Foxy 11

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[y]:
@dec Blackfire 18

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[z]:
@dec Foxy 18

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}


[[Blackfire-Round2]]:
Foxy Blaze 1 vs. Blackfire 1

Round 3

[Fight!](round three-blackfire)

[round three-blackfire]:
@set Foxy = 100
@set Blackfire = 100

Health Meters

Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}

Choose your actions:

[?](m) [?](k) [?](z) [?](g) [?](n) [?](v) [?](u) [?](j) [?](y) [?](d) [?](r) [?](f) [?](t)
[?](e) [?](p) [?](s) [?](a) [?](x) [?](w) [?](b) [?](l) [?](q) [?](o) [?](h) [?](i) [?](c)




[a]:
@dec Blackfire 20

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[b]:
@dec Foxy 15

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[c]:
@dec Foxy 8

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[d]:
@dec Blackfire 8

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[e]:
@dec Blackfire 5

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[f]:
@dec Blackfire 10

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[g]:
@dec Foxy 5

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[h]:
@dec Foxy 9

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[i]:
@dec Foxy 12

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[j]:
@dec Blackfire 17

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[k]:
@dec Blackfire 15

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[l]:
@dec Foxy 35

"X-Ray Damage!"

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[m]:
@dec Blackfire 12

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[n]:
@dec Blackfire 9

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[o]:
@dec Blackfire 35

"X-Ray Damage!"

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[p]:
@dec Foxy 20

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[q]:
@dec Foxy 10

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[r]:
@dec Blackfire 12

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[s]:
@dec Foxy 17

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[t]:
@dec Foxy 6

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[u]:
@dec Blackfire 6

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[v]:
@dec Blackfire 11

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[w]:
@dec Foxy 12

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[x]:
@dec Foxy 11

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[y]:
@dec Blackfire 18

{if Blackfire<=0:[[Foxy Blaze wins the match]](Foxy-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}

[z]:
@dec Foxy 18

{if Foxy<=0:[[Blackfire wins the match]](Blackfire-Match-Win)}{else:
Foxy Blaze = {Foxy}
vs.
Blackfire = {Blackfire}
}



[[Blackfire-Match-Win]]:
- Stage Failed

[[Retry]](C1-S1-Fight)



[[Foxy-Match-Win]]:
- End of Stage 1

[[Continue]](C1-S1-Result)



[[C1-S1-Result]]:
Foxy Blaze: Got to go help out a friend in need.

[[Continue]](CHP01-1Demo)
[[CHP01-1Demo]]:
More to come soon... Thanks for playing!

Biep
Do you know that if you put [code] and [/code] around your code, it becomes both more manageable, easier to browse and easier to copy?
You can even go back and edit your previous posts to add those tags.

This topic is now closed. Topics are closed after 180 days of inactivity.

Support

Forums