KirieZ
Core Developers-
Content Count
234 -
Joined
-
Last visited
-
Days Won
23
Content Type
Profiles
Forums
Downloads
Staff Applications
Calendar
Everything posted by KirieZ
-
Que erro você está tendo?
-
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.
-
se você está se referindo ao campo "<version>" do clientinfo.xml, até onde sei o Hercules não usa esse valor, imagino que não tenha uma configuração para isso
-
Looks like a packet problem, open an issue on herc github explaining it @4144
-
Looks like a client issue (packets maybe). Can you try a newer client (2015 if possible)? if it works in a newer client, open an Issue on github
-
Problem with Compilation using Visual Studio 2017
KirieZ replied to midaswhisper's question in General Server Support
Looks like you're using an old hercules, this is an old issue and is fixed already : https://github.com/HerculesWS/Hercules/pull/1992/files Try updating to a newer version -
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.
-
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
-
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
-
Essas partes mesmo, você pode tirar a parte do theme (apagar mesmo) e no module vc troca $params->get('gender') para 'M', assim ele não vai tentar recuperar essa informação do form.
-
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
-
Version 1.1.0
114 downloads
Hello everybody, I was trying some plugins a couple days ago and was bored of creating VS Projects by hand for each plugin, so I made this simple tool. You just have to set where's your Hercules is, the VS version you want to create projects for and where it should create on. The list of files in your src/plugins folder will be shown so you can choose which plugins you want to create VS Projects for. Also, it saves your settings so you don't have to fill these inputs everytime. It requires .NET Framework 2.0 or newer and probably will run only on Windows (I think there's no need for other OSes, right? xD) If you find any issues with it, let me know and I will try to fix it. -
use o NEMO para modificá-los
-
ratemyserver sort of database for my server
KirieZ replied to banhelba2019's topic in General Discussion
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. -
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$;
-
What he meant is that you didn't show login server messages output run 3 servers = run login-server ,char-server and map-server, each server in a different window
-
It's weird that your characters start in a smaller ID, but if you doesn't have Rodex button in your client, you can disable what's causing this error by commenting this line on pc.c intif->rodex_checkhasnew(sd);
-
Sim, em todos os close, porque todos eles encerram a execução do script, como o @Kurare explicou.
-
Não consegui ler muito o script porque estou no celular, mas você deve colocar ou antes do close ou entre close2 e end. Sobre o specialeffect2, veja se este post ajuda: espero ter ajudado
-
Se me lembro bem o Hercules não deixa ser executado em um usuário com privilégio root, por não ser necessário. Você precisa criar um novo usuário, tente seguir os passos desse tutorial, na parte "create a new linux user": https://habilisbest.com/rathena-setting-up-ragnarok-online-private-server .
-
2014-10-22 Issues with latest version of Hercules
KirieZ replied to THPO's question in Client-Side Support
Should be fixed with last commit (a couple hours ago) Edit: At least part of it, I didn't notice other problems -
Noob Sanity Check - Why isn't my simple script working?
KirieZ replied to Hamburglin's question in Script Support
I don't think there're options specific to items, classes and npcs, not that I know at least, you would have to change the scripts/items folders. As for classes, what limits a player from getting them are npcs, so you can just disable the job change quests. (in npc folder) -
Noob Sanity Check - Why isn't my simple script working?
KirieZ replied to Hamburglin's question in Script Support
I didn't understand your question changing that line that I pointed in the other post will disable all renewal mechanics/items/monsters/npcs, 3rd classes will be only acessible through @job command. -
Noob Sanity Check - Why isn't my simple script working?
KirieZ replied to Hamburglin's question in Script Support
These sql files are kept to be used by control panels (like FluxCP). 1) Are you using the Github's wiki or the old one? You can check there: http://herc.ws/wiki/Main_Page ; Also you can find a lot of documentation in hercules' docs folder. Other than that probably around the forums or asking a new question. 2) To make your server pre-renewal you have to change the following line in src/config/renewal.h and recompile: Find: //#define DISABLE_RENEWAL Change to: #define DISABLE_RENEWAL Once you recompile your server will be running in pre-renewal mode