Hi, i've only been working with mirc scripting for a week.. and i've sorta made a Fighting Style game for mirc.. and i have this (simple problem).. i'll try to explain it the best i can..

what i want to know is can if's do this..

if %this == True { do this}
if %this == Flase {do that}

Is this possible?

Cause i have have this on !attack

on *:text:!attack:#: {
if ($2 == $null) { /randattack }
else if ($2 == $read(test.txt, w, $2)) { /attackplayer }
else { /msg $chan The character $2 is not in our database }
}

and what i was hoping was putting

else if ($read(test.txt, w, $2) == True) { /attackplayer }
else if ($read(test.txt, w, $2) == Fasle) { /msg $chan The character $2 is not in our database }

Does this make any sense?

Thanks

Coca-Bear