NeoGenesis Posted November 21, 2012 Posted November 21, 2012 Can Anyone tell me how to change zeny to full 3b? Quote
michaelsoftman Posted November 21, 2012 Posted November 21, 2012 In mmo.h #define MAX_ZENY 1000000000 Quote
ToastOfDoom Posted November 22, 2012 Posted November 22, 2012 It's actually not that surprising. An 'int' is stored using 32 bits. One bit is used as a sign so you effectively have 31 bits for the number. 2^31 = 2,147,483,648 I do wonder why it's a signed int though. There really isn't a case where you can have negative zeny. Quote
Lighta Posted November 22, 2012 Posted November 22, 2012 int32 yeah but they could tryz with int64 or make it unsigned to test 3b Quote
NeoGenesis Posted November 22, 2012 Author Posted November 22, 2012 thx all .. .. is working .. Thx for help me . Quote
Question
NeoGenesis
Can Anyone tell me how to change zeny to full 3b?
6 answers to this question
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.