How to modify the gold max gold in item

06/18/2018 04:37 hemaDoc#1
hi ,
good morning Guys
i want to know how to modify max gold in item !
For Ex max gold in most servers = 2 billion Gold
in play Conquer max Gold 9b and 900m !
i want to make it 300 Billion !
How Modify it @ :)
Thanks for attention
06/18/2018 17:21 Spirited#2
Quote:
Originally Posted by hemaDoc View Post
hi ,
good morning Guys
i want to know how to modify max gold in item !
For Ex max gold in most servers = 2 billion Gold
in play Conquer max Gold 9b and 900m !
i want to make it 300 Billion !
How Modify it @ :)
Thanks for attention
Requires changing the data type in the client to a 64-bit long integer rather than a 32-bit integer. It's very unreasonable to try changing that everywhere it's referenced in the client. A better option may be to just rethink your server. I mean, 2 billion gold is enough of a limit. If you're going over that, then your server is super broken.
06/18/2018 17:57 hemaDoc#3
Quote:
Originally Posted by Spirited View Post
Requires changing the data type in the client to a 64-bit long integer rather than a 32-bit integer. It's very unreasonable to try changing that everywhere it's referenced in the client. A better option may be to just rethink your server. I mean, 2 billion gold is enough of a limit. If you're going over that, then your server is super broken.
i want to modify it man !
because i have poker in my server
so how come to make max value 2b !
so tell me the way to change it please
06/18/2018 19:09 Spirited#4
Quote:
Originally Posted by hemaDoc View Post
i want to modify it man !
because i have poker in my server
so how come to make max value 2b !
so tell me the way to change it please
I told you how to change it. If you can't figure it out from there, then give up. At this point, you're just spamming coding demands. That's not what we're here for, and nobody will code that for you for free.
06/18/2018 21:47 Ultimation#5
we have had this question regarding cps too.. These servers have mobs that drop 200,000,000 cps a drop then wonder why the int overflows and becomes negative.. or maxes.
06/19/2018 04:57 hemaDoc#6
Quote:
Originally Posted by Ultimation View Post
we have had this question regarding cps too.. These servers have mobs that drop 200,000,000 cps a drop then wonder why the int overflows and becomes negative.. or maxes.
Is it a question?
Or is it known?
If I know it, I think it is close to my question. I want to know how it happens that I am canceling the negative
if it question !
i don't know Cuz i'm already asking
06/19/2018 05:36 Spirited#7
Quote:
Originally Posted by hemaDoc View Post
Is it a question?
Or is it known?
If I know it, I think it is close to my question. I want to know how it happens that I am canceling the negative
if it question !
i don't know Cuz i'm already asking
No.
06/19/2018 15:43 Soulfly25#8
Why not make a MoneyBag of 1Billion Gold, when the player get more than 1Billion of gold in his/her inventory or warehouse it should be automatically pack into moneybag.

It's just an suggestion.
06/19/2018 20:46 hemaDoc#9
Quote:
Originally Posted by Soulfly25 View Post
Why not make a MoneyBag of 1Billion Gold, when the player get more than 1Billion of gold in his/her inventory or warehouse it should be automatically pack into moneybag.

It's just an suggestion.
ahaa friend
it's very very very good idea !
but ! :(
i don't know !
how to make this bag make auto !
but i'll try !
thanks for your Idea Friend <3
06/19/2018 23:23 Korvacs#10
Have you considered just not running a private server?

You're unable to grasp even the most basic of problems or implement the most basic of solutions, at this point it's quite remarkable that you're actually able to launch the server to be perfectly honest.

You've been given two solutions (which for epvpers is fucking generous let me tell you), modify the data type from a 32-bit integer to a 64-bit integer and also to implement an item which has a value of 1 Billion gold. Pick one of these solutions and learn how to implement them, the amount of code available on this forum is staggering, plenty of material for you to learn from.

Back in my day we didn't have freely available source code, we had to learn from scratch working on the only source code we had which was written by ourselves *shakes walking stick*.
06/20/2018 01:21 hemaDoc#11
Quote:
Originally Posted by Korvacs View Post
Have you considered just not running a private server?

You're unable to grasp even the most basic of problems or implement the most basic of solutions, at this point it's quite remarkable that you're actually able to launch the server to be perfectly honest.

You've been given two solutions (which for epvpers is fucking generous let me tell you), modify the data type from a 32-bit integer to a 64-bit integer and also to implement an item which has a value of 1 Billion gold. Pick one of these solutions and learn how to implement them, the amount of code available on this forum is staggering, plenty of material for you to learn from.

Back in my day we didn't have freely available source code, we had to learn from scratch working on the only source code we had which was written by ourselves *shakes walking stick*.
Thanks for attention
But I do not think I did a crime when I asked for help?
Farguk does not follow such offensive style
I want to follow that solution
modify the data type from a 32-bit integer to a 64-bit integer
But all I want to know to start myself is where is the track?
Is it the source of Client?
Thank
06/20/2018 17:24 teroareboss1#12
Quote:
Originally Posted by hemaDoc View Post
hi ,
good morning Guys
i want to know how to modify max gold in item !
For Ex max gold in most servers = 2 billion Gold
in play Conquer max Gold 9b and 900m !
i want to make it 300 Billion !
How Modify it @ :)
Thanks for attention
on last version(if i remember right... when they add windwalker) ... the gold is ulong(64 bits), or use "checked" [Only registered and activated users can see links. Click Here To Register...]
07/03/2018 22:24 Xijezu#13
Quote:
no any one give me right sloution !
They told you how it's done, you just need to implement it itself.
If you except us to give you everything on a silver plate for free, you're looking in the wrong section.
Asking for help is one thing, asking for the literal fix/implementation so you can copy'n'paste is something other.

I didn't expect the thread to escalate that much, but since it's more or less solved anyway:
#closed.