Reply to Re: Updated File: GNU FreeDink
If you don't have an account, just leave the password field blank.
Can you copy/paste the exact code that works for you?
doesn't work anywhere and you should see "Dink:Error with choice() statement in script key-65, offset 73. (//Here we see what options we have:?)" in the debug log.
With the comment above choice_start():
it works everywhere, so we've got textbook compatibility.
I must be missing something obvious.
void main ( void )
{
choice_start()
//Here we see what options we have:
"Option 1"
"Option 2"
choice_end()
}
doesn't work anywhere and you should see "Dink:Error with choice() statement in script key-65, offset 73. (//Here we see what options we have:?)" in the debug log.
With the comment above choice_start():
void main ( void )
{
//Here we see what options we have:
choice_start()
"Option 1"
"Option 2"
choice_end()
}
it works everywhere, so we've got textbook compatibility.
I must be missing something obvious.






