Lilith Posted April 22, 2012 Group: Members Topic Count: 14 Topics Per Day: 0.00 Content Count: 407 Reputation: 159 Joined: 11/18/11 Last Seen: November 15, 2014 Share Posted April 22, 2012 (edited) This code adds the 'item bonuses' to players without any items. The code have 3 settings if conf/player.conf // Enable [1-2] or disable[0] player's Extra Bonuses?// 1 = enable for all players any bonuses from db/extra_bonuses.txt // 2 = enable only for players which have a specific variable "EXTRA_BONUS" enable_extra_bonus: 2 I make '2' setting for faction-like systems. Just set the player variable EXTRA_BONUS to 1, and player will be received first line bonuses from db/extra_bonuses.txt You can add/change/delete bonuses in/from file db/extra_bonuses.txt // Extra Bonuses [Lilith]// If enable_extra_bonus is 1 this and below Extra bonuses will be received by all players // If enable_extra_bonus is 2 this Extra bonus will be received by players which have variable EXTRA_BONUS = 1 { bonus bStr,15; bonus bSpeedAddRate,50; /* more bonuses */ } // If enable_extra_bonus is 2 this Extra bonus will be received by players which have variable EXTRA_BONUS = 2 { bonus bAgi,10; bonus bMdef,30; /* more bonuses */ } // More bonuses...etc... {} {} {} Bonuses will be reloaded by @reloaditemdb command. enjoy. Extra_Bonuses.patch Edited May 4, 2012 by Lilith 3 Quote Link to comment Share on other sites More sharing options...
Gennosuke Kouga Posted April 22, 2012 Group: Members Topic Count: 12 Topics Per Day: 0.00 Content Count: 83 Reputation: 57 Joined: 01/21/12 Last Seen: September 15, 2014 Share Posted April 22, 2012 Nice idea i think it could be useful for combie with achievement system Quote Link to comment Share on other sites More sharing options...
sizenine Posted April 25, 2012 Group: Members Topic Count: 37 Topics Per Day: 0.01 Content Count: 149 Reputation: 13 Joined: 02/17/12 Last Seen: January 25, 2018 Share Posted April 25, 2012 instead of having the extra bonus overlap effects for all values under it, can you make it so that a different bonus can be set to every value without effects from bonuses above overlapping it? Quote Link to comment Share on other sites More sharing options...
Legato Posted May 1, 2012 Group: Members Topic Count: 19 Topics Per Day: 0.00 Content Count: 87 Reputation: 1 Joined: 11/20/11 Last Seen: September 10, 2013 Share Posted May 1, 2012 (edited) Hello.. Could someone help me adding bonuses to specific players? I already set the enable_extra_bonus to enable_extra_bonus : 2 and add some bonuses on extra_bonuses.txt on db. But, the bonuses doesn't apply to these 2 CIDs. Here's the script I have. Please correct it if you see something wrong with it. - script Bonus -1,{ OnPCLoginEvent: if(bbinus) end; if( getcharid(0) == 150000 ) Set EXTRA_BONUS,1; if( getcharid(0) == 150001 ) Set EXTRA_BONUS,2; set bbonus,1; end; } instead of having the extra bonus overlap effects for all values under it, can you make it so that a different bonus can be set to every value without effects from bonuses above overlapping it? Bump 1 for my post and for this 1. Edited May 1, 2012 by Legato Quote Link to comment Share on other sites More sharing options...
Lilith Posted May 1, 2012 Group: Members Topic Count: 14 Topics Per Day: 0.00 Content Count: 407 Reputation: 159 Joined: 11/18/11 Last Seen: November 15, 2014 Author Share Posted May 1, 2012 Updated. Bug with setting '2' fixed. Quote Link to comment Share on other sites More sharing options...
Legato Posted May 1, 2012 Group: Members Topic Count: 19 Topics Per Day: 0.00 Content Count: 87 Reputation: 1 Joined: 11/20/11 Last Seen: September 10, 2013 Share Posted May 1, 2012 Thanks for the fixed, Lilith. Uhh, any update on how you'd fix this? D: instead of having the extra bonus overlap effects for all values under it, can you make it so that a different bonus can be set to every value without effects from bonuses above overlapping it? Quote Link to comment Share on other sites More sharing options...
Lilith Posted May 4, 2012 Group: Members Topic Count: 14 Topics Per Day: 0.00 Content Count: 407 Reputation: 159 Joined: 11/18/11 Last Seen: November 15, 2014 Author Share Posted May 4, 2012 (edited) Re-uploaded patch. Now bonuses stack... Edited May 4, 2012 by Lilith Quote Link to comment Share on other sites More sharing options...
Legato Posted May 9, 2012 Group: Members Topic Count: 19 Topics Per Day: 0.00 Content Count: 87 Reputation: 1 Joined: 11/20/11 Last Seen: September 10, 2013 Share Posted May 9, 2012 Hi, Lilith. Thanks for the updates. I wanna ask something, though. Any news about this ? | v instead of having the extra bonus overlap effects for all values under it, can you make it so that a different bonus can be set to every value without effects from bonuses above overlapping it? Quote Link to comment Share on other sites More sharing options...
dreamunreal Posted May 14, 2012 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 28 Reputation: 8 Joined: 11/16/11 Last Seen: May 30, 2023 Share Posted May 14, 2012 small question. how about: // Enable [1-2] or disable[0] player's Extra Bonuses? // 1 = enable for all players any bonuses from db/extra_bonuses.txt // 2 = enable only for players which have a specific variable "EXTRA_BONUS", type 1 // 3 = enable only for players which have a specific variable "EXTRA_BONUS", type 2 enable_extra_bonus: X( X can be 1,2,3) 1,{ bonus bStr,20; } 2,{ bonus bAgi,20; } switch(enable_extra_bonus) { case 1: work on all players; break; case 2: all bonuses work on all players which specific variable "EXTRA_BONUS" != 0; break; case 3: bonuses just work on players which specific variable "EXTRA_BONUS" = bonus's number; break; } end; Quote Link to comment Share on other sites More sharing options...
moneymuch Posted June 6, 2012 Group: Members Topic Count: 6 Topics Per Day: 0.00 Content Count: 20 Reputation: 0 Joined: 03/11/12 Last Seen: December 5, 2012 Share Posted June 6, 2012 (edited) small question. how about: // Enable [1-2] or disable[0] player's Extra Bonuses? // 1 = enable for all players any bonuses from db/extra_bonuses.txt // 2 = enable only for players which have a specific variable "EXTRA_BONUS", type 1 // 3 = enable only for players which have a specific variable "EXTRA_BONUS", type 2 enable_extra_bonus: X( X can be 1,2,3) 1,{ bonus bStr,20; } 2,{ bonus bAgi,20; } switch(enable_extra_bonus) { case 1: work on all players; break; case 2: all bonuses work on all players which specific variable "EXTRA_BONUS" != 0; break; case 3: bonuses just work on players which specific variable "EXTRA_BONUS" = bonus's number; break; } end; Laugh ~~~ I want to use this mode , too. But I have not found the solution. My idea is the way that resemble "manner_system", 1 + 2 + 4 + 8 + 16.............,but i don't know to edit it Edited June 6, 2012 by moneymuch Quote Link to comment Share on other sites More sharing options...
Lai Posted June 11, 2012 Group: Members Topic Count: 6 Topics Per Day: 0.00 Content Count: 58 Reputation: 4 Joined: 11/22/11 Last Seen: October 28, 2023 Share Posted June 11, 2012 Hi. Is it possible to add Extra Bonus, for certain GM level? Quote Link to comment Share on other sites More sharing options...
Linkin Park Posted September 7, 2012 Group: Members Topic Count: 42 Topics Per Day: 0.01 Content Count: 227 Reputation: 11 Joined: 11/16/11 Last Seen: November 7, 2015 Share Posted September 7, 2012 Is it possible that the bonuses will be given to the members of a certain guild via guild ID? Quote Link to comment Share on other sites More sharing options...
HitsuzenRO Posted September 18, 2012 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 9 Reputation: 1 Joined: 05/13/12 Last Seen: March 19, 2013 Share Posted September 18, 2012 Thank you very much for this patch it actually works like a charm, really great job!!! And it also works in eAthena last rev (only had to manually add the part of battle.c and battle.h, also the MAX_ITEMDB variable ) Really: pretty good job. Thank you very much! Quote Link to comment Share on other sites More sharing options...
emo182 Posted September 30, 2012 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 21 Reputation: 0 Joined: 11/26/11 Last Seen: May 19, 2020 Share Posted September 30, 2012 small question. how about: // Enable [1-2] or disable[0] player's Extra Bonuses? // 1 = enable for all players any bonuses from db/extra_bonuses.txt // 2 = enable only for players which have a specific variable "EXTRA_BONUS", type 1 // 3 = enable only for players which have a specific variable "EXTRA_BONUS", type 2 enable_extra_bonus: X( X can be 1,2,3) 1,{ bonus bStr,20; } 2,{ bonus bAgi,20; } switch(enable_extra_bonus) { case 1: work on all players; break; case 2: all bonuses work on all players which specific variable "EXTRA_BONUS" != 0; break; case 3: bonuses just work on players which specific variable "EXTRA_BONUS" = bonus's number; break; } end; Laugh ~~~ I want to use this mode , too. But I have not found the solution. My idea is the way that resemble "manner_system", 1 + 2 + 4 + 8 + 16.............,but i don't know to edit it i think that too, 1+2+4+8 will be good, or maybe it can modified using array like EXTRA_BONUS[0,1,2,3....], so a character can have many effect. Quote Link to comment Share on other sites More sharing options...
Vach Posted November 4, 2012 Group: Members Topic Count: 21 Topics Per Day: 0.00 Content Count: 326 Reputation: 19 Joined: 09/27/12 Last Seen: February 27, 2021 Share Posted November 4, 2012 I agree that this would jump in use if you could enable specific variables to work specific bonus lines... otherwise it could become difficult to use for sparse server populations (with npc hosted events). Quote Link to comment Share on other sites More sharing options...
Encon Posted June 6, 2013 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 6 Reputation: 0 Joined: 12/23/11 Last Seen: January 8, 2020 Share Posted June 6, 2013 (edited) Laugh ~~~ I want to use this mode , too. But I have not found the solution. My idea is the way that resemble "manner_system", 1 + 2 + 4 + 8 + 16.............,but i don't know to edit it I agree that this would jump in use if you could enable specific variables to work specific bonus lines... otherwise it could become difficult to use for sparse server populations (with npc hosted events). Super late, but rawr. Modified patch file attached to this post. (Leave enable_extra_bonus as 2 for this to work) Right now it works with up to 90 bonus effects, but it's easy to edit it to allow for more if you need to. First 30 bonuses in the db/extra_bonuses.txt file apply to the EXTRA_BONUS variable, next 30 bonuses apply to EXTRA_BONUS2, next 30 apply to EXTRA_BONUS3. Make sure you leave all the blank {} lines, otherwise it'll mess things up since it relies on the empty bonuses to know where the next variable starts. Inside conf/battle/player.conf: extra_bonus_count1: 30 // EXTRA_BONUS extra_bonus_count2: 30 // EXTRA_BONUS2 extra_bonus_count3: 30 // EXTRA_BONUS3 That sets how many lines it'll count for each variable, that's just random optimizing in case you use less than 30 each. I'm sure it barely makes a difference but I'm tired and it seemed like a good idea at the time so leave me alone. </3 You can probably just leave them at 30 I guess, I dunno. As a note, even if you set it to less than 30, the EXTRA_BONUS2 variable will still start from the 31st bonus line, so don't erase the empty {} lines or anything. This just tells the server to skip to the next variable once it hits the max amount for the current one. The EXTRA_BONUS variables use those bitwise number things that moneymuch mentioned, so when you set the variables it's like...uh... 1 = first bonus line 2 = second bonus line 4 = third bonus line 8 = fourth bonus line etc. 6 = 4+2 = second and third bonus lines 7 = 4+2+1 = first, second and third bonus lines etc. Holy crap I'm so tired...this is the worst explanation ever. Anyways yeah. Don't hate pl0x, I know I could have done it better but I'm too tired/lazy to really care, and as long as it works I'm happy. :x (Almost guaranteed that I'll forget to ever check this for replies, but uh...yeah...) Extra_Bonuses.patch Edited June 6, 2013 by Encon Quote Link to comment Share on other sites More sharing options...
Start_ Posted June 10, 2013 Group: Members Topic Count: 26 Topics Per Day: 0.01 Content Count: 950 Reputation: 180 Joined: 04/05/13 Last Seen: 7 hours ago Share Posted June 10, 2013 Nice source! Quote Link to comment Share on other sites More sharing options...
Lil Troll Posted August 20, 2013 Group: Members Topic Count: 38 Topics Per Day: 0.01 Content Count: 276 Reputation: 24 Joined: 07/06/13 Last Seen: April 19, 2014 Share Posted August 20, 2013 I cant make it work in the latest svn. Quote Link to comment Share on other sites More sharing options...
alibaba Posted September 14, 2013 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 11 Reputation: 0 Joined: 10/10/12 Last Seen: October 13, 2015 Share Posted September 14, 2013 autobonus,autobonus2,autobonus3 is not working in extra bonusanyone face that problem? Quote Link to comment Share on other sites More sharing options...
Norse Posted September 22, 2013 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 82 Reputation: 0 Joined: 11/30/12 Last Seen: April 2, 2023 Share Posted September 22, 2013 Doesn't work on latest SVN,need an update Quote Link to comment Share on other sites More sharing options...
Jonne Posted January 2, 2014 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 153 Reputation: 33 Joined: 12/24/11 Last Seen: September 30, 2024 Share Posted January 2, 2014 If I set the EXTRA_BONUS variable to a negative value, I'm sure there will be an error because you don't check it before using it as index. And C will stop working for negative indice. Quote Link to comment Share on other sites More sharing options...
t3quila Posted October 3, 2014 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 36 Reputation: 4 Joined: 04/16/12 Last Seen: December 9, 2018 Share Posted October 3, 2014 autobonus,autobonus2,autobonus3 is not working in extra bonus anyone face that problem? yes bumb for this~ if i use autobonus (effect like issila card) server always give this report issue "[Error]: itemdb_readbonus: Extra columns in line 8 of "db/extra_bonuses.txt", skipping." pls help us.. how to fix it issue? thanks Quote Link to comment Share on other sites More sharing options...
Skorm Posted January 1, 2017 Group: Forum Moderator Topic Count: 33 Topics Per Day: 0.01 Content Count: 1282 Reputation: 393 Joined: 02/03/12 Last Seen: Thursday at 10:36 PM Share Posted January 1, 2017 I'm not all that great at source but I did update this script to work with the most recent version of rAthena as of 1/1/17. I also added the bitwise operation thing people were asking for. I noticed that MAX_ITEMDB was never set so that was change to MAX_ITEMID which increased the size of the array and instead of resizing it which is a pain in that butt with C I just had to break the loop when it runs out of bonuses. I couldn't figure out how to make a patch file from a git commit so I just kinda made my own. So it probably won't work like a normal patch and instead you'll have to manually add the changes. Extra_bonus.patch 1 Quote Link to comment Share on other sites More sharing options...
MukkiesftKies Posted July 8, 2018 Group: Members Topic Count: 39 Topics Per Day: 0.01 Content Count: 123 Reputation: 7 Joined: 03/13/12 Last Seen: January 2, 2019 Share Posted July 8, 2018 i need this one but doesn't work on latest SVN Quote Link to comment Share on other sites More sharing options...
Forshaken Posted February 24, 2020 Group: Members Topic Count: 15 Topics Per Day: 0.01 Content Count: 152 Reputation: 21 Joined: 11/12/18 Last Seen: February 8 Share Posted February 24, 2020 On 7/26/2019 at 5:04 PM, Forshaken said: Anyone can fix this error? @Lilith Please fix this Anyone can fix this error? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.