Alistair

Treasure Hunter
Regular
Joined
Jun 15, 2014
Messages
283
Reaction score
200
First Language
English
Primarily Uses
RMMZ

~ Gold  & Drop Rate~
by Alistair


 


For the latest updates please visit my blog. This is merely an introduction topic.


 


By default, the editor only allows the party to have a "Double Item Rate" and "Double Gold" flag. This flag does not stack. There is an experience rate but nothing similar for Gold and Drops. This basically means that you can have 200% Gold/Drop rate at most at any given time. Pretty limiting. This plugin introduces an actual Gold/Item rate that can be modified with Notetags placed in several noteboxes.


You can even use your own formulas for these rates. For example, it's possible to have variables or switches influence the Gold/Drop rate.


Giving your Actors, Classes, Equipments or States the following notetags will change the rates:


<Gold Rate: +x%> or <Gold Rate: -x%>


<Item Rate: +x%> or <Item Rate: -x%>


These notetags stack additively! This means that twice +75% will result in +150% and not in 56% (= Multiplicatively).


For multiplicative changes use these notetags:


<Gold Rate: x%>


<Item Rate: x%>


I can't really show screenshots for this plugin but for the sake of clearness have some plugin parameters:


unt1.png



Terms of Use, Download and some more words on Usage can all be found on my blog.
 
Last edited by a moderator:

Henryetha

Regular
Regular
Joined
Jan 14, 2016
Messages
388
Reaction score
208
First Language
german
Primarily Uses
Oh this is SO useful!


Especially while having worked with many affixes for equips and tons of runes which I have thought about effects for.. I always felt very limited.
 

Halrawk

Regular
Regular
Joined
Dec 14, 2012
Messages
97
Reaction score
25
First Language
English
Primarily Uses
Currently luck is a completely useless stat in my game, this is the perfect plugin to change that. Thanks!
 

Yawgmoth

Regular
Regular
Joined
Jan 9, 2018
Messages
138
Reaction score
11
First Language
English
Primarily Uses
RMMV
Is there a way to only allow an actor's note tag to be enabled while the actor is part of the ACTIVE party and not the reserve party members? I'm assuming there may be some script I could use.

Explanation: My game will center around mercenary guilds and each recruit that joins the party will reduce X% of gold earned while in the active party. I am using <Gold Rate: -x%> as my note tag of choice, and I am assuming all actors with the note tag will reduce gold earned regardless of reserve status or active status. Am I correct in my assumption and if so is there a feasible way I can alter the note tag or create script that will disallow note tags from reserve actors?
 

Vladar458

Regular
Regular
Joined
Oct 13, 2020
Messages
143
Reaction score
19
First Language
Spanish
Primarily Uses
RMMV
I know this topic is quite old, but i´m recently trying to use this plugin, at it seems it doesn´t work outside battle. I´m using Chrono engine, a real time battle system, and when i defeat an enemy there, it seems this plugin doesn´t work. The regular "double gold" works, but this not. Someone know how could be fixed?
 

AquaEcho

Script Kitty
Regular
Joined
Sep 20, 2021
Messages
2,264
Reaction score
1,694
First Language
English
Primarily Uses
RMMV
I know this topic is quite old, but i´m recently trying to use this plugin, at it seems it doesn´t work outside battle. I´m using Chrono engine, a real time battle system, and when i defeat an enemy there, it seems this plugin doesn´t work. The regular "double gold" works, but this not. Someone know how could be fixed?
I did a very extensive writeup on ChronoEngine drops here
 

Vladar458

Regular
Regular
Joined
Oct 13, 2020
Messages
143
Reaction score
19
First Language
Spanish
Primarily Uses
RMMV
I did a very extensive writeup on ChronoEngine drops here
That work with Gold as well? Because i want to make an ring that, when equipped, increase all gold gain a 20%. If don´t. there is a way to modify the double gold option itself?
 

Sword_of_Dusk

Ace Attorney
Regular
Joined
Sep 13, 2015
Messages
1,772
Reaction score
1,981
First Language
English
Primarily Uses
RMMV
Instead of double posting and potentially hijacking a thread, make your own thread and ask. @Vladar458
 

AquaEcho

Script Kitty
Regular
Joined
Sep 20, 2021
Messages
2,264
Reaction score
1,694
First Language
English
Primarily Uses
RMMV
That work with Gold as well? Because i want to make an ring that, when equipped, increase all gold gain a 20%. If don´t. there is a way to modify the double gold option itself?
This plugin only works for drops on the battle scene. If you trigger a battle scene in ChronoEngine it will apply but not for the on map battles. You could alias the function holding the default "double gold" trait in a new plugin and make it a variable instead.
 

Vladar458

Regular
Regular
Joined
Oct 13, 2020
Messages
143
Reaction score
19
First Language
Spanish
Primarily Uses
RMMV
This plugin only works for drops on the battle scene. If you trigger a battle scene in ChronoEngine it will apply but not for the on map battles. You could alias the function holding the default "double gold" trait in a new plugin and make it a variable instead.
I see. And how i do that? I would like to know how. Editing the "double gold" and turning it into a 20% would also work for me too.
 

AquaEcho

Script Kitty
Regular
Joined
Sep 20, 2021
Messages
2,264
Reaction score
1,694
First Language
English
Primarily Uses
RMMV
I see. And how i do that? I would like to know how. Editing the "double gold" and turning it into a 20% would also work for me too.
The reason it's not working on the on map ChronoEngine battles is because the tool events use a new different function entirely. If you want to modify the gold double rate for tool events, put this snippet in a new .js file, add it to the bottom of your plugin list, and change 2 to the multiplier you want, i.e. 1.2 or if you want a variable change 2 to $gameVariables.value(50) and store your multiplier in Control Variable 50.

Code:
ToolEvent.prototype.goldRate = function() {
    return $gameParty.hasGoldDouble() ? 2 : 1;
};
 

Vladar458

Regular
Regular
Joined
Oct 13, 2020
Messages
143
Reaction score
19
First Language
Spanish
Primarily Uses
RMMV
The reason it's not working on the on map ChronoEngine battles is because the tool events use a new different function entirely. If you want to modify the gold double rate for tool events, put this snippet in a new .js file, add it to the bottom of your plugin list, and change 2 to the multiplier you want, i.e. 1.2 or if you want a variable change 2 to $gameVariables.value(50) and store your multiplier in Control Variable 50.

Code:
ToolEvent.prototype.goldRate = function() {
    return $gameParty.hasGoldDouble() ? 2 : 1;
};
Thank you so much! I tested it and it works perfectly! This would work with Exp too? The basic function of giving more exp doesn´t work outside of battle too.
 

AquaEcho

Script Kitty
Regular
Joined
Sep 20, 2021
Messages
2,264
Reaction score
1,694
First Language
English
Primarily Uses
RMMV
Thank you so much! I tested it and it works perfectly! This would work with Exp too? The basic function of giving more exp doesn´t work outside of battle too.
Sp-parameter experience works for me. I didn't change anything.
 

Attachments

  • 1695603112142.png
    1695603112142.png
    166.6 KB · Views: 8

Vladar458

Regular
Regular
Joined
Oct 13, 2020
Messages
143
Reaction score
19
First Language
Spanish
Primarily Uses
RMMV
Sp-parameter experience works for me. I didn't change anything.
Oh, sorry. My bad. I checked it wrong, it works fine too. You are truly a lifesaver.

Edit: Mmm, it seems that the MP reduction option is ignored by the battle system too. I have an item that reduces MP comsumption a 20%. I have a skill that cost 5MP. In the skill menu it says that you need 4, but when i equip the skill and use it, show 5 and uses 5 MP.
 
Last edited:

Latest Threads

Latest Posts

Latest Profile Posts

Yknow what? Im seriously considering recruiting a manager to oversee my games development.
Because I cannot focus or complete these tasks by myself. I need someone to give me orders, without having them be my boss.
yp_4vS.png

Remember my latest plugin for rpg maker mz:

Acknowledgement Window is now available!

Take a look here:

Got my focus back, 9/59 maps have the door fix in place now.
Making a small RMMV project has made me realize that I've never actually made a credits sequence for a game.

Forum statistics

Threads
136,802
Messages
1,270,179
Members
180,558
Latest member
Kev03
Top