Fix 1:
Hey guys, well i think some new people might need help with this. If you register and our able to log in then you will get a error on line 290 and 296, on that line this is what they say
290: if ($mapinfo3[mining]
296: if ($mapinfo3[lumber]
now it's pretty easy to pick out if you know php, in the brackets there should be a ' after the words so this is what they should look like...
290 edit: if ($mapinfo3['mining']
296 edit: if ($mapinfo3['lumber']
so do that, save it, and refresh page and it should work perfectly

Map edit 2:
The next edit is so that you can move around. Now what you have to do is open up map.php, i have it opened in notepad for now, and press ctrl and h at the same time, put in tutorial for the top and for replace with: put the name of your database, then click replace all and save.
This is what allows you to move so this is important. So there you go, when i find more errors ill put them here!
fix 3:
I just realized guys that almost every single php file in the main folder you need to do what i did in the second fix otherwise you will have a lot of errors. You wont have to do it in any of the folders except for the location folder. There you need to replace everything too. This will stop a lot of errors
fix 4:
A problem for adding a greeting on the a store is messed up too. To edit this go to the store folder, then to changeAFgreeting.php.
when you are there go to line 36 or press ctrl and g at the same time. Then it will say:
<?php $expneeded = ($playerinfo3['level'] * 100) * $playerinfo3['leve'l];
where it says $playerinfo3['leve'l]; move the ' behind the L and it should fix it
you have to do the same exact thing to changeAFgreeting2.php and it will let you submit your greeting
fix 5:
another error, go to housing.php and go to line 271 and it should say
if ($housing3[armorforge]== 1)
change that to if ($housing3['armorforge']== 1) and it should fix it