Jump to content

valesti

Members
  • Posts

    43
  • Joined

  • Last visited

Everything posted by valesti

  1. If the error still persist, probably you changed the wrong file. The file name needs to match to the clientinfo.xml servicetype. Example: <servicetype>korea</servicetype> <servertype>sakray</servertype> So, my file name will be: ExternalSettings_kr_sak ExternalSettings_kr_sak.lub
  2. Technically possible, but boring. In the database you will find a table called picklog with the date and time of obtaining that item. There will be described the type if it was dropped by monster, NPC, or by some command. Filter exploit dates and times, and the type of (monster, npc, command). Get account ids and delete the items in table inventory, cart_inventory, storage, guild_storage. It won't be 100% accurate, but it will give you a north to adjust. Sorry for my English. I hope you understand.
  3. src/config/renewal.hpp Alterar: //#define PRERE Para: #define PRERE Recompile o emulador para que as mudanças surtam efeito. Você não precisará importar nenhuma configuração diferente no seu banco de dados (deve importar apenas o main.sql/logs.sql, que acredito que você já tenha feito anteriormente). Depois da mudança, o emulador sempre puxará as configurações dentro das pastas com a sigla pre-re. Exemplo: Quero alterar a quantidade de vida do mob SCORPION. Então eu sigo o diretório: db/PRE-RE/mob_db.YML Para a mudança surtir efeito é só digitar @reloadmobdb com a sua conta de GM dentro do jogo.
  4. Não precisa alterar o IP em lugar nenhum, apenas o sclientinfo do client. Deixe tudo configurado conforme padrão do rAthena. A partir do momento que você utiliza o RADMIN, todos que estão conectados na sua rede são considerados localhost, então o IP 127.0.0.1 vai servir.
  5. The client is trying to connect with the rAthena webserv and is not succeeding, and this error is caused by that. I asked a question a few days ago about it, and got the answer. See my topic.
  6. Doesn't works. There is my configs: Url = { TwitterUrl = "http://127.0.0.1:8888" } AccountLinkedUserDataUrl = { Save = "http://127.0.0.1:8888/userconfig/save", Load = "http://127.0.0.1:8888/userconfig/load" } TwitterDataUrl = { Auth = "http://127.0.0.1:8888/twitter/user-auth", Upload = "http://127.0.0.1:8888/twitter/upload" } EmblemDataUrl = { Upload = "http://127.0.0.1:8888/emblem/upload", Download = "http://127.0.0.1:8888/emblem/download" } Is like my client is not reading this files to allow the emblem change.
  7. I have a little problem with the client 2021-11-03. When i try to set a emblem guild, my webserv doesn't show any try request Curently my ExternalSettings is: Url = { TwitterUrl = "http://0.0.0.0:3000" } AccountLinkedUserDataUrl = { Save = "http://127.0.0.1:8888/userconfig/save", Load = "http://127.0.0.1:8888/userconfig/load" } TwitterDataUrl = { Auth = "http://127.0.0.1:8888/twitter/user-auth", Upload = "http://127.0.0.1:8888/twitter/upload" } EmblemDataUrl = { Upload = "http://127.0.0.1.110:8888/emblem/upload", Download = "http://127.0.0.1:8888/emblem/download" } If i put the link in my browser, show a request try [Info]: 127.0.0.1 [GET /emblem/download] 404 But if i try to change the emblem in game doesn't show anything. When i enter in my char, this message apears: "There was an error when loading the data account settings. (Please restart to retry.) I think is because of this error. Someone can help me?
  8. Everything is perfect. Just keep going! I hope test all the features soon.
  9. Hi everyone. How can i change the new song effects to the old effect? I already search in forum a answer to this, but i dont finded. Thx. NEW: OLD:
  10. Boa tarde, Tassadar. Existe o comando @slave. Ele não atende as suas necessidades?
  11. Hi, Dev! Can you try read the doc: https://github.com/rathena/rathena/blob/master/doc/script_commands.txt#L3661
  12. https://rathena.org/board/topic/111269-guide-lightweight-compiler-for-windows-for-replacement-heavy-visual-studio-ide-compile-rathena-faster-save-your-bandwidth-and-disk-space/
  13. Just update your msgstringtable.txt That's worked to me.
  14. If i remove the query_sql in "PutClothes", the color always be 0. But thanks, man. You're helping me a lot.
  15. Yes! { callfunc "SaveClothes"; },{ callfunc "PutClothes"; } And i finded another problem... If the player left the game using the equip, when he login the color is 0 again.
  16. function script SaveClothes { // Save Clothes Color .@charid = getcharid(0); query_sql( "SELECT `clothes_color` FROM `char` WHERE `char_id` = '"+.@charid+"'",.@clothesc ); setlook 7,0; setlook LOOK_BODY2,1; } function script PutClothes { // Put Clothes .@charid = getcharid(0); query_sql( "SELECT `clothes_color` FROM `char` WHERE `char_id` = '"+.@charid+"'",.@clothesc ); setlook LOOK_BODY2,0; setlook LOOK_CLOTHES_COLOR,.@clothesc; } @sader1992 The function is called when the player equips/removes the item. SaveClothes = Player equips the item. PutClothes = Player removes the item. Here the stylist: https://pastebin.com/f2iqCcR6
  17. The only problem is: if the player changes the color, the variable dont update with the new number. Just after login another time. Example: Can i update the variable in game? Thanks for your help!
  18. Anyone know how do that? I wanna to use in a system. Example: PS: If player use the color 211, when the event ends, return the palette to 211. Thanks all!
  19. Yes. As i said: i use 2017 client, so, this files are essencial. @Edit: After hours changing files, i found the answer. Thx, @sader1992 for the light.
  20. Well, first of all, congratulations for excelent job in introduce the Achievement System. My problem appears in image. The bar from achievent is just black without title. Client Version: 2017-01-25 Others tests: 2015-11-04 2016-02-03 Missing files or something? Waiting for answers.
×
×
  • Create New...