Reply to Re: if (&crap == 1 && &morecrap == 1) ???
If you don't have an account, just leave the password field blank.
: : Ok, at first I thought dink c supported if (&var == 1 && &bar == 1) statements(?) but then I wasn't sure, so I'm asking now:
: : Has anyone ever tried to make something like this work? Or am I wasting my precious time?
: I don't think that would work, instead, you would use...
: if(&crap == 1)
: {
: if(&morecrap == 1)
: {
: bluh
: }
: if(&morecrap == 0)
: {
: bluh
: }
: }
: or something like that, I think that'd work, that is if I know what you're talking about... I think I do...
Ok, I knew how to do that, but thanks anyway.
It's just that this makes my scripts huge and hard to oversee..
Anyway, you could've tried it
: : Has anyone ever tried to make something like this work? Or am I wasting my precious time?
: I don't think that would work, instead, you would use...
: if(&crap == 1)
: {
: if(&morecrap == 1)
: {
: bluh
: }
: if(&morecrap == 0)
: {
: bluh
: }
: }
: or something like that, I think that'd work, that is if I know what you're talking about... I think I do...
Ok, I knew how to do that, but thanks anyway.
It's just that this makes my scripts huge and hard to oversee..
Anyway, you could've tried it






