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!

Auto give honor

MuP

Skilled Illusionist
Joined
Aug 10, 2008
Messages
333
Reaction score
60
How to auto give new character honor , ex : Honor rank 4 . ?
I ned to give only honor .
 
The Dinosaur
Loyal Member
Joined
Jun 29, 2008
Messages
5,028
Reaction score
999
What is so difficult about it? Just change CharDataIdx and EtcDataIdx in cabal_newFlagData_table to one of the other Idx values in the cabal_newCharData_table and cabal_newEtcData_table, or just change cabal_newCharData_table and cabal_newEtcData_table directly with the values you want.

If your server number is 24 just execute the query below on your account DB setting the Reputation to whatever honour you want to give. It might or might not work as i am simply guessing your current DB values. If you don't understand my post then you won't be able to tell me the info i need if these values are wrong anyway and there isn't much else i can do to help you understand those values unfortunately.
Code:
update cabal_newCharData_table set Reputation='99999999' where DataIdx=10
 
Upvote 0
Back
Top