Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

guild race currency / gold limit

Newbie Spellweaver
Joined
Jul 4, 2017
Messages
7
Reaction score
1
is there somewhere i can increase the max gold or race currency(dalant, cp, disena) that a guild can hold when people deposit some?

i think default is 1b and 500k gold

so maybe like 4b and 1m gold or something?
 
Newbie Spellweaver
Joined
Dec 10, 2011
Messages
76
Reaction score
4
Code:
####Increase the maximum number of racial currency on account
Increasing the maximum number of racial currency happens not only in the bank character, but also in the guild accounts, as both functions use the same global double constant. Offset for the server is responsible for the maximum number of counts, while the offsets for the customer for the amount of racial currency, which can be withdrawn or put on the account at a time. 

Server: 
BSB - 0x4e0678 
The GU - 0x707198 
Change 0x0000000065cdcd41 (1kkk) to your new maximum number of racial currency, which may be on the bill, as double the number in Hex 

Client: 
BSB - 0x21c0a8 | 0x21c1d8 | 0x24cd57 | 0x25307b 
The GU - 0x2212e8 | 0x221418 | 0x253917 | 0x259c3b 
Change 0x00ca9a3b (=> 3b 9a ca 00 = 1kkk) to your new value of the maximum number of racial currency, which can be removed at once from the account 

maximum recommended value for the server - 2kkk (0x0000000065cddd41) 
The theoretical maximum value for the server - 10kkk, what was U2 in the past. 
The maximum recommended value for customer - 2kkk (0x00943577) 

Remarks: The value in the client should not exceed either the maximum number of racial currency, which may be on a character or number racial currency, which may be in the bank / guild.
===================================================================================
#####Increase in the maximum amount of platinum (Gold) in the account
As is the case with racial currency to increase the maximum amount of platinum on the bank affects the character bank account and the account of the guild. 

Server: 
BSB - 0x4e0670 
The GU - 0x707188 
Change 0x0000000080841e41 (500k) on your new maximum amount of platinum that can be on the bill, as double the number in Hex 

The maximum recommended value for the server - 2kkk (0x0000000065cddd41) 
The theoretical maximum value for the server - 10kkk, then U2 has been in the past.

credit : trirozhka or emka
 
Upvote 0
Newbie Spellweaver
Joined
Jul 4, 2017
Messages
7
Reaction score
1
Code:
####Increase the maximum number of racial currency on account
Increasing the maximum number of racial currency happens not only in the bank character, but also in the guild accounts, as both functions use the same global double constant. Offset for the server is responsible for the maximum number of counts, while the offsets for the customer for the amount of racial currency, which can be withdrawn or put on the account at a time. 

Server: 
BSB - 0x4e0678 
The GU - 0x707198 
Change 0x0000000065cdcd41 (1kkk) to your new maximum number of racial currency, which may be on the bill, as double the number in Hex 

Client: 
BSB - 0x21c0a8 | 0x21c1d8 | 0x24cd57 | 0x25307b 
The GU - 0x2212e8 | 0x221418 | 0x253917 | 0x259c3b 
Change 0x00ca9a3b (=> 3b 9a ca 00 = 1kkk) to your new value of the maximum number of racial currency, which can be removed at once from the account 

maximum recommended value for the server - 2kkk (0x0000000065cddd41) 
The theoretical maximum value for the server - 10kkk, what was U2 in the past. 
The maximum recommended value for customer - 2kkk (0x00943577) 

Remarks: The value in the client should not exceed either the maximum number of racial currency, which may be on a character or number racial currency, which may be in the bank / guild.
===================================================================================
#####Increase in the maximum amount of platinum (Gold) in the account
As is the case with racial currency to increase the maximum amount of platinum on the bank affects the character bank account and the account of the guild. 

Server: 
BSB - 0x4e0670 
The GU - 0x707188 
Change 0x0000000080841e41 (500k) on your new maximum amount of platinum that can be on the bill, as double the number in Hex 

The maximum recommended value for the server - 2kkk (0x0000000065cddd41) 
The theoretical maximum value for the server - 10kkk, then U2 has been in the past.

credit : trirozhka or emka
cheers! got it figured out
 
Last edited:
Upvote 0
Back
Top