Ir para conteúdo

[ Resolvido ]me Ajudem Por Favor


kimos09

Posts Recomendados

Ola Xtibianos..Estou com um problema aqui no meu ot server.Vou explicar para vocês]

 

Eu tenho aqui na minha casa um Alissow 3.6 e eu fiz um mapa proprio e quando eu quero logar na account manager da o seguinte Erro : Temple position is wrong.Contact the adiministrator

 

Mais ae está..No meu Config.lua eu ja botei o X,y,z tudo certinho so que no remeres map editor a minha cidade ta com o ID 1

 

 

Alguem pode me ajudar ???

 

Agradeço... :smile_positivo::icon_idea:

Link para o comentário
Compartilhar em outros sites

já colocou a posição na database?? (na account do account manager)

tem que colocar la também..

Vilden o meu ot que tenho aqui é o Alissow 3.6..No database diz isso :

 

 

if(result == nil) then

print("> WARNING: Couldn't load database lib.")

return

end

 

Result = createClass(nil)

Result:setAttributes({

id = -1,

query = ""

})

 

function Result:getID()

return self.id

end

 

function Result:setID(_id)

self.id = _id

end

 

function Result:getQuery()

return self.query

end

 

function Result:setQuery(_query)

self.query = _query

end

 

function Result:create(_query)

self:setQuery(_query)

local _id = db.storeQuery(self:getQuery())

if(_id) then

self:setID(_id)

end

 

return self:getID()

end

 

function Result:getRows(free)

local free = free or false

if(self:getID() == -1) then

error("[Result:getRows] Result not set!")

end

 

local c = 0

repeat

c = c + 1

until not self:next()

 

local _query = self:getQuery()

self:free()

if(not free) then

self:create(_query)

end

 

return c

end

 

function Result:getDataInt(s)

if(self:getID() == -1) then

error("[Result:getDataInt] Result not set!")

end

 

return result.getDataInt(self:getID(), s)

end

 

function Result:getDataLong(s)

if(self:getID() == -1) then

error("[Result:getDataLong] Result not set!")

end

 

return result.getDataLong(self:getID(), s)

end

 

function Result:getDataString(s)

if(self:getID() == -1) then

error("[Result:getDataString] Result not set!")

end

 

return result.getDataString(self:getID(), s)

end

 

function Result:getDataStream(s)

if(self:getID() == -1) then

error("[Result:getDataStream] Result not set!")

end

 

return result.getDataStream(self:getID(), s)

end

 

function Result:next()

if(self:getID() == -1) then

error("[Result:next] Result not set!")

end

 

return result.next(self:getID())

end

 

function Result:free()

if(self:getID() == -1) then

error("[Result:free] Result not set!")

end

 

self:setQuery("")

local ret = result.free(self:getID())

self:setID(-1)

return ret

end

 

Result.numRows = Result.getRows

function db.getResult(query)

if(type(query) ~= 'string') then

return nil

end

 

local ret = Result:new()

ret:create(query)

return ret

end

 

Se vc conseguir achar outro q eu possa botar agradeço...Ja tentei em Varios ot fazer map e sempre da isso..Nao sei oque faço de errado pq quero começar uma carrera de Mapper..Obrigado

 

Link para o comentário
Compartilhar em outros sites

Visitante
Este tópico está impedido de receber novos posts.
×
×
  • Criar Novo...