Jump to content
  • 0

Error Sistema de Doctrinas


Jaggerman

Pregunta

Aquí tenéis el problema:

Debes iniciar sesión para ver el contenido del enlace en esta publicación.

Client syserr:

Spoiler

1021 16:51:17561 :: Unknown Server Command SetPetIncreaseBoniButtonIndex 30 | SetPetIncreaseBoniButtonIndex
1021 16:51:17567 :: Unknown Server Command SetISLoadButtonIndex 51 | SetISLoadButtonIndex
1021 16:51:17567 :: Unknown Server Command usuario_id 2 | usuario_id
1021 16:51:17582 :: Unknown Server Command SetPetSendAwayButtonIndex 60 | SetPetSendAwayButtonIndex
1021 16:51:17582 :: Unknown Server Command SetPetClearItemSlotButtonIndex 61 | SetPetClearItemSlotButtonIndex
1021 16:51:17582 :: Unknown Server Command achievementpoints 3 | achievementpoints
1021 16:51:17599 :: Unknown Server Command SetISBuyButtonIndex 67 | SetISBuyButtonIndex
1021 16:51:19315 :: Unknown Server Command input1 | input1
1021 16:51:19397 :: Unknown Server Command input0 | input0
1021 16:51:52280 :: Unknown Server Command SetPetIncreaseBoniButtonIndex 30 | SetPetIncreaseBoniButtonIndex
1021 16:51:52280 :: Unknown Server Command SetISLoadButtonIndex 51 | SetISLoadButtonIndex
1021 16:51:52297 :: Unknown Server Command usuario_id 2 | usuario_id
1021 16:51:52298 :: Unknown Server Command SetPetSendAwayButtonIndex 60 | SetPetSendAwayButtonIndex
1021 16:51:52315 :: Unknown Server Command SetPetClearItemSlotButtonIndex 61 | SetPetClearItemSlotButtonIndex
1021 16:51:52315 :: Unknown Server Command achievementpoints 3 | achievementpoints
1021 16:51:52315 :: Unknown Server Command SetISBuyButtonIndex 67 | SetISBuyButtonIndex
1021 16:52:20147 :: Unknown Server Command input1 | input1
1021 16:52:20228 :: Unknown Server Command input0 | input0
 

 

 

Enlace para comentar
Compartir en otros sitios

13 respuestas a esta pregunta

Mensajes recomendados

  • 0
En 20/10/2018 a las 17:55, Snappy dijo:

Eso es que  estará mas mal instalado xD

Pues ese error "visual" es lo único que funciona mal por así decirlo, al elegir las habilidades te las da bien, lo único es ese recuadro final.

 

En 20/10/2018 a las 19:15, NazoX dijo:

es la quest, si has metido el lycan lo habrá echo mal, o si ha quitado alguna raza, pero es la quest o que no ha a añadido en queslib los function esos, si tiene que no me acuerdo

En la quest no viene nada del lycan, y funciones en el questlib no he metido nada, en la guía no sale nada para implementar funciones ahí.

Enlace para comentar
Compartir en otros sitios

  • 0
hace 23 horas, NazoX dijo:

Es q no tengo la quest a mano, estoy en el móvil, pero básicamente es la quest ese error 

Spoiler

quest elegir_habis begin
    state start begin
        
        function getjobname(job)
            if job == 0 or job == 4 then    return tostring("Guerrero")
            elseif job == 1 or job == 5 then    return tostring("Ninja")
            elseif job == 2 or job == 6 then    return tostring("Sura")
            elseif job == 3 or job == 7 then    return tostring("Chaman")
            end
        end
        
        function getskillgroupname(skillgroup)
            local job = pc.get_job()
            if skillgroup == 1 and job == 0 or job == 4 then    return tostring("Corporal")
            elseif skillgroup == 2 and job == 0 or job == 4 then     return tostring("Mental")
            elseif skillgroup == 1 and job == 1 or job == 5 then     return tostring("Daguero")
            elseif skillgroup == 2 and job == 1 or job == 5 then     return tostring("Arquero")
            elseif skillgroup == 1 and job == 2 or job == 6 then     return tostring("Espejo")
            elseif skillgroup == 2 and job == 2 or job == 6 then     return tostring("Magia Negra")
            elseif skillgroup == 1 and job == 3 or job == 7 then     return tostring("Dragon")
            elseif skillgroup == 2 and job == 3 or job == 7 then     return tostring("Curacion")
            end
        end
        
        when login begin
            cmdchat("HABILIDADES QID|"..q.getcurrentquestindex())
        end
        
        when login or levelup with pc.get_level() >= 5 and pc.get_skill_group() == 0 begin
            local job = pc.get_job()
            if job == 0 or job == 4 then        -- Guerrero
                cmdchat("HABILIDADES RAZA|1")
            elseif job == 1 or job == 5 then    -- Ninja
                cmdchat("HABILIDADES RAZA|2")
            elseif job == 2 or job == 6 then    -- Sura
                cmdchat("HABILIDADES RAZA|3")
            elseif job == 3 or job == 7 then    -- Chaman
                cmdchat("HABILIDADES RAZA|4")
            end
        end
        
        when button or info begin
            cmdchat("input1")
            local cmd = input(cmdchat("HABILIDADES GRUPO|"))
            cmdchat("input0")
            --syschat(cmd)
            local puntos = pc.level -1
            if cmd == "GRUPO1" then
                pc.set_skill_group(1)    -- Guerrero Corporal, Ninja Asesino, Sura Espejo, Chaman Dragon
                pc.clear_skill()
                syschat("¡Has elegido la doctrina de "..elegir_habis.getjobname(pc.get_job()).." "..elegir_habis.getskillgroupname(pc.get_skill_group())..", enhorabuena!")
                syschat("¡Recibes "..puntos.." puntos de habilidad!")
            elseif cmd == "GRUPO2" then
                pc.set_skill_group(2)    -- Guerrero Mental, Ninja Arquero, Sura Magia Negra, Chaman Curacion
                pc.clear_skill()
                syschat("¡Has elegido la doctrina de "..elegir_habis.getjobname(pc.get_job()).." "..elegir_habis.getskillgroupname(pc.get_skill_group())..", enhorabuena!")
                syschat("¡Recibes "..puntos.." puntos de habilidad!")
            else
                syschat("¡Error!")
            end
        end
    
    end
end

 

Esta es la quest.

Enlace para comentar
Compartir en otros sitios

  • 0
hace 3 horas, NazoX dijo:

Busca mi guía y hay pone el fix. 

0611 01:04:18977 :: Traceback (most recent call last):

0611 01:04:18977 ::   File "networkModule.py", line 246, in SetGamePhase

0611 01:04:18977 ::   File "system.py", line 130, in __pack_import

0611 01:04:18977 ::   File "
0611 01:04:18977 :: game.py
0611 01:04:18977 :: ", line 
0611 01:04:18977 :: 708
0611 01:04:18977 :: 

0611 01:04:18977 ::     
0611 01:04:18977 :: self.interface.OnBlockMode(mode)

0611 01:04:18977 ::     
0611 01:04:18977 ::  
0611 01:04:18977 ::  
0611 01:04:18977 ::  
0611 01:04:18977 :: ^

0611 01:04:18977 :: IndentationError
0611 01:04:18977 :: : 
0611 01:04:18977 :: expected an indented block
0611 01:04:18977 :: 

 esto es lo que pasa cuando intento hace rle fix, eh revisado los tbs y todo 

Enlace para comentar
Compartir en otros sitios

  • 0

lo pones 

hace 3 horas, jegarba dijo:

0611 01:04:18977 :: Traceback (most recent call last):

0611 01:04:18977 ::   File "networkModule.py", line 246, in SetGamePhase

0611 01:04:18977 ::   File "system.py", line 130, in __pack_import

0611 01:04:18977 ::   File "
0611 01:04:18977 :: game.py
0611 01:04:18977 :: ", line 
0611 01:04:18977 :: 708
0611 01:04:18977 :: 

0611 01:04:18977 ::     
0611 01:04:18977 :: self.interface.OnBlockMode(mode)

0611 01:04:18977 ::     
0611 01:04:18977 ::  
0611 01:04:18977 ::  
0611 01:04:18977 ::  
0611 01:04:18977 :: ^

0611 01:04:18977 :: IndentationError
0611 01:04:18977 :: : 
0611 01:04:18977 :: expected an indented block
0611 01:04:18977 :: 

 esto es lo que pasa cuando intento hace rle fix, eh revisado los tbs y todo 

Lo estás poniendo mal, falta tabs, o revisa que esté en el sitio correcto, a veces dependiendo del cliente tenemos 2 veces repetido una función, entonces quizás va en la otra, 

también revisa que no tengas ya el fix, si lo tienes, el problema es de la quest que está mal implementada

Enlace para comentar
Compartir en otros sitios

Unirse a la conversación

Puedes publicar ahora y registrarte más tarde. Si tienes una cuenta, regístrate para publicar con su cuenta.

Guest
Responder esta pregunta...

×   Has pegado contenido con formato .   Eliminar formato

  Only 75 emoji are allowed.

×   Tu enlace se ha incorporado automáticamente.   Mostrar un enlace en su lugar

×   Se ha restaurado el contenido anterior. .   Borrar editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recientemente navegando por este tema   0 miembros

    • No hay usuarios registrados visitando esta página.
×
×
  • Crear nuevo...