Reply to Re: Globals and the if statement
If you don't have an account, just leave the password field blank.
: void main(void)
: {
: }
: void talk(void);
: {
: freeze(1);
: if (&story == 1);
Here's you're problem. If statments shouldn't have ;s after them. void talk(void); shouldn't either for that matter, but I'm not sure that one cases provlems. Putting it after if will.
: {
: }
: void talk(void);
: {
: freeze(1);
: if (&story == 1);
Here's you're problem. If statments shouldn't have ;s after them. void talk(void); shouldn't either for that matter, but I'm not sure that one cases provlems. Putting it after if will.