Jump to content

Radian

Members
  • Posts

    1,542
  • Joined

  • Last visited

  • Days Won

    19

Everything posted by Radian

  1. Questions: 1. Did you recompile your files, after adding the diff? 2. Did you added the command @spb/partybuff into the specific group level?
  2. Yeah since it was converted into YML you can now edit the item you want in https://github.com/rathena/rathena/blob/master/db/pre-re/item_db_equip.yml#L69
  3. I think you can see that in https://raw.githubusercontent.com/rathena/rathena/master/db/pre-re/attr_fix.txt Im not sure and i never touched this part since.
  4. That patch is for 2020-up client. as you can see you are using 2020-04-01bRagexe_patched. To explain more on that patch adding emblem on guild is not the old way its a web based now that's why you need to have that patch as what chaos told you.
  5. I think you need to post the script here for easy checking.
  6. Since there's no options on doing that on/off thing. I added a new section and replace this part case Job_Novice: // First job change Job_Options([email protected]_opt,Job_Swordman, Job_Mage, Job_Archer, Job_Acolyte, Job_Merchant, Job_Thief, Job_Super_Novice, Job_Taekwon, Job_Gunslinger, Job_Ninja); if( .BabyNovice ) Job_Options([email protected]_opt, Job_Baby); break; into this case Job_Novice: // First job change Job_Options([email protected]_opt,Job_Swordman, Job_Mage, Job_Archer, Job_Acolyte, Job_Merchant, Job_Thief, Job_Super_Novice); if( .Expanded ) Job_Options([email protected]_opt,Job_Taekwon, Job_Gunslinger, Job_Ninja); if( .BabyNovice ) Job_Options([email protected]_opt, Job_Baby); break; and then on the OnInit: part add this .Expanded = true; // Enable Ninja, Taekwon, Gunslinger Class
  7. I would never doubt this guy, hire him and you'll get a very good result.
  8. removemapflag "06guild_01", mf_noskill; removemapflag "06guild_02", mf_noskill; removemapflag "06guild_03", mf_noskill; removemapflag "06guild_04", mf_noskill; removemapflag "06guild_05", mf_noskill; removemapflag "06guild_06", mf_noskill;
  9. Replace bindatcmd "lms", strnpcinfo(3)+"::startlmsevent"; into this bindatcmd "lms", strnpcinfo(3)+"::OnAtcommand"; and then add OnAtcommand: before this part startlmsevent:
  10. You just remove this part OnClock000: OnClock0300: OnClock0600: OnClock0900: OnClock1200: OnClock1500: OnClock1800: OnClock2100:// Edit this to what ever you want. note : OnClock0000 is 12 midnight and OnClock1200 is 12 Noon and then add this - script LMS -1,{ OnInit: bindatcmd "lms", strnpcinfo(3)+"::startlmsevent"; end;
  11. You cant add 0 on list of requirements just leave it empty like this part Add(1,5016,1,0,0,1030,10,0,0,0,0,0,0); must be like this Add(1,5016,1,0,0,1030,10);
  12. You need to post the script that you are using now its hard to pin point which part is giving you an issue, as i can see its part of quest requirements.
  13. Look for ^00FF00 inside the script and replace it with ^0000FF
  14. Try restarting the server and see if the points has changed.
  15. prontera,150,150,4 script Reset MVP Ranking 84,{ for(set [email protected], 0; [email protected] < [email protected]; set [email protected], [email protected]+1) { setd "$topmvp" + [email protected], 0; setd "$topmvp" + [email protected] + "$", ""; } dispbottom "MVP Ranking has been Reset."; query_sql("DELETE FROM `char_reg_num` WHERE `key` = 'MvP'"); close2; addrid(0); MvP = 0; end; }
  16. Did you check the sql tables? See if its still present?
  17. Im not sure where to start but i think you need to start from zero much better and less time to do...
  18. D On my client.conf min_hair_style: 1 max_hair_style: 99 min_hair_color: 1 max_hair_color: 1400 min_cloth_color: 1 max_cloth_color: 1400 save_body_style: no Did you also change and use @reloadbattleconf or to make sure restart the server?
  19. You might put it on the wrong directory that's why its giving you error?
  20. Try creating a new character and see if its crashing still..
  21. On the server side, did you check the conf/battle/client.conf on this part save_body_style: no mine was set as no but by default: yes
  22. Checked my server and its working fine.. normal player with a group id 0 cannot view the other players equipment.
  23. You can create a separate npc for exclusive headgears (ex: top, mid and low) by calling the shop #.. but to answer your question i think its possible but that would make a lot of changes in the script. For me.. I love hows its made and how it works
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.