[FONT=Trebuchet MS][CENTER]
Hello everyone!
Mistex was a server that I hosted back in 2014. It was online for a long time under continuous development. I don’t believe that there are currently any dupes and major game breaking bugs. Chex and I decided to release this as we don’t have any use for this anymore.
After running the source for the first time in two years some content stop functioning and we were forced to disable it. This includes bank tabs (banking works fine tho), prestiges and perks.
[/CENTER]
I would like to also mention that this source was developed back in 2014 when our knowledge of Java was very limited. 100% of the code you will see can be improved in so many ways. This was one of our learning experiences.
Credits:
If you enjoy this release please give some love to the following people!
[ul][]Me
[]Chex
[]Zion
[]Bigshot[/ul]
Media:
[SPOILER=Media]
![](http://i.imgur.com/1HLZwZl.png)
![](http://i.imgur.com/bcc1Lhy.png)
![](http://i.imgur.com/TbcNaKr.png)
![](http://i.imgur.com/PtgFfIm.png)
![](http://i.imgur.com/qKk0aYh.png)
[/SPOILER]
Downloads:
Client: https://mega.nz/#!vZNFTAwS!X8-3ApkbZoIANOapb-aRTk2EXWQp9q_UZhGIK9qwtdQ
Source: https://mega.nz/#!7ENUHKCZ!QM0j0ThytygIQ7svD1tFGTCwfHfcldSQH1EuqOQTEdY
Cache: https://mega.nz/#!edNCTL6B!lxDQzCXRGDbD9HyOBG4DlHg5Pk1bWfgXmppIL353_AM
Fixes:
[SPOILER=Fixes]
[SPOILER=Bank Saving]
Open PlayerSave.Java and search for “case 7”. Replace the whole case statement with:
case 7:
if (token.equals("character-bank")) {
p.getBank().getTab(0).addItem(Integer.parseInt(token3[1]), Integer.parseInt(token3[2]));
}
break;
Then search for “Bank.TABS” and replace everything with this:
List<BankItem> bankItems = p.getBank().getTab(0).getItems();
for (int itemIndex = 0; itemIndex < bankItems.size(); itemIndex++) {
BankItem bankItem = bankItems.get(itemIndex);
if (bankItem.getID() > 0) {
String bankToken = "character-bank" + ("") + " = ";
characterfile.write(bankToken, 0, bankToken.length());
characterfile.write(Integer.toString(itemIndex), 0, Integer.toString(itemIndex).length());
characterfile.write(" ", 0, 1);
characterfile.write(Integer.toString(bankItem.getID()), 0, Integer.toString(bankItem.getID()).length());
characterfile.write(" ", 0, 1);
characterfile.write(Integer.toString(bankItem.getAmount()), 0, Integer.toString(bankItem.getAmount()).length());
characterfile.newLine();
}
}
[/SPOILER]
[/SPOILER]