Quote (Trev @ 24 Sep 2013 02:31)
Wow my coding sucks, I have no idea where to put the {} and I know that's not even right lol...
seems that you made an indention for the printf. why didn't made this for the stuff after the else? if you make right indention, the brackets are easy

usually:
Code
if (asdf)
asdf;
else
asdf;
but if you use multiple statements for the if or the else, then you want (or need) to make blocks:
Code
if (asdf) {
asdf;
asdf;
} else {
asdf;
}
This post was edited by Richter on Sep 24 2013 12:51pm