• 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!

Replacing map in the [8.54-8.57] The Forgotten Server v0.2.7 (Mystic Spirit)

Stingy

New Member
Joined
Aug 23, 2009
Messages
20
Reaction score
0
Hey, i recently downloaded this "server" and i have no idea what to do.. i've opened ports.. players have been able to join etc.. but i've tried a few times to replace the orignal map in the forgotten server.. and never suceeded.. please help me :/

if you had some tutorial or something it would be perfect.. thanks :)



Edit: i also don't have any "players" map in my data map.. so i can't make any chars gamemasters or something.

And please don't flame.. i'm new with hosting ot's
 
ok thanks, testing it out now

Edit: but wont it say like "temple position is wrong" or something like that? if i try to login
 
Last edited:
Alright, i replaced my map for a evolution clean map.. and now i want to place my account manager in the right spot since it says "temple position is wrong" how do i do that? i got my map editor up and the map is imported

thanks :)



Edit: I also don't know how to create a gm since i don't have a "players" folder :/
 
Man, go to your databas, and then enter in SQL Query
then put:

Code:
UPDATE players SET posx = ---, posy = ---, posz = ---, town_id = 1;
 
The thing is .. all i can find s a document named "forgottenserver" a sql-file
and this was some shit i found in it that looked almost the same as your line.
CREATE TABLE `players`
(
`id` INT NOT NULL AUTO_INCREMENT,
`name` VARCHAR(255) NOT NULL,
`group_id` INT NOT NULL DEFAULT 1,
`account_id` INT NOT NULL DEFAULT 0,
`level` INT NOT NULL DEFAULT 1,
`vocation` INT NOT NULL DEFAULT 0,
`health` INT NOT NULL DEFAULT 150,
`healthmax` INT NOT NULL DEFAULT 150,
`experience` BIGINT NOT NULL DEFAULT 0,
`lookbody` INT NOT NULL DEFAULT 0,
`lookfeet` INT NOT NULL DEFAULT 0,
`lookhead` INT NOT NULL DEFAULT 0,
`looklegs` INT NOT NULL DEFAULT 0,
`looktype` INT NOT NULL DEFAULT 136,
`lookaddons` INT NOT NULL DEFAULT 0,
`maglevel` INT NOT NULL DEFAULT 0,
`mana` INT NOT NULL DEFAULT 0,
`manamax` INT NOT NULL DEFAULT 0,
`manaspent` INT NOT NULL DEFAULT 0,
`soul` INT UNSIGNED NOT NULL DEFAULT 0,
`town_id` INT NOT NULL DEFAULT 0,
`posx` INT NOT NULL DEFAULT 1000,
`posy` INT NOT NULL DEFAULT 0,
`posz` INT NOT NULL DEFAULT 0,
 
No.

Just execute/import this to your database:

Code:
UPDATE players SET posx = ---, posy = ---, posz = ---, town_id = 1;

(---, your temple's position)
 
Back
Top