18-08-2009, 06:45 PM
Quote:One problem I did notice was that the map name doesn't draw properly--this causes it to just stay where it was on the original sized map.
I fixed it by changing:
Code: Select all
' Draw map name
Call DrawText(TexthDC, DrawMapNameX, DrawMapNameY, Map.Name, DrawMapNameColor)
To:
Code: Select all
' Draw map name
Call DrawText(TexthDC, Camera.Right - ((Len(Map.Name) \ 2) * 28), Camera.Top + 1, Map.Name, DrawMapNameColor)
Unfortunately I am horrid at properly centering things. This draws the name starting at the left, as opposed to actually centering said text.
Anyways it's no a byg deal. In Rpg Maker program happens the same thing, at least those who i tried.
But i'm going to ask one thing.
I Just generated the .exe server and client, enter in the game and changed te map size from propietes of map editor, but the max tile that i could re-size the map was 30x30, it's that correct? or i'm forggoting something?