• TibiaFace

    Tibiaface | Una comunidad Open Tibia donde encontras : mapas, scripts, Otserver, npc y amigos etc ...

    .
    demo menumenu

    Afiliados



    Votar:

    ERROR NO DEJA ENTRAR AL OT

    Compartir:

    Ver el tema anterior Ver el tema siguiente Ir abajo  Mensaje (Página 1 de 1.)

    1ERROR NO DEJA ENTRAR AL OT Empty ERROR NO DEJA ENTRAR AL OT Mar Ago 15, 2017 5:54 pm

    mingidan

    mingidan
    Donador User
    Donador User
    Mi Problema:
    NOME DEJA ENTRAR Y DICE ESO EN LA CONSOLA QUE SERA POR FAVOR AYUDA


    Imagen de mi error:
    ERROR NO DEJA ENTRAR AL OT ARms9jF

    Esta en:
    Consola

    2 participantes

    2ERROR NO DEJA ENTRAR AL OT Empty Re: ERROR NO DEJA ENTRAR AL OT Mar Ago 15, 2017 6:24 pm

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    agrega estos a tus lib/50-functions

    Código:
    function isPlayerGhost(cid)
        if(not isPlayer(cid)) then
            return false
        end
     
        return getCreatureCondition(cid, CONDITION_GAMEMASTER, GAMEMASTER_INVISIBLE) or getPlayerFlagValue(cid, PLAYERFLAG_CANNOTBESEEN)
    end



    ERROR NO DEJA ENTRAR AL OT YNU5B25
    2 participantes
    http://www.tibiaface.com

    3ERROR NO DEJA ENTRAR AL OT Empty Re: ERROR NO DEJA ENTRAR AL OT Mar Ago 15, 2017 10:06 pm

    mingidan

    mingidan
    Donador User
    Donador User
    me sale el mismo error

    2 participantes

    4ERROR NO DEJA ENTRAR AL OT Empty Re: ERROR NO DEJA ENTRAR AL OT Mar Ago 15, 2017 10:22 pm

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    no lee esta funcion tu login.lua

    isPlayerGhost(cid)

    en la liena 49 se colocas tulogin.lua aqui para verlo



    ERROR NO DEJA ENTRAR AL OT YNU5B25
    2 participantes
    http://www.tibiaface.com

    5ERROR NO DEJA ENTRAR AL OT Empty Re: ERROR NO DEJA ENTRAR AL OT Miér Ago 16, 2017 12:05 am

    mingidan

    mingidan
    Donador User
    Donador User
    local config = {
    loginMessage = getConfigValue('loginMessage'),
    useFragHandler = getBooleanFromString(getConfigValue('useFragHandler'))
    }

    function onLogin(cid)
    if(getBooleanFromString(getConfigValue('accountManager')) == false) then
    if (getCreatureName(cid) == "Account Manager") then
    return doRemoveCreature(cid, true)
    end
    end

    --- CRITICAL SYSTEM ----
    registerCreatureEvent(cid, "critical")
    if getPlayerStorageValue(cid, 48903) == -1 then
    setPlayerStorageValue(cid, 48903, 0)
    end

    registerCreatureEvent(cid, "dodge")
    if getPlayerStorageValue(cid, 48902) == -1 then
    setPlayerStorageValue(cid, 48902, 0)
    end

    local loss = getConfigValue('deathLostPercent')
    if(loss ~= nil) then
    doPlayerSetLossPercent(cid, PLAYERLOSS_EXPERIENCE, loss * 10)
    end

    local accountManager = getPlayerAccountManager(cid)
    if(accountManager == MANAGER_NONE) then
    local lastLogin, str = getPlayerLastLoginSaved(cid), config.loginMessage
    if(lastLogin > 0) then
    doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str)
    str = "Your last visit was on " .. os.date("%a %b %d %X %Y", lastLogin) .. "."
    else
    str = str .. " Please choose your outfit."
    doPlayerSendOutfitWindow(cid)
    end

    doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str)
    elseif(accountManager == MANAGER_NAMELOCK) then
    addEvent(valid(doCreatureSay), 500, cid, "Hello, it appears that your character has been locked for name violating rules, what new name would you like to have?", TALKTYPE_PRIVATE_NP, true, cid)
    elseif(accountManager == MANAGER_ACCOUNT) then
    addEvent(valid(doCreatureSay), 500, cid, "Hello, type {account} to manage your account. If you would like to start over, type {cancel} anywhere.", TALKTYPE_PRIVATE_NP, true, cid)
    else
    addEvent(valid(doCreatureSay), 500, cid, "Hello, type {account} to create an account or {recover} to recover an account.", TALKTYPE_PRIVATE_NP, true, cid)
    end

    if(not isPlayerGhost(cid)) then
    doSendMagicEffect(getCreaturePosition(cid), CONST_ME_TELEPORT)
    end

    registerCreatureEvent(cid, "Idle")
    registerCreatureEvent(cid, "Mail")
    if(getPlayerOperatingSystem(cid) >= CLIENTOS_OTCLIENT_LINUX) then
    registerCreatureEvent(cid, "ExtendedOpcode")
    end

    registerCreatureEvent(cid, "ReportBug")
    if(config.useFragHandler) then
    registerCreatureEvent(cid, "SkullCheck")
    end

    registerCreatureEvent(cid, "GuildEvents")
    registerCreatureEvent(cid, "AdvanceSave")
    registerCreatureEvent(cid, "fraglook")
    registerCreatureEvent(cid, "showDeaths")
    registerCreatureEvent(cid, "partyAndGuildProtection")
    registerCreatureEvent(cid, "addon")
    return true
    end

    2 participantes

    6ERROR NO DEJA ENTRAR AL OT Empty Re: ERROR NO DEJA ENTRAR AL OT Miér Ago 16, 2017 12:49 am

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    elimina eso

    Código:
    if(not isPlayerGhost(cid)) then
    doSendMagicEffect(getCreaturePosition(cid), CONST_ME_TELEPORT)
    end



    ERROR NO DEJA ENTRAR AL OT YNU5B25
    2 participantes
    http://www.tibiaface.com

    7ERROR NO DEJA ENTRAR AL OT Empty Re: ERROR NO DEJA ENTRAR AL OT Miér Ago 16, 2017 1:00 am

    mingidan

    mingidan
    Donador User
    Donador User
    ahora sale esto ERROR NO DEJA ENTRAR AL OT ObhXnNg

    2 participantes

    8ERROR NO DEJA ENTRAR AL OT Empty Re: ERROR NO DEJA ENTRAR AL OT Miér Ago 16, 2017 1:04 am

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    elimina esto

    Código:
    if(getPlayerOperatingSystem(cid) >= CLIENTOS_OTCLIENT_LINUX) then
    registerCreatureEvent(cid, "ExtendedOpcode")
    end



    ERROR NO DEJA ENTRAR AL OT YNU5B25
    2 participantes
    http://www.tibiaface.com

    9ERROR NO DEJA ENTRAR AL OT Empty Re: ERROR NO DEJA ENTRAR AL OT Miér Ago 16, 2017 1:14 am

    mingidan

    mingidan
    Donador User
    Donador User
    ya gracias maya por tu ayuda

    2 participantes

    Contenido patrocinado


    2 participantes

    Ver el tema anterior Ver el tema siguiente Volver arriba  Mensaje (Página 1 de 1.)

    Permisos de este foro:
    No puedes responder a temas en este foro.

     

    BienvenidosTibiaFace es una comunidad de Open Tibia. Para participar debes estar registrado (click para Regístrate).