sometimes the error reporting doesn't have the line number accurate but that's not the issue, do you have the images in the same directory as the exe?
Quote: "Rem Load Textures
Load image "cottag02.bmp",1
Load image "barry.bmp",2"
the way the are loading here indicates that they should be in the same dir as the exe. if they are in some sub dir change the code...
Quote: "Rem Load Textures
Load image "images\cottag02.bmp",1
Load image "images\barry.bmp",2"
(substituting "images" for the actual name of the sub dir)
-RUST-