• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

Help,How to modify global bonus

Junior Spellweaver
Joined
Jan 29, 2015
Messages
118
Reaction score
5
e.g. drops,task_money,task_exp,I want adjusted to 10 times the original
 
Joined
Oct 24, 2007
Messages
245
Reaction score
365
example for you...

gplayer_imp::ReceiveBelief

Code:
void
gplayer_imp::ReceiveBelief2(int64_t belief, char ignore_max)
{
        if (belief > 0)
        {
                float belief_mul = abase::Rand( 30.f, 40.f );
                IncBelief2( belief, belief_mul, ignore_max );
        }
}
 
Upvote 0
Junior Spellweaver
Joined
Jan 29, 2015
Messages
118
Reaction score
5
example for you...

gplayer_imp::ReceiveBelief

Code:
void
gplayer_imp::ReceiveBelief2(int64_t belief, char ignore_max)
{
        if (belief > 0)
        {
                float belief_mul = abase::Rand( 30.f, 40.f );
                IncBelief2( belief, belief_mul, ignore_max );
        }
}
Where does the method "gplayer_imp:: Receive Belief" come from?I don't know much about decompilation. I have found an alternative, which may not be perfect. / Gamed/config/taskscript/task_list_type.lua, with experience and money Adjust values in this file
 
Upvote 0
Back
Top