equal to or bigger than

Blitz3D Forums/Blitz3D Beginners Area/equal to or bigger than

I tried => but it didnt work,EDIT-I made a mistake forget it

try this

if x# = y# or x# > y# then
     --your code here--
end if


try >=

Cool...didn't know that would work...that should speed things up :) Thanks Rob

Edit: just went back over the tutorials in Blitz and don't know how I missed that...but there it is :)