who is hagie?
who is hagie?
any chance we can get a repack out of it? also the server files are gone, please reupload
Chances are no for the repack, because it uses MSSQL and as far as i know there isn't a portable MSSQL server solution.
send me server files please
The server uses ZH-TW or ZH-TW-X-GM.
zh-tw-x-gm\Bin\heroesContents.db3 (SQLite database file)
in this file there is a table called FeatureMatrix
I modified values for ZH-TW and ZH-TW-X-GM (like 500% exp, 500% ap, etc) and it worked.
So this server should work with zh-TW client
You need old client posted in this thread. or check the "[Tutorial] Mabinogi Heroes Setup" thread in Tutorial section of Vindictus
some1 know maybe how to edit characters lvls on db?
UPDATE TOP (1) [heroes].[dbo].[CharacterInfo]
SET [Level] = '1',
[Exp] = '0',
[AP] = '0',
[IsPremium] = '0'
WHERE
[Name] = N'NameOfCharacter';
Level = level of character (never used it)
Exp = exp of character (i used this. because there will be no chance to break any thing that occurs when character level ups) (just do any quest in game then you will get all the level ups with the exp you have)
e.g.
UPDATE TOP (1) [heroes].[dbo].[CharacterInfo]
SET [Exp] = '50000000'
WHERE
[Name] = N'jasdev';
AP = the amount of AP your character has (there is no AP limit AFAIK)
(used navicat to generate this query)
Last edited by jasdev; 06-07-16 at 02:45 PM.