How can i edit my character on season 8?
How can i edit my character on season 8?
You can use query.
to check columnsCode:Select * from character
and use
to edit your characterCode:Update character set colums = .... where name='name character'
eg: if you want to add 2 level for character Admin, you can run query
Code:Update character set cLevel = cLevel + 2 where name='Admin'
Why not using the MuMaker? or some editor from the files you've got?