• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Missing tiles?

XxDeathAvenger

New Member
Joined
May 5, 2011
Messages
95
Reaction score
2
Hey guys, I open my map in RME and it goes from x:1,y:1 to x:1000,y:1000 just about. But, when I start up my server it says missing tiles on like x:65500,y:65500 how can I fix this if my map doesnt even go that far?
 
When you start your server the tiles xyz position are stored in your database, this x y of the map it is looking for might be from you testing another map.

What you can try is go into your database and run this command as a query
** important backup your database 1st **
Code:
DELETE FROM `tiles` WHERE `x` > 1000 AND `y` > 1000;
Your server should be offline when you run the sql query.
 
These instructions are for xampp.
1. type localhost/phpmyadmin in the url box of your browser
2. Select your database associated with your ot.
3. Click on the Export tab at the top of the page.
4. Click the checkbox labeled Save as file on the lower left hand corner of the page.
5. Click the Go button on the right lower part of the page.
 
Like, I don't know how to run the query haha. Does Uniserver look the same as others?
Well to be honest I don't know..

According to this page this is how you access phpmyadmin
http://www.uniformserver.com/ZeroXI_documentation/server_utils.html#phpMyAdmin
Code:
phpMyAdmin

phpMyAdmin is a MySQL admininstration tool written in PHP. It allows you to perform tasks such as creating, modifying or deleting databases. You can execute SQL statements and manage users and their permissions.

The phpMyAdmin menu button opens the phpMyAdmin index page in the default/portable browser.

    url=http://localhost:80/us_opt1/index.php"

Note 1: phpMyAdmin access. By default is accessible only to localhost.
Note 2: The port (80) is substituted as appropriate for the value configured.
Note 3: phpMyAdmin is an alternative to Adminer; which has a smaller foot-print.
 
Well, I know where "query," is, it's just confusing me haha
Make sure your database which is associated with your ot is selected 1st.
Click the SQL tab, copy the query below and paste it in the box then click the GO button
Code:
DELETE FROM `tiles` WHERE `x` > 1000 AND `y` > 1000;
 
Back
Top