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!

[v145] Acernis (Astral re-pack)

Newbie Spellweaver
Joined
Jun 22, 2016
Messages
76
Reaction score
8
Comment removed.
 
Last edited:
Junior Spellweaver
Joined
Jul 25, 2015
Messages
188
Reaction score
25
You should've a Hshield Bypass for v14x :) and make sure you grabbing Hshield bypass to click this link
 
Newbie Spellweaver
Joined
Jun 22, 2016
Messages
76
Reaction score
8
Comment removed.
 
Last edited:
Newbie Spellweaver
Joined
Jun 22, 2016
Messages
76
Reaction score
8
Comment removed.
 
Last edited:
Newbie Spellweaver
Joined
Jun 22, 2016
Messages
76
Reaction score
8
Comment removed.
 
Last edited:
Newbie Spellweaver
Joined
Dec 11, 2011
Messages
37
Reaction score
0
When I click Cash Shop


loginFail - [v145] Acernis (Astral re-pack) - RaGEZONE Forums



How to fix it
 

Attachments

You must be registered for see attachments list
Elite Diviner
Joined
May 4, 2011
Messages
491
Reaction score
105
I already tried that and i still cant see other people damage skins

Do you even have the part in spmo for it to work? .-. that op code should be 100% correct(I'm using it in a 145 source.), quite a few op codes didn't change at all from 145 > 146

Find this in cfield
MapleQuestStatus stat = chr.getQuestNoAdd(MapleQuest.getInstance(124000));
mplew.writeInt(stat != null && stat.getCustomData() != null ? Integer.parseInt(stat.getCustomData()) : 0); //title
mplew.writeInt(0);
Change it to this
MapleQuestStatus stat = chr.getQuestNoAdd(MapleQuest.getInstance(124000));
mplew.writeInt(stat != null && stat.getCustomData() != null ? Integer.parseInt(stat.getCustomData()) : 0); //title
stat = chr.getQuestNoAdd(MapleQuest.getInstance(GameConstants.DAMAGE_SKIN));
mplew.writeInt((stat != null) && (stat.getCustomData() != null) ? Integer.valueOf(stat.getCustomData()) : 0);
 
Newbie Spellweaver
Joined
Nov 28, 2012
Messages
97
Reaction score
5
Do you even have the part in spmo for it to work? .-. that op code should be 100% correct(I'm using it in a 145 source.), quite a few op codes didn't change at all from 145 > 146

Find this in cfield
MapleQuestStatus stat = chr.getQuestNoAdd(MapleQuest.getInstance(124000));
mplew.writeInt(stat != null && stat.getCustomData() != null ? Integer.parseInt(stat.getCustomData()) : 0); //title
mplew.writeInt(0);
Change it to this
MapleQuestStatus stat = chr.getQuestNoAdd(MapleQuest.getInstance(124000));
mplew.writeInt(stat != null && stat.getCustomData() != null ? Integer.parseInt(stat.getCustomData()) : 0); //title
stat = chr.getQuestNoAdd(MapleQuest.getInstance(GameConstants.DAMAGE_SKIN));
mplew.writeInt((stat != null) && (stat.getCustomData() != null) ? Integer.valueOf(stat.getCustomData()) : 0);

Thank you very much for your help, but Yuuroido already helped me the right op code for v145 is : 0x18E
 
Newbie Spellweaver
Joined
Nov 28, 2012
Messages
97
Reaction score
5
After running the server for 24 hours this happens :
R77wFFF - [v145] Acernis (Astral re-pack) - RaGEZONE Forums



Please help :(
 

Attachments

You must be registered for see attachments list
Last edited:
Custom Title Activated
Loyal Member
Joined
Jan 18, 2010
Messages
3,109
Reaction score
1,139
After running the server for 24 hours this happens :
R77wFFF - [v145] Acernis (Astral re-pack) - RaGEZONE Forums



Please help :(

It means your DB operations were not constantly active. If you run the server and have no database operations within a long period of time, making SQL idle, your "wait_timeout" will exceed the time and stop. You can modify the mysqli.ini properties to increase the wait_timeout property and make it longer. It even says this in the error.
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Nov 28, 2012
Messages
97
Reaction score
5
It means your DB operations were not constantly active. If you run the server and have no database operations within a long period of time, making SQL idle, your "wait_timeout" will exceed the time and stop. You can modify the mysqli.ini properties to increase the wait_timeout property and make it longer. It even says this in the error.

Thank you very much Eric. :w00t:
 
Back
Top