• TibiaFace

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

    .
    demo menumenu

    Afiliados



    Votar:

    Vip system error

    Compartir:

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

    1Vip system error Empty Vip system error Vie Ago 18, 2017 12:10 am

    zerok

    zerok
    Nuevo Miembro
    Nuevo Miembro
    Mi Problema:
    Cada vez que ingresa un player a mi servidor arroja el problema en la consola.

    [18/8/2017 1:6:45] Kike has logged in.
    [18/8/2017 1:6:45] Error during getDataInt(vip_time).
    [18/8/2017 1:6:45] Error during getDataInt(vip_time).
    [18/8/2017 1:6:45] Error during getDataInt(vip_time).
    [18/8/2017 1:6:45] Error during getDataInt(vip_time).
    [18/8/2017 1:6:45] Error during getDataInt(vip_time).
    [18/8/2017 1:6:45] Error during getDataInt(vip_time).
    [18/8/2017 1:6:45] Error during getDataInt(vip_time).


    Imagen de mi error:
    Vip system error Http:

    Esta en:
    Consola

    2 participantes

    2Vip system error Empty Re: Vip system error Vie Ago 18, 2017 12:13 am

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    ve a tu carpeta lid en data y copia el contenido de tu systema vip dentro de las tag code aqui en tu tema



    Vip system error YNU5B25
    2 participantes
    http://www.tibiaface.com

    3Vip system error Empty Code Vie Ago 18, 2017 12:26 am

    zerok

    zerok
    Nuevo Miembro
    Nuevo Miembro
    Código:
    vip = {
       name = "Vip system";
       author = "Mock";
       version = "1.0.0.0";
       query="ALTER TABLE `accounts` ADD `vip_time` INTEGER";
       query2="ALTER TABLE `accounts` ADD `vip_time` INT(15) NOT NULL"
    }

    function vip.setTable()
       dofile('config.lua')
       if sqlType == "sqlite" then
       db.executeQuery(vip.query)
       else
            db.executeQuery(vip.query2)
       end
    end

    function vip.getVip(cid)
             assert(tonumber(cid),'Parameter must be a number')
             if isPlayer(cid) == FALSE then error('Player don\'t find') end;
             ae =  db.getResult("SELECT `vip_time` FROM `accounts` WHERE `name` = '"..getPlayerAccount(cid).."';")
             if ae:getID() == -1 then
                return 0
             end

    local retee = ae:getDataInt("vip_time") or 0
    ae:free()
             return retee
    end

    function vip.getVipByAcc(acc)
             assert(acc,'Account is nil')
             local a = db.getResult("SELECT `vip_time` FROM `accounts` WHERE `name` = '"..acc.."';")
             if a:getID() ~= -1 then
                 return a:getDataInt("vip_time") or 0, a:free()
             else
                 error('Account don\'t find.')
             end
    end

    function vip.setVip(cid,time)
             dofile("config.lua")
             assert(tonumber(cid),'Parameter must be a number')
             assert(tonumber(time),'Parameter must be a number')
             if isPlayer(cid) == FALSE then error('Player don\'t find') end;
             db.executeQuery("UPDATE `"..sqlDatabase.."`.`accounts` SET `vip_time` = '"..(os.time()+time).."' WHERE `accounts`.`name` ='".. getPlayerAccount(cid).."';")
    end

    function vip.getVipByAccount(acc)
             assert(acc,'Account is nil')
             return db.getResult("SELECT `vip_time` FROM `accounts` WHERE `name` = '"..acc.."';"):getDataInt("vip_time") or 0
    end                                      

    function vip.hasVip(cid)
             assert(tonumber(cid),'Parameter must be a number')
             if isPlayer(cid) == FALSE then return end;
             local t = vip.getVip(cid) or 0
             if os.time(day) < t then
                return TRUE
             else
                return FALSE
             end
    end

    function vip.hasVips(cid)
             assert(tonumber(cid),'Parameter must be a number')
             if isPlayer(cid) == FALSE then return end;
             local t = vip.getVip(cid)
             if os.time(day) < t then
                return TRUE
             else
                return FALSE
             end
    end

    function vip.accountHasVip(acc)
             assert(acc,'Account is nil')
             if os.time() < vip.getVipByAccount(acc) then
                return TRUE
             else
                return FALSE
             end
    end
    function vip.getDays(days)
       return (3600 * 24 * days)
    end

    function vip.addVipByAccount(acc,time)
       assert(acc,'Account is nil')
       assert(tonumber(time),'Parameter must be a number')
       local a = vip.getVipByAcc(acc)
       a = os.difftime(a,os.time())
       if a < 0 then a = 0 end;
       a = a+time
       return vip.setVipByAccount(acc,a)
    end

    function vip.setVipByAccount(acc,time)
             dofile("config.lua")
             assert(acc,'Account is nil')
             assert(tonumber(time),'Parameter must be a number')
             db.executeQuery("UPDATE `accounts` SET `vip_time` = '"..(os.time()+time).."' WHERE `accounts`.`name` ='"..acc.."';")
             return TRUE
    end

    function vip.returnVipString(cid)
       assert(tonumber(cid),'Parameter must be a number')
       if isPlayer(cid) == TRUE then
          return os.date("%d %B %Y %X ", vip.getVip(cid))
       end
    end

    2 participantes

    4Vip system error Empty Re: Vip system error Vie Ago 18, 2017 12:29 am

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    para que no salga eso de tu conosola tienes que ejecutar esta tabla mysql

    Código:
    ALTER TABLE `accounts` ADD `vip_time` INT(15) NOT NULL



    Vip system error YNU5B25
    2 participantes
    http://www.tibiaface.com

    5Vip system error Empty Re: Vip system error Vie Ago 18, 2017 12:34 am

    zerok

    zerok
    Nuevo Miembro
    Nuevo Miembro
    me sale esto luego de ejecutarlo

    Error ejecutando consulta: duplicate column name: vip_time

    2 participantes

    6Vip system error Empty Re: Vip system error Vie Ago 18, 2017 12:38 am

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    elimina la tabla que añadiste ante antes de ejecutar esa



    Vip system error YNU5B25
    2 participantes
    http://www.tibiaface.com

    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).