jaBote
Community Contributors-
Content Count
2037 -
Joined
-
Last visited
-
Days Won
43
Content Type
Profiles
Forums
Downloads
Staff Applications
Calendar
Everything posted by jaBote
-
Check if you have a patch called somewhat like "enable DNS support". That one is supposed to let you use a domain name instead of a server IP.
-
Whops. Sorry, when I hovered the mouse over the link I thought it was for another topic on the boards and no tracker entry was made. Sorry for the misunderstanding.
-
If this is a bug present on an official, unmodified Hercules version, please don't hesitate to post it as such on our Bug Tracker so that devs can get to it more quickly.
-
Give your friend the same client date as in mmo.h and try again. If not solved, try setting both login_ip on your character.conf and char_ip on your map to your public IP too. All of this, just assuming your friend's clientinfo.xml has your public IP in.
-
To me, it seems you're having a case error with the command. Script commands created this way are case sensitive, so if you bind "TESTB" you can't make use of the atcommand "@testb", you should use "@TESTB" instead. That command failed message appears on script init and on that day since there's no player to give "unknown command" messages. P.S.: Anyways, if you managed to run that broadcast via automated ways (Init and Monday0001), on the cases the announce would launch, there'd be no player attached to the script, thus no "self" to whom launch the bc_self.
-
Chances are it won't work on rAthena since our instancing system is differently built.
-
Check the cutin script command on doc/script_commands.txt. Sorry for short answer, I'm on cellphone.
-
[Request] 2013-xx-xx text data files [Renewal]
jaBote replied to roxasodale91's question in Client-Side Requests
Last client with idnum2whatevertable and so on was 2012-04-10. Newer ones use iteminfo.lua -
Eso es imposible. El código del emulador está hecho para sustraer un úico punto de skill por cada nivel de skill que se sube, el código es común para todas las skills de todos los jobs. ¿Será que quizá no tenías los prerequisitos bien seleccionados y que sin querer se te ha añadido una skill de 1st job u otra cosa? También he visto clientes mal hechos que te exigen coger un nivel incorrecto de otra habilidad, que acaba tomando puntos extra de skill. Prueba de nuevo, aunque dudo muchísimo que el problema sea de servidor. Un saludo.
-
As far as I know, current mob db entries are interchangeable between rAthena and Hercules. And most rAthena scripts work on Hercules, but sadly you'll have to manually convert them or ask for help on the conversion here.
-
could you show us your map-server.conf and char-server.conf? map_ip, char_ip and login_ip should be set to your external IP.
-
You can try out this Item DB converter by our developer : http://haru.ws/hercules/itemdbconverter/ I tried converting your item_db2.txt and there seems to be no problem with it except for the non-english characters, which you can recover back in a quick revision. I've told Haru about that.
-
That's not on Hercules. And right now, conforming by official sources (AFAIK), they aren't needed at all.
-
Unable to find it after a quick search on the source. Could you please tell me where is it?
-
Não precisa digitar nenhum comando, só mandar pm com qualquer coisa para o npc, pois ele não compara o valor da whisper com nada. Ok , mais qual é o nome do NPC que tenho que mandar o pm ? Somente use npc: e o npc nome. Neste caso só mande pm para npc:vip.
-
No detecto ningún problema en tu configuración aunque es posible que hayas pasado por alto la modificación de drops por Renewal, que (aunque no se refleje en bases de datos como RateMyServer) modifica el drop definitivo del mob, dependiendo de la diferencia de niveles entre tu PJ y el mob. Puedes editar eso a través de src/config/renewal.h, línea 41 si tienes activado Renewal. Simplemente comenta esa línea (coloca // al inicio) si tienes interés en desactivarlo. En esta tabla tienes la relación entre el rango de diferencias (de tu nivel y el del mob) y el modificador de drop del monstruo. Coméntame si el problema no es ese, aunque de momento parece que no puedo encontrar nada más.
-
Could you kindly make us a rough translation of it for us? We can't understand Chinese. And GTranslate isn't of much help:
-
Account name? Then it's like this: query_sql("SELECT `userid` FROM `login` WHERE `account_id` = " + getcharid(3)),.@userid$;
-
I don't get you. You want to get username AND userID from the database, given you've got just the account ID, without making use of the commands you're given to get them directly? If not, please elaborate. P.S.: looks like you want to reinvent the wheel xD
-
If you want to retrieve the name of the current character via SQL, then this is what you should do: query_sql("SELECT `name` FROM `char` WHERE `account_id` = " + getcharid(3) + " AND `online` = 1",.@name$); Missing the online condition will lead you to retrieve all characters for that account instead of just the character's name. But you could use getcharid(0) (retrieves user's char ID) and use next SQL query: query_sql("SELECT `name` FROM `char` WHERE `char_id` = " + getcharid(0),.@name$); Which will guarantee you'll get your username from the SQL table.
-
getcharid(3) returns Account ID of the user (source doc). Maybe you meant strcharinfo(0), which returns current character's name (source doc). You could do something like this on your SQL: .@name$ = strcharinfo(0);.@sql$ = "INSERT INTO `my_table` VALUES ('" + .@name$ + "')";query_sql(.@sql$); Or, all in one sentence: query_sql("INSERT INTO `my_table` VALUES ('" + strcharinfo(0) + "')");
-
Olá! Voçe pode usar o cliente fornecido pelo @ossi0110 neste tópico: http://herc.ws/board/topic/3768-2013-12-23-full-client-download/ Contém a data completa, 1 yourRO hexed já diffado e ferramentas para facer seu cliente (Full client) ou somente o yourRO diffado e os arquivos necessários para o funcionamiento (Small client). http://hercules.endlessro.net/
-
get the CLASS name of killerrid OnPCDieEvent
jaBote replied to Hadeszeus's question in Script Support
Or maybe: attachrid(killerrid); .@classname$ = jobname(Class); roclass and eaclass cancel each other, and the variable Class should start with uppercase as of scripting commands guide. @Topic Starter: Sources: jobname() script command documentation; character-based variable Class -
Seems right. Do your servers interconnect well, are you getting errors? Could I also give a glance to your client side clientinfo.xml so that I can check login ports are the same in there and in the char-server.conf?
-
Error mob renewal
jaBote replied to darknis's question in Soporte y peticiones sobre Scripts/Bases de Datos
Hola. Que recuerde algunos de esos mobs estaban de momento en pruebas (obtención de datos oficiales y demás). Puedes ver que a partir de Eclage los mobs no están todos terminados de implementar en la mob_db renewal de Hercules (db/re/mob_db.txt, enlace directo a Nightmare Pyramids), aunque puedes coger los de rAthena (en el mismo directorio de su repositorio db/re/mob_db.txt) y utilizarlos en Hercules directamente sin ningún tipo problema. De hecho, hablaré con los desarrolladores de scripts y bases de datos de Hercules para que actualicen nuestras dbs si no con los oficiales, con al menos los mismos datos que rAthena. Un saludo.