Jump to content
The forums will be going offline for an extended maintenance period at 1400hrs GMT on 19th June 2025. The number of hours for this downtime is intentionally not advertised due to the nature of these upgrades. ×

Chaos92

Members
  • Posts

    1859
  • Joined

  • Last visited

  • Days Won

    62

Everything posted by Chaos92

  1. You can try download iz_ac.rar from the post attached above, then extract it and insert it in your server GRF inside data folder.
  2. Try to check your accessoryid or accname (if the client diffed = same for both server). Most probably the main issue is there (the item are not in list) if the viewid in itemdb yml is correct.
  3. Hello, I suggest you use this english client translation. Or just get the map files and replace yours with this. https://github.com/llchrisll/ROenglishRE Make sure you read the wiki and instruction.
  4. Its actually just a warning. Btw you can use the new constant as stated there since your custom script which you added are using that deprecated constant. https://github.com/rathena/rathena/blob/55ca79961da77d1ba6c244393de0101709e7bc0d/tools/convert_emotions.py Example, change 'E_SRY' to 'ET_SORRY'.
  5. As I said its in db/re/refine.yml or db/pre-re/refine.yml - Group: Armor Levels: - Level: 1 RefineLevels: - Level: 1 Bonus: 100 Chances: - Type: Normal Rate: 10000 Price: 2000 Material: Elunium - Type: HD Rate: 10000 Price: 20000 Material: HD_Elunium - Type: Enriched Rate: 10000 Price: 2000 Material: Enriched_Elunium Go check the price for all the list in that yml.
  6. Do you mean instances for pre-renewal that rathena has ? Have you check in npc/instances/ folder ?
  7. Try to get default clean rathena job_exp.txt in db/pre-re or db/re and make sure your conf/exp.conf // Turn this on to allow a player to level up more than once from a kill. (Note 1) multi_level_up: yes
  8. Try check your import folder. Maybe you have the configuration set no or something there because import folder will be read first.
  9. The owner is @Functor so you can PM him here or Skype him.
  10. 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.
  11. its using refineUI now in latest rathena git. db/re/refine.yml or db/pre-re/refine.yml
  12. 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.
  13. 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
  14. 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; }
  15. You need to add some checks. if (killedrid == .minibossid) && (strcharinfo(3) == "pay_dun00") Btw I didnt tried it yet.
  16. .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
  17. show what is your tcg script or your npc that exchange tcg script. The script might be wrong.
  18. 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)
  19. 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.
  20. 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 ?
  21. 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
  22. #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
×
×
  • Create New...