Jump to content

KirieZ

Core Developers
  • Content Count

    211
  • Joined

  • Last visited

  • Days Won

    17

Posts posted by KirieZ


  1. Então o problema não está no seu version, o hercules não verificava esse version antigamente. Aparece algum erro em qualquer um dos servidores quando você tenta logar?

    Edit:

    Qual a data do seu cliente e do seu emulador?


  2. Se você trocar o check_client_version para false, você consegue se conectar normalmente?

    - Se sim, você colocou o mesmo valor no seu <version> do clientinfo.xml E no client_version_to_connect ? Eles devem ser iguais.

    - Se não, o maps-server acusa algum erro/warning quando você tenta conectar?


  3. Não sei se ainda está com problema, olhando os arquivos acho que encontrei o que pode ser:

    conf/login/login-server.conf:

            // Check The clientversion set in the clientinfo ?
            check_client_version: false

            // What version we would allow to connect? (if check_client_version is enabled)
            client_version_to_connect: 20
     

    Se por acaso check_client_version estiver true, acredito que você possa escolher a versão no client_version_to_connect e colocar o mesmo que está no seu clientinfo. Nunca usei esta funcionalidade então não tenho certeza.


  4. I think it depends on the theme. Was the theme developed by you? If yes, it'll probably be easier as you know where everything is coded. The general layout in flux is set pretty much in 2 or 3 files, so it's not that hard to make the overall layout. Details (e.g. buttons) might be a trickier.


  5. I don't think there's a tutorial for that.

    You "can", but you'll have to manually convert it. Responsiveness of a website is basically using html/css to style a page in a way it fits correctly in different devices. So you can create a new flux theme and manually port your layout to flux. I don't recall any tutorials on creating themes for flux, but a start point would be to duplicate flux's default theme (iirc, flux-folder/themes/default) into a new theme and start changing its layout from there.

    Sorry for the vague answer, I hope it can give you some directions


  6. 8 hours ago, Kian said:

    A parte do theme funcionou.Mais a do module não.Ficaria assim:$params->get('M')?Porque fica dando essa mensagem na hora de registrar: Sexo deve ser "M" ou "F"

    Ficaria:

    $gender  = 'M';

     

    $params->get('xxx') é uma função que diz "retorne o valor do parametro chamado 'xxx' que veio do formulário". nesse caso você não quer que essa informação venha do formulário


  7. Acredito que não tenha uma opção pronta para isso, você precisa alterar o module/theme para definir o gênero sozinho (pode ser M para todos, pois não irá importar para os clientes novos) e não pedir para o usuário. Se me lembro bem os arquivos são:

    module/account/create

    themes/<seu tema>/account/create


  8. FluxCP has a monster and item database by default. You can also make your own database using item_db.sql, mob_db.sql and mob_skill_db.sql files in sql-files folder (that is also used by fluxcp). For other kinds of databases you probably need to make it by yourself, maybe creating something to export db folder to sql or something like that.


  9. Acredito que não tenha um comando para o nome de usuário da conta, mas você pode fazer com uma query sql a partir do ID da conta.

    Algo como (não testei):

    query_sql("SELECT userid FROM login WHERE account_id = " + getcharid(CHAR_ID_ACCOUNT) + " LIMIT 0,1", .@logins$);
    .@login$ = .@logins$[0];
    mes "Seu usuário é: " + .@login$;

     


  10. 3 hours ago, ADM Coxinha said:

    Obrigado, consegui resolver o specialeffect2.

    Mas o cutin ainda não consegui... tenho que colocar em TODOS os close ? pq no npc de jobmaster tem diversos close quando a pessoa não tem nivel, job superior, etc.

    Sim, em todos os close, porque todos eles encerram a execução do script, como o @Kurare explicou.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.