Fire force

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
bool pause_timer_state;
function pause_timer(int cycles)
{
if (cycles == 0)
{
if (pause_timer_state == 0) return 0; // timer has expired
else return 1;
}
else
{
SetTimer(1, cycles);
pause_timer_state = 1;
}
}
function repeatedly_execute()
{
if ((pause_timer_state == 1) & (IsTimerExpired(1) == true)) pause_timer_state = 0;
}
QuoteHow'sQuoteToo bad it was your good hand that you tied.possibly a counter-insult?
QuoteI've seen better fighting style in a small hedgehog!
QuoteI am above fighting such a coward as you!
QuoteMy swordmastery is known across the seven seas
Level | Cell | Go through door * |
1 | D1 | 1 |
1 | C2 | 1 |
1 | C3 | 0 |
1 | B4 | 3 |
2 | B5 | 2 |
2 | C5 | 2 |
2 | D5 | 2 |
2 | E5 | 2 |
2 | F5 | 3 |
3 | G5 | 2 |
3 | G4 | 2 |
2 | G3 | 1 |
1 | G4 | 1 or 2 |
QuoteYour Mom is so hairy, Bigfoot takes pictures of her.
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 0.095 seconds with 14 queries.