Illusion Gaming
RMXP Pro
- 210
- Posts
- 18
- Years
- Age 32
- Seen Dec 10, 2007
ok well I was using the starter kit v1.5 and I saw that if you had a map size of 20 x 15 the character would be way off the map so I opened the scripts and did so math to center it and heres how to fix the error or what ever you call it.
Go to Game_Player*
find:
max_x = ($game_map.width - 20) * 128
max_y = ($game_map.height - 15) * 128
and replace it with:
max_x = ($game_map.width - 15) * 128
max_y = ($game_map.height - 10) * 128
I found that out because with the screen size of 480 by 320 it only shows 15 blocks across and 10 down and if the screen size was 640 by 480 there was 20 blocks across and 15 down. ok so hope this helps :D
Go to Game_Player*
find:
max_x = ($game_map.width - 20) * 128
max_y = ($game_map.height - 15) * 128
and replace it with:
max_x = ($game_map.width - 15) * 128
max_y = ($game_map.height - 10) * 128
I found that out because with the screen size of 480 by 320 it only shows 15 blocks across and 10 down and if the screen size was 640 by 480 there was 20 blocks across and 15 down. ok so hope this helps :D