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!

[RELEASE] Hero Online (Hero Plus) Server Files (Complete source + Database) +Tutorial

Initiate Mage
Joined
Feb 9, 2023
Messages
10
Reaction score
16
Is there a .tbl file editor that can edit lines? I want to change English to Korean, but I don't have a .tbl file editor. Please share if you have.

It is in data folder called ASOTool. You drag and drop the .tbl or .xlsx to the program window and will convert automatically (check the youtube video)

- - - Updated - - -

Hey, did you manually create the account? How is the id generated and the password? So we can create a simple registration script :)

Id is generated by the database. You can use https://passwordsgenerator.net/sha256-hash-generator/ to encrypt passwords to manual add or you can make a script.

- - - Updated - - -

Does anyone know how to answer me if it is possible to unzip most Hero Online files? If I'm not mistaken, Hero Online shares some structures with Knight Online, correct?

Is it possible to export the 3D models? Do reading resources/config files and among others?

Yes its possible, you have to look around the game files and reverse-engineer how objects are loaded.
 
Last edited:
Experienced Elementalist
Joined
Feb 21, 2012
Messages
283
Reaction score
25
It is in data folder called ASOTool. You drag and drop the .tbl or .xlsx to the program window and will convert automatically (check the youtube video)

- - - Updated - - -



Id is generated by the database. You can use https://passwordsgenerator.net/sha256-hash-generator/ to encrypt passwords to manual add or you can make a script.

- - - Updated - - -



Yes its possible, you have to look around the game files and reverse-engineer how objects are loaded.

Thanks.

For anyone that wants a quick registration page. You can improve it as you'd like. Make sure to turn on pdo_pgsql and pgsql extensions.
Download: https://mega.nz/file/dZh3DTLa#wilAsZeHBYgoEx2qelR94vli3PBsFzBi9jfjtqO7aEU
 
Joined
Jan 22, 2009
Messages
1,107
Reaction score
408
It is in data folder called ASOTool. You drag and drop the .tbl or .xlsx to the program window and will convert automatically (check the youtube video)

- - - Updated - - -



Id is generated by the database. You can use https://passwordsgenerator.net/sha256-hash-generator/ to encrypt passwords to manual add or you can make a script.

- - - Updated - - -



Yes its possible, you have to look around the game files and reverse-engineer how objects are loaded.

Thanks for stating the obvious. I was referring to whether there are any existing tools or plugins.
 
Custom Title Activated
Joined
Dec 20, 2005
Messages
2,032
Reaction score
115
Which xingcode3 bypassed you used? On magic 2711's YouTube gameplay he can even used bots on official servers lol. You might want to use his instead of the above one.

- - - Updated - - -

Thanks.

For anyone that wants a quick registration page. You can improve it as you'd like. Make sure to turn on pdo_pgsql and pgsql extensions.
Download: https://mega.nz/file/dZh3DTLa#wilAsZeHBYgoEx2qelR94vli3PBsFzBi9jfjtqO7aEU

Great share bro, I'll see if I could get this simple registration script works on my server. I thought we need to use xampp for that but it seems like Postgres already had everything needed.
 
Initiate Mage
Joined
Feb 9, 2023
Messages
10
Reaction score
16
Which xingcode3 bypassed you used? On magic 2711's YouTube gameplay he can even used bots on official servers lol. You might want to use his instead of the above one.

- - - Updated - - -



Great share bro, I'll see if I could get this simple registration script works on my server. I thought we need to use xampp for that but it seems like Postgres already had everything needed.


The bypass is not for using on official server. I posted it so it might help on development of the private server. You will get banned if you use it on official because first of all the .exe is not the same version as the usa .exe and second of all the server has a "heartbeat" communication with xigncode.

The bot i made for official does not bypass the anticheat, is not necessary because it cannot be detected.
 
Initiate Mage
Joined
Apr 10, 2020
Messages
68
Reaction score
9
The automatic hunting time is 120 minutes, but I want to change the time to unlimited. Do you know how?
 
Initiate Mage
Joined
Mar 5, 2022
Messages
31
Reaction score
13
Can you tell what help do you need? I don't have any knowledge about this game. I just test it and save for preservation.
I want to learn how to bypass exe file

- - - Updated - - -

The automatic hunting time is 120 minutes, but I want to change the time to unlimited. Do you know how?

find this function and up 7200 second ^^

func RefreshAIDs() error {
query := `update characters SET aid_time = 7200 WHERE aid_time < 7200`
_, err := pgsql_DbMap.Exec(query)
if err != nil {
return err
}

characterMutex.RLock()
allChars := funk.Values(characters).([]*Character)
characterMutex.RUnlock()
for _, c := range allChars {
if c.AidTime < 7200 {
c.AidTime = 7200
}
}

return err
}
 
Junior Spellweaver
Joined
Sep 17, 2016
Messages
109
Reaction score
37
First I looked at 2019 bypass and found that its jump over some function. Before that jump its has reference to "XIGNCODE" string, So I search string via IDA and found similar assembly code. I just do the same jump with current exe without knowing what function that I jump do. Its works because its use same code.
I don't have good knowleage to teach you, but you can search youtube for that it you struct at any point just pm me I will try to help.
 
Initiate Mage
Joined
Apr 10, 2020
Messages
68
Reaction score
9
Thank you for answer. I want to make 2-3 times the number of monsters. Is there any way? There are too few monsters.
 
Initiate Mage
Joined
Mar 5, 2022
Messages
31
Reaction score
13
MasMDCC has exceeded their stored private messages quota and cannot accept further messages until they clear some space. :((
plase send me pm youtube links and tools link thank you
 
Custom Title Activated
Joined
Dec 20, 2005
Messages
2,032
Reaction score
115
https://ibb.co/n0Xwfz1

Connected with the HD client. Haven't tested to see if it works. I will upload the client link.

https://drive.google.com/file/d/14iZeYa01MjVMGD0wkAgz-uzN_ySy8lrM/view?usp=share_link

PSI CLIENT LINK

Can you download it and compressed it on rar or 7zip and upload it to your Gdrive instead on provide us with the launcher?

It does looks quite good, the graphics looks a lot better than original hero plus graphics. Even I had Reshade on still not as good as the remastered version.
That is their PSI recent client.
 
Initiate Mage
Joined
Apr 13, 2022
Messages
10
Reaction score
2
Last edited:
Back
Top