02-07-2010, 08:49 PM
There is no missing dll. But there is a missing 'begin' statement withing the filetest module.
Use this and it will work:
Use this and it will work:
Code:
module FileTest
def self.tileset?(string)
begin
RPG::Cache.tileset(string)
return true
rescue
return false
end
end
end