NeoGenesis Posted November 21, 2012 Group: Members Topic Count: 40 Topics Per Day: 0.01 Content Count: 120 Reputation: 0 Joined: 01/03/12 Last Seen: August 26, 2017 Share Posted November 21, 2012 Can Anyone tell me how to change zeny to full 3b? Quote Link to comment Share on other sites More sharing options...
michaelsoftman Posted November 21, 2012 Group: Members Topic Count: 48 Topics Per Day: 0.01 Content Count: 410 Reputation: 29 Joined: 04/04/12 Last Seen: November 28, 2024 Share Posted November 21, 2012 In mmo.h #define MAX_ZENY 1000000000 Quote Link to comment Share on other sites More sharing options...
Euphy Posted November 21, 2012 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 2997 Reputation: 1132 Joined: 05/27/12 Last Seen: June 1, 2017 Share Posted November 21, 2012 Max int is 2147483648. Quote Link to comment Share on other sites More sharing options...
WhiteEagle Posted November 22, 2012 Group: Members Topic Count: 79 Topics Per Day: 0.02 Content Count: 480 Reputation: 67 Joined: 08/28/12 Last Seen: 22 hours ago Share Posted November 22, 2012 WTF what a number... xD Quote Link to comment Share on other sites More sharing options...
ToastOfDoom Posted November 22, 2012 Group: Members Topic Count: 4 Topics Per Day: 0.00 Content Count: 44 Reputation: 49 Joined: 11/19/11 Last Seen: January 4, 2019 Share 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 Link to comment Share on other sites More sharing options...
Lighta Posted November 22, 2012 Group: Members Topic Count: 16 Topics Per Day: 0.00 Content Count: 737 Reputation: 216 Joined: 11/29/11 Last Seen: December 20, 2020 Share Posted November 22, 2012 int32 yeah but they could tryz with int64 or make it unsigned to test 3b Quote Link to comment Share on other sites More sharing options...
NeoGenesis Posted November 22, 2012 Group: Members Topic Count: 40 Topics Per Day: 0.01 Content Count: 120 Reputation: 0 Joined: 01/03/12 Last Seen: August 26, 2017 Author Share Posted November 22, 2012 thx all .. .. is working .. Thx for help me . Quote Link to comment Share on other sites More sharing options...
Question
NeoGenesis
Can Anyone tell me how to change zeny to full 3b?
Link to comment
Share on other sites
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.