kokohryuha Posted May 15, 2021 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 3 Reputation: 0 Joined: 05/11/21 Last Seen: May 21, 2021 Share Posted May 15, 2021 Hola buenas, una consulta como puedo implementar el lappine ui? estoy usando el cliente 2019-06-05. Quote Link to comment Share on other sites More sharing options...
Mael Posted May 15, 2021 Group: Forum Moderator Topic Count: 25 Topics Per Day: 0.01 Content Count: 837 Reputation: 321 Joined: 02/11/19 Last Seen: 2 hours ago Share Posted May 15, 2021 https://github.com/rathena/rathena/pull/4348 1 Quote Link to comment Share on other sites More sharing options...
kokohryuha Posted May 15, 2021 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 3 Reputation: 0 Joined: 05/11/21 Last Seen: May 21, 2021 Author Share Posted May 15, 2021 6 hours ago, Mael said: https://github.com/rathena/rathena/pull/4348 gracias, pero una duda como puedo agregar esos comandos, ya puse los item_synthesis.yml, item_upgrade.yml en la db. Quote Link to comment Share on other sites More sharing options...
Mael Posted May 15, 2021 Group: Forum Moderator Topic Count: 25 Topics Per Day: 0.01 Content Count: 837 Reputation: 321 Joined: 02/11/19 Last Seen: 2 hours ago Share Posted May 15, 2021 1 hour ago, kokohryuha said: gracias, pero una duda como puedo agregar esos comandos, ya puse los item_synthesis.yml, item_upgrade.yml en la db. https://patch-diff.githubusercontent.com/raw/rathena/rathena/pull/4348.diff + es una línea que agregas. - es una línea que modificas o eliminas. Quote Link to comment Share on other sites More sharing options...
kokohryuha Posted May 15, 2021 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 3 Reputation: 0 Joined: 05/11/21 Last Seen: May 21, 2021 Author Share Posted May 15, 2021 42 minutes ago, Mael said: https://patch-diff.githubusercontent.com/raw/rathena/rathena/pull/4348.diff + es una línea que agregas. - es una línea que modificas o eliminas. perdón pero en que archivo agrego esos comando o creo uno nuevo desde 0 con toda esa información? y de ser así en que ruta del emulador debería ubicar esto? luego de eso debo compilar verdad? muchas gracias por responder Quote Link to comment Share on other sites More sharing options...
Ichisito Posted September 15, 2021 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 23 Reputation: 3 Joined: 07/19/12 Last Seen: December 14, 2022 Share Posted September 15, 2021 Buenos días, He intentado implementarlo tanto por Diff como ajustando a mano algunos ficheros que fallaron en el git apply y peta. Se ve que recientemente en los últimos cambios de rAthena la cadena: item_data *item = itemdb_search_aegisname(synthesis_item_name.c_str()); Ya no funciona, dado que la variable "itemdb_search_aegisname" ya no existe. Aún me sigo peleando para cambiar dicha cadena, sin ni idea de programación en C++, si alguien pudiera echar una mano, lo agradecería. Un cordial saludo 1 Quote Link to comment Share on other sites More sharing options...
Ichigo Posted October 20, 2021 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 99 Reputation: 11 Joined: 01/22/13 Last Seen: June 7, 2023 Share Posted October 20, 2021 On 5/15/2021 at 11:08 PM, Mael said: https://patch-diff.githubusercontent.com/raw/rathena/rathena/pull/4348.diff + es una línea que agregas. - es una línea que modificas o eliminas. Buenos días. Hay alguna forma de implementar el sistema lapine en el emulador actual? El que comentan esta obsoleto, ya no funciona con la versión actual de rAthena. Un saludo. Quote Link to comment Share on other sites More sharing options...
Mael Posted October 20, 2021 Group: Forum Moderator Topic Count: 25 Topics Per Day: 0.01 Content Count: 837 Reputation: 321 Joined: 02/11/19 Last Seen: 2 hours ago Share Posted October 20, 2021 37 minutes ago, Ichigo said: Buenos días. Hay alguna forma de implementar el sistema lapine en el emulador actual? El que comentan esta obsoleto, ya no funciona con la versión actual de rAthena. Un saludo. Usa el diff del github de Cydh. Quote Link to comment Share on other sites More sharing options...
Ichigo Posted October 25, 2021 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 99 Reputation: 11 Joined: 01/22/13 Last Seen: June 7, 2023 Share Posted October 25, 2021 On 10/20/2021 at 7:21 PM, Mael said: Usa el diff del github de Cydh. Ese diff esta desactualizado, no funciona con el emulador actual de rAthena. Quote Link to comment Share on other sites More sharing options...
Ichisito Posted October 25, 2021 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 23 Reputation: 3 Joined: 07/19/12 Last Seen: December 14, 2022 Share Posted October 25, 2021 Buenas, Si es el mismo Diff que creo que es, falla al compilar con la última versión de rAthena. Dando el siguiente error: Quote item_synthesis.cpp: In member function ‘virtual uint64 ItemSynthesisDatabase::parseBodyNode(const YAML::Node&)’: item_synthesis.cpp:35:20: error: ‘itemdb_search_aegisname’ was not declared in this scope item_data *item = itemdb_search_aegisname(synthesis_item_name.c_str()); ^~~~~~~~~~~~~~~~~~~~~~~ item_synthesis.cpp:35:20: note: suggested alternative: ‘mobdb_search_aegisname’ item_data *item = itemdb_search_aegisname(synthesis_item_name.c_str()); ^~~~~~~~~~~~~~~~~~~~~~~ mobdb_search_aegisname make[1]: *** [Makefile:84: obj/item_synthesis.o] Error 1 make[1]: Leaving directory '/root/rathena/trunk/src/map' make: *** [Makefile:50: map] Error 2 Si alguien tiene una versión más actual o que funcione con el actual emulador, será genial. Pero tengo pocas esperanzas. Un saludo Quote Link to comment Share on other sites More sharing options...
Mael Posted October 25, 2021 Group: Forum Moderator Topic Count: 25 Topics Per Day: 0.01 Content Count: 837 Reputation: 321 Joined: 02/11/19 Last Seen: 2 hours ago Share Posted October 25, 2021 44 minutes ago, Ichisito said: Buenas, Si es el mismo Diff que creo que es, falla al compilar con la última versión de rAthena. Dando el siguiente error: Si alguien tiene una versión más actual o que funcione con el actual emulador, será genial. Pero tengo pocas esperanzas. Un saludo std::shared_ptr<item_data> source_it = std::shared_ptr<item_data> source_it = item_db.search_aegisname(source_item_name.c_str()); std::shared_ptr<item_data> target_item = item_db.search_aegisname(target_item_name.c_str()); 1 Quote Link to comment Share on other sites More sharing options...
Ichisito Posted October 25, 2021 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 23 Reputation: 3 Joined: 07/19/12 Last Seen: December 14, 2022 Share Posted October 25, 2021 Buenas tardes, Disculpa la ineptitud, ¿Dónde exactamente debo setear dicha cadena? Entiendo que en el item_synthesis.cpp, pero ¿en que parte? Un cordial saludo y gracias 1 Quote Link to comment Share on other sites More sharing options...
Ichigo Posted November 10, 2021 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 99 Reputation: 11 Joined: 01/22/13 Last Seen: June 7, 2023 Share Posted November 10, 2021 On 10/25/2021 at 3:10 PM, Mael said: std::shared_ptr<item_data> source_it = std::shared_ptr<item_data> source_it = item_db.search_aegisname(source_item_name.c_str()); std::shared_ptr<item_data> target_item = item_db.search_aegisname(target_item_name.c_str()); Hola. ¿Puedes ayudarnos a terminar de implementar dicho sistema? No damos con la solución. Gracias. Quote Link to comment Share on other sites More sharing options...
Akbare Posted November 11, 2021 Group: Members Topic Count: 31 Topics Per Day: 0.01 Content Count: 491 Reputation: 20 Joined: 11/19/11 Last Seen: June 5, 2023 Share Posted November 11, 2021 (edited) Se ha ajustado la actualización de la función lapine en github Edited November 11, 2021 by Akbare 1 Quote Link to comment Share on other sites More sharing options...
Ichigo Posted November 16, 2021 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 99 Reputation: 11 Joined: 01/22/13 Last Seen: June 7, 2023 Share Posted November 16, 2021 On 11/11/2021 at 9:17 AM, Akbare said: Se ha ajustado la actualización de la función lapine en github Ya funciona en la rama principal de rAthena? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.