-
Posts
1,542 -
Joined
-
Last visited
-
Days Won
19
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by Radian
-
[CLOSED} Q>@partybuff/spb not working - RESOLVED
Radian replied to DK77's question in Scripting Support
Questions: 1. Did you recompile your files, after adding the diff? 2. Did you added the command @spb/partybuff into the specific group level? -
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
-
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.
-
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.
-
Unable to restore stack when specific NPC is triggred
Radian replied to AinsLord's question in Scripting Support
I think you need to post the script here for easy checking. -
Removing Ninja, Taekwondo, Gunslinger from Job Master
Radian replied to Diana's question in Scripting Support
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 -
[Showcase] Ragnabot - A powerful discord bot (Update)
Radian replied to Mastagoon's topic in Project Concepts & In Progress
Looks fun and great job! -
I would never doubt this guy, hire him and you'll get a very good result.
-
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;
-
Replace bindatcmd "lms", strnpcinfo(3)+"::startlmsevent"; into this bindatcmd "lms", strnpcinfo(3)+"::OnAtcommand"; and then add OnAtcommand: before this part startlmsevent:
-
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;
-
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);
-
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.
-
euphy quest shop - how to change item color display
Radian replied to Kwayzee_Wabbit's question in Scripting Support
Look for ^00FF00 inside the script and replace it with ^0000FF -
Try restarting the server and see if the points has changed.
-
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; }
-
Did you check the sql tables? See if its still present?
-
Im not sure where to start but i think you need to start from zero much better and less time to do...
-
HELP! Hair Color Problem! Palette Error When i have all the palletes
Radian replied to lelouchxv's question in Client-side Support
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? -
HELP! Hair Color Problem! Palette Error When i have all the palletes
Radian replied to lelouchxv's question in Client-side Support
You might put it on the wrong directory that's why its giving you error? -
HELP! Hair Color Problem! Palette Error When i have all the palletes
Radian replied to lelouchxv's question in Client-side Support
Try creating a new character and see if its crashing still.. -
HELP! Hair Color Problem! Palette Error When i have all the palletes
Radian replied to lelouchxv's question in Client-side Support
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 -
Cool sprites!
-
Checked my server and its working fine.. normal player with a group id 0 cannot view the other players equipment.
-
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