Jump to content

Radian

Members
  • Posts

    1546
  • Joined

  • Last visited

  • Days Won

    19

Everything posted by Radian

  1. Script: | if(getrefine()==8) bonus bStr,1; else if(getrefine()==9) bonus bAgi,1; else bonus bAllStats,1;
  2. View File Loading Screens Chibi I made these loading screens for my past server, and now i've decided to share it with the public. Disclaimer: These images are not mine use them and not sale them. Submitter Radian Submitted 04/29/2021 Category Loading Screens Video Content Author Radian  
  3. Version 1.0.0

    128 downloads

    I made these loading screens for my past server, and now i've decided to share it with the public. Disclaimer: These images are not mine use them and not sale them.
    Free
  4. Its all good.. im not familiar with the other errors but make to remove/replace what is needed and add what is required. Yeah, it should work on a group 99 since it access all the commands added on the server, the only problem that i can think of is the compiling your trunk. since changing something from the source requires rebuild/recompile.
  5. Questions: 1. Did you recompile your files, after adding the diff? 2. Did you added the command @spb/partybuff into the specific group level?
  6. 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
  7. 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.
  8. 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.
  9. I think you need to post the script here for easy checking.
  10. 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(.@job_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(.@job_opt, Job_Baby); break; into this case Job_Novice: // First job change Job_Options(.@job_opt,Job_Swordman, Job_Mage, Job_Archer, Job_Acolyte, Job_Merchant, Job_Thief, Job_Super_Novice); if( .Expanded ) Job_Options(.@job_opt,Job_Taekwon, Job_Gunslinger, Job_Ninja); if( .BabyNovice ) Job_Options(.@job_opt, Job_Baby); break; and then on the OnInit: part add this .Expanded = true; // Enable Ninja, Taekwon, Gunslinger Class
  11. I would never doubt this guy, hire him and you'll get a very good result. ?
  12. 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;
  13. Replace bindatcmd "lms", strnpcinfo(3)+"::startlmsevent"; into this bindatcmd "lms", strnpcinfo(3)+"::OnAtcommand"; and then add OnAtcommand: before this part startlmsevent:
  14. 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;
  15. 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);
  16. 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.
  17. Look for ^00FF00 inside the script and replace it with ^0000FF
  18. Try restarting the server and see if the points has changed.
  19. prontera,150,150,4 script Reset MVP Ranking 84,{ for(set .@c, 0; .@c < $@top; set .@c, .@c+1) { setd "$topmvp" + .@c, 0; setd "$topmvp" + .@c + "$", ""; } dispbottom "MVP Ranking has been Reset."; query_sql("DELETE FROM `char_reg_num` WHERE `key` = 'MvP'"); close2; addrid(0); MvP = 0; end; }
  20. Did you check the sql tables? See if its still present?
  21. Im not sure where to start but i think you need to start from zero much better and less time to do...
  22. 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?
  23. You might put it on the wrong directory that's why its giving you error?
  24. Try creating a new character and see if its crashing still..
×
×
  • Create New...