Jump to content

Chaos92

Members
  • Posts

    1826
  • Joined

  • Last visited

  • Days Won

    58

Everything posted by Chaos92

  1. Try check your import folder. Maybe you have the configuration set no or something there because import folder will be read first.
  2. The owner is @Functor so you can PM him here or Skype him.
  3. then use the correct lua files. Im suggesting you using this : https://github.com/llchrisll/ROenglishRE Please read the instruction and Wiki in that github.
  4. its using refineUI now in latest rathena git. db/re/refine.yml or db/pre-re/refine.yml
  5. Do you have any customization items or accounts that can equip any items? For example, a Priest equip bow or Mjolnir or Balmung. It might produce error. If yes, dont enable accounts that can equip all items and unequip them.
  6. so why not give full script then ? Because i dont understand the question, you're giving script A and script B which is different. U said script B activated worldwide, so insert checking for map should solve it. I answering this question though
  7. hmm.. let me copy paste but i didnt tried it yet. - script Mastering -1,{ OnInit: set .bspawn,0; //Where the kills will be saved(don't change) set .bneed,4; //Kills needed set .bossid,1090; //Boss ID set .minibossid,1002; //Mini Boss ID set .reward,512; //Reward for killing the Boss set .map$,"prontera"; //Name of the map you kill mini bosses end; OnNPCKillEvent: if (mobcount(.map$, strnpcinfo(0)+"::OnBossKill")) end; if (killedrid == .minibossid) && (strcharinfo(3) == "prontera") { set .bspawn,.bspawn +1; if (.bspawn >= .bneed){ mapannounce .map$,"The map boss has appeared!",0; monster "prontera", 156, 180, "Mastering", .bossid, 1, strnpcinfo(0) + "::OnBossKill"; //monster .map$,0,0,0,0,"Mastering",.bossid,1,"BOSSSPAWN::OnBossKill"; set .bspawn, 0; } } end; OnBossKill: mapannounce .map$, "The player "+strcharinfo(0)+" has killed the boss!", bc_map; //mapannounce .map$,"The map boss has appearedasdasd!",0, getitem (.reward,1); end; }
  8. You need to add some checks. if (killedrid == .minibossid) && (strcharinfo(3) == "pay_dun00") Btw I didnt tried it yet.
  9. .SecondExpanded = false; // Enable new expanded second classes: Ex. Super Novice, Kagerou/Oboro, Rebellion? This one ? this is second expanded, means kagerou/oboro, rebellion as stated at the comment. Remove all the job that you didnt want in the job case. Example Job_Gunslinger, Job_Ninja, and others. everytime im removing it it cause errors
  10. show what is your tcg script or your npc that exchange tcg script. The script might be wrong.
  11. Do you mean max it can reach is +10 ? or if +4 use, can become +14 ? if (getequiprefinerycnt(.@part) == 10) { mes "[Refine Master]"; mes "This ^006400"+getequipname(.@part)+"^8B4513 is PERFECT, no need to refine it anymore~"; close; } for(set .@i,1; .@i<=10; set .@i,.@i+1)
  12. i think thats because of your script checking cash are not correct. what npc or feature are you using ? I think you didnt use Cash Shop button feature, but use your own npc script to trade cashpoints item.
  13. I dont know either you didnt copy it completely, or what since the error KoE::OnCommand are not even in the script. Or maybe that error are from another script that you still load the npc ?
  14. damage of what ? if damage of skill, use db/skill_damage_db.txt https://github.com/rathena/rathena/blob/0b8d80ba63afa5484c606466987107dc4e5b0b0e/db/skill_damage_db.txt
  15. #define RENEWAL Disable this for pre-renewal setting. Thats why. You're still in renewal. If you really wanna use pre-renewal, then disable all the #define RENEWAL in list
  16. 1. add // 2. restart server. Make sure all login, char and map server successfully restarted. This is the important part because its possible to have double map-server (just in case) in active process. 3. go to map and recheck again.
  17. I think what hes wanna ask is about the mob count so that they know how much they need to kill again to summon the 'boss'.
  18. The best way, download again latest rathena : https://github.com/rathena/rathena
  19. I saw the Pull Request for it. Maybe will merged in master later or you can pull it. https://github.com/rathena/rathena/pull/5839
  20. default file rathena wont have that issue. And we didnt know what setup that has you done (i assume its not default latest rathena file). try to install the latest rathena and check it again. https://github.com/rathena/rathena
  21. conf/battle/homunc.conf // The rate a homunculus will get friendly by feeding it. (Note 2) homunculus_friendly_rate: 100 // Can you name a homunculus more then once? (Note 1) hom_rename: no // Minimum intimacy to evo the homunculus homunculus_evo_intimacy_need: 91100 // Reset intimacy after evolution to: homunculus_evo_intimacy_reset: 1000 // Intimacy needed to use Evolved Vanilmirth's Bio Explosion hvan_explosion_intimate: 45000 Increate the friendly rate
  22. its different. because 2020 client support http server for it, not same with older client.
  23. use NPC, requirement to redeem base level 50 or more. and use getitem for anything item that u want in the box.
  24. use older client , such as 20180620 or older. or else use the PR https://github.com/rathena/rathena/pull/5731 for 2020 and latest
×
×
  • Create New...