[Help] Start Off with money

I'm pretty sure in the character database, the value of gold is defaulted at 0. You could probably just change the default value to 99000000 which would be 99 Gold if I remember correctly.

The only thing is, though, that creating a new character might put in an initial value. If that's the case, altering the database won't help...
 
I changed the character database to the gold default to 99000000 but no you still start with 0 gold. That was really helpful though thanks


... Still not solved please help.
 
I'll do some searching to see if I can find anything.

But as a temp solution, you could just run a script every once in a while to update Gold values.

Code:
update characters set gold = 99000000 where gold < 1000000

That will give all characters 99 Gold who have less than 1 Gold.

You can use that while I look. I can't promise anything though, as it may not be editable.
 
I looked through everything I could... There doesn't seem to be a way to directly change the initial value of the gold. Once you create the character, the server sets the gold to 0, and there's no way to change it.

The best thing you'll be able to do is use the SQL script I gave you.

Sorry, bro :\
 
Back