Recently I’m working on a fun project of MTASA trying to convert a whole GTA: LCS Map into MTA: SA. one interesting fundings is MTA-SA LUA is case sensitive in file interpretation in contrast to the SA-MP platform.
Some success replaced model:
TonisAptInterior1.dff:

izzy_saloffice.dff (Replaced fail, which game engine use default GTA-SA Model)

So in i invesgate the file-io design of the ogringnal cStream Render by (So in i invesgate the file-io design of the ogringnal cStream Render by (cobraCNC). the issue i found in his code is


Idea for fix for CSTREAM Render file naming issue
- File IO name convertion
- JSD,JSP name convertion
objectloader.lua:
36: fileCopy ("Resources/"..v..".dff",MapName.."/Content/models/"..v..".dff")
Change to:
36: fileCopy ("Resources/"..v..".dff",MapName.."/Content/models/"..string.lower(v)..".dff")