Jump to content

Promise

Members
  • Posts

    386
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Promise

  1. Hey guys, im working on a ragnarok full patcher & launcher and my question is... Is there any Java or C# library for grf updates? I mean... i need to learn how to update the grf with Java/C# software, like a patcher. Thanks in adv. Edit: I prefer C#
  2. Esa guía es demasiado antigua para lo que estás buscando, los emuladores se actualizan periódicamente y hay muchas funcionalidades que quedan obsoletas. Revisa esta guía a ver si te sirve.
  3. Hola, explícanos un poco donde es que está fallando, me dijiste que te daba error el intentar compilar con el vs 2010... ¿Intentaste compilarlo con la versión 2015 o 2017 el emulador? Si no me equivoco, las últimas versiones de rAthena vienen con soluciones que solo se permiten compilar en 2017. Ademas de errores de compilación, ¿Que es lo que te está fallando? Si tienes alguna otra duda respecto a la creación del servidor, aprovecha de escribirnos por este medio para poder ayudarte. ¿Que guía estás utilizando? Envíanos un link de la guia que estés utilizando para la creación del servidor. Además, en este foro hay una gran cantidad de ellas para que puedas entender todo desde cero. Saludos. PromiseE
  4. rAthena/conf/battle/misc.conf // Delay between using @duel in minutes duel_time_interval: 60
  5. Try to add this on your SQL: ALTER TABLE vendings ADD vend_coin VARCHAR(5) NOT NULL;
  6. Yes, you need to install a Ragnarok ControlPanel, or just connect a simple php file to update your database. FLUX CP https://github.com/rathena/FluxCP
  7. Que emulador estas tratando de compatibilizar? El cliente que estás tratando de utilizar, funcionará solo con emuladores nuevos, ya que ambos traerán las mismas configuraciones y funcionalidades. De ahí a poder adaptar el emulador viejo al cliente nuevo, es casi imposible diría yo, tendrías que meterte a cambiar todo el source y las configuraciones, que en resumen, será lo mismo que instalar un emulador nuevo.
  8. Have you written correctly the OnTouchNPC syntax?
  9. Yes, you can. You need to do a query to insert some values on the mail Database.
  10. Utiliza una versión actualizada de rAthena Utiliza un cliente de fecha 2015-10-01 o mayor Activa el modo renewal en tu servidor Revisa que tu emulador tenga las DB correspondientes a este job
  11. The first step on your post was "Purchase a good VPS / Dedicated Server"... So... why to purchase those things if he can make a localhost server? He should spent money first and then start thinking about the next step? Of course that he have no idea about rA, thats why i said that he should't buy anything if he can make a localhost server for free first...
  12. There are lots of guides here to build a Ragnarok server. Rule numer 1: Don't buy a vps or dedicated server if you don't have any idea about servers creation. First of all, you should mount a server. Yes, it could sounds obious, but my personal opinion is that there isn't better way to learn about rA that start coding and testing... More than read guides, etc. So, if you want to learn, mount a server and go to do some tests.
  13. That's the best way to do this, i'll explain a little better, but all credits to @Jey <3 switch(questlevel) { case 1: // in case that the variable questlevel = 1; mes "Your Quest"; break; case 2: mes "Your Quest"; break; case 3: mes "Your Quest"; break; default: mes "Woops! there's something wrong in the source script!"; // This line will excecute when the variable questlevel haves a different value. close; } If you want to add another one, just add another "case <value>:"
  14. You can just copy the item files, and add them as pre-renewal custom items. If you dont know how to add custom items, watch this guide. Btw... wich client date are you using?
  15. Ill leave the links here. https://github.com/ROClientSide/Translation https://github.com/zackdreaver/ROenglishRE About the setup problem, have you tried to open your exe as admin? The setup problem could be fixed by this way or downloading a good setup. You can try to download these tools
  16. Aww, never forget 2010 MSVS Thank you guys <3
  17. Are you getting any error on restarting the server?
  18. What's the name of the skill you want to modify?
  19. What would you like to fix on gypsys? o.o
  20. Execute into your main database schema (ragnarok) not logs, this file: FILE
  21. As Sikiro said, you must edit it on the npc. If you want to edit the item default price, you must go to the item_db and edit the sell column. For example: // Structure of Database: // ID,AegisName,Name,Type,Buy,Sell,Weight,ATK[:MATK],DEF,Range,Slots,Job,Class,Gender,Loc,wLV,eLV[:maxLevel],Refineable,View,{ Script },{ OnEquip_Script },{ OnUnequip_Script } 501,Red_Potion,Red Potion,0,50,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(45,65),0; },{},{} to 501,Red_Potion,Red Potion,0,1,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(45,65),0; },{},{} This means that every npc that sells apples on the server, will sell it for 50 -> 1z
  22. This repository isn't the original one, it is a hacked emulator, had lots of clients who have downloaded these emulators and they got hacked. My recomendation is to found someone who have the original repository and ask him for a virgin emulator.
  23. En el caso de tu job_exp table, solo tiene las experiencias requeridas para los niveles 1-100, es decir, tiene los valores de experiencia necesaria para subir de nivel solo hasta 99-100. ¿Estas ocupando un servidor configurado como pre-renewal? En este caso intenta reemplazando los siguientes archivos: trunk/db/pre-re/job_exp.txt Por: trunk/db/re/job_exp.txt Es decir, Copia la db que está dentro de la carpeta /re/ y pegala reemplazando la existente en la carpeta /pre-re/ No olvides respaldar previamente el archivo de la carpeta /pre-re/ por cualquier inconveniente.
  24. Check the data.INI file, yoy must have data.grf and rdata.grf on that file. Btw, have you hexed (hexadecimal) your ragnarok exe?
  25. If im not wrong, you cant do it. You must edit the sourche, and packets, and not sure if hexadecimal too.
×
×
  • Create New...