When i'm trying to create my own room model named model_new and i set heightmap and x,y,z cordinats then save and start emu it just says this:
Here is the room_model
![]()
When i'm trying to create my own room model named model_new and i set heightmap and x,y,z cordinats then save and start emu it just says this:
Here is the room_model
![]()
Ahh nevermind, got the code wrong. It can not return a value for a character which is not between 0-9 and a-k in your model. You can try to add the missing values like:
tillcase 'l':
return 21;
case 'm':
return 22;
Just copy and paste it and add 1 to the return value and character. Shouldn't be too hard right? ;pcase 'w':
return 32;
nvm worked fine, xd
Ah you already did that, that is good.
Now I see you have X in your room_model, instead of x (It will execute another codeblock for the lower x).
Only saw it now because it wasn't too clear in the screen xD (oops).
Replace X with x and it'll do the trick
Yes ;)