Jump to content

Gladius

Members
  • Posts

    235
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by Gladius

  1. // When pet leveling is enabled, these are the imposed caps on // min/max damage. Note that these only cap atk1 and atk2, if you // enable pet_str, their max damage is then their base_atk + pet_max_atk2 pet_max_atk1: 500 pet_max_atk2: 1000 conf/battle/pet.conf
  2. Si instaló el diff de los costume itens, es probable que esté usando la V2, que tiene un erro, ignora todos los efectos de los costume itens. Este error ocurrió cuando intentaron corregir el sistema de conversión de costume itens. Después de la conversión, el equipo mantuvo los atributos, e incluso hizo combos. Intentaron corregir poniendo a cero los efectos de los costume itens, la mayoría causando problemas en los shadow armors y hateffect. No conozco ninguna corrección de este sistema, le aconsejo que lo elimine.
  3. Loc: https://github.com/rathena/rathena/blob/master/conf/battle/status.conf#L30-L32 // Maximum resistance to status changes. (100 = 100%) // NOTE: Cards and equipment can go over this limit, so it only applies to natural resist. pc_max_status_def: 100 mob_max_status_def: 100 or in src/map/battle.cpp { "pc_max_status_def", &battle_config.pc_max_sc_def, 100, 0, INT_MAX, }, It may solve your problem.
  4. The BR community has a video teaching how to put the emblem on a 2020 client. The description of this video has the necessary resources.
  5. Be careful when requesting support en in international forums of rAthena ... Always use the support area pt-br: https://rathena.org/board/forum/157-suporte-geral/ Although you have translated, moderation is not always tolerant.
  6. use mvp_room.txt I got the code wrong, I'm sorry. removemapflag "06guild_01", mf_noskill;
  7. What is the point of using the command manually? henever the server goes down, or it reloads it will have to go on 8 maps using the command lol Forcing skillon on oninit is the best, most practical and smart alternative. What you said is an amateur solution, which has no knowledge. ?
  8. There is no such lock on this file. https://github.com/rathena/rathena/blob/master/npc/mapflag/noskill.txt It is better to force the skillon activation on the map, since we do not know where the mapflag is being active. Example below: (Remove ++ before adding it to your script, it is just a reference.) OnInit: ++skillon "06guild_01"; ++skillon "06guild_02"; ++skillon "06guild_03"; ++skillon "06guild_04"; ++skillon "06guild_05"; ++skillon "06guild_06"; ++skillon "06guild_07"; ++skillon "06guild_08"; .color$[1] = "^EE8800"; // party color .color$[2] = "^70CC11"; // guild color .color$[3] = "^0000FF"; // account color waitingroom "Sala MVP",0; end; }
  9. I used this script to summon champion monsters on my server. Exemple_Champiom_Monstros.txt After defeating 100x monster X, he summons monster Y.
  10. The change will only be applied after restarting the server. I told you lol "ut it is necessary to restart the emulator to update the information in real time."
  11. Recuerdo que esta función se eliminó porque era posible duplicar itens con ella. Recomiendo no activarlo.
  12. Run on your SQL database: UPDATE `char` set `fame` = 0; It will reset the "fame" column. ut it is necessary to restart the emulator to update the information in real time.
  13. Comece explorando: \data\luafiles514\lua files\worldviewdata\ Recomendo usar a data do bRO para extrair os arquivos ja traduzidos ?
  14. See https://github.com/rathena/rathena/blob/master/sql-files/main.sql#L1053 Contact with him is very difficult, he only responds when the user wants to buy something. I recommend you to develop your system in an alternative way, without depending on it. As I suggested, make the system using the server database...
  15. You can develop the system from the "vending_items" SQL table. I don't know if this is what you want to create, but it is an idea. Better to ask @Functor directly. It must be possible through a whitelist, but I believe that there is no such thing developed.
  16. You made a mistake adding the item in accessoryid.lub & accname.lub it is also necessary to use the correct viewid (configured in accessoryid.lub) for the item's sprite to appear equipped on your character.
  17. Name censorship can be removed at: \conf\battle\items.conf // Hide n last characters of player's name with asterisk (*) when the player // obtained an item with special broadcast flag. // Note: Players with short names can be fully converted to asterisks if this // config value is set high. broadcast_hide_name: 0 If you just want to change the text structure, do what the @botka4aet suggested ?
  18. Suggestion: https://secretdataz.github.io/attendance-generator/ This site is great for generating system settings.
  19. Es ist wahrscheinlich ein Paketfehler, ich kann Ihnen helfen ... Die Lösung für dieses Problem lautet wie folgt: Öffnen Sie Ihre clif.cpp unter: /src/map und suchen Sie nach: void clif_deleteskill(struct map_session_data *sd, int skill_id) Und kommentiere (benutze //) den Befehl: clif_skillinfoblock(sd); Nachdem Sie die Änderung vorgenommen und Ihren Emulator neu kompiliert haben.
  20. Vá em: \src\config\renewal.hpp Altere: //quick option to disable all renewal option, used by ./configure #define PRERE #ifndef PRERE para //quick option to disable all renewal option, used by ./configure //#define PRERE #ifndef PRERE Recompile seu emulador. Para alterar a Shion vá em: \npc\re\jobs\novice\novice.txt Caso você use RE o npc do campo de treinamento fica em outro lugar: \npc\pre-re\jobs\novice\novice.txt
  21. Move items from your inventory to your cart (alt + w) ? When you use skill, the available items will appear to be sold...
×
×
  • Create New...