NeoFrost Moderator


Posts : 1595 Age : 24 Location : A floor. Moderator Points : Warning Points : Reputation : 15 Activity Points : 1809 Registration date : 2009-10-28
Character sheet RPG field: 6.0221412927×10^23
 | Subject: 2x Drop Rates Sat Jul 26, 2014 7:16 pm | |
| How about creating a state that makes it so that you can have 2x drop rates? It'll make grinding for things like Sea Leathers and Hollow equip items much less tedious.
You can put this script above main, and below...uh...everything else.
class Game_Enemy < Game_Battler # Double item state. STATE_ID = 99 # Probability multiplier. PROB = 2 def treasure_prob for i in $game_party.actors do return $data_enemies[@enemy_id].treasure_prob*PROB if i.state?(STATE_ID) end return $data_enemies[@enemy_id].treasure_prob end end
I didn't really test this script much. It might check your reserve party as well. Not sure.
| |
|
Zeru Administrator


Posts : 2243 Age : 112 Location : forums watching you Moderator Points : Warning Points : Reputation : 18 Activity Points : 3067 Registration date : 2008-03-26
Character sheet RPG field: 1
 | Subject: Re: 2x Drop Rates Sat Jul 26, 2014 9:59 pm | |
| Added in game. Thanks for the suggestion and script, Neo. | |
|
myfantasy Spammer


Posts : 7576 Age : 27 Location : On the run Moderator Points : Warning Points : Reputation : 25 Activity Points : 7888 Registration date : 2008-03-30
Character sheet RPG field: plǝıɟ ƃdɹ
 | Subject: Re: 2x Drop Rates Sat Jul 26, 2014 11:31 pm | |
| I think he should get mod points for this O)
+1 | |
|
Sponsored content
 | Subject: Re: 2x Drop Rates  | |
| |
|