- Joined
- Jun 25, 2008
- Messages
- 118
- Reaction score
- 0
In MapleCharacter.Java
And replace that with
This Basically warps you out of zakum when you dc or makes you dc in pap or kerning pq or w/e Something I found while searching and thought it wasnt released and if its released please delete mods
.
Credits:
The ORIGINAL POSTER:akakori
The Maker: akakori
Edit: TESTED WORKING!
Code:
if (channelserver) {
MapleMapFactory mapFactory = ChannelServer.getInstance(client.getChannel()).getMapFactory();
ret.map = mapFactory.getMap(ret.mapid);
if (ret.map == null) { //char is on a map that doesn't exist warp it to henesys
ret.map = mapFactory.getMap(100000000);
}
MaplePortal portal = ret.map.getPortal(ret.initialSpawnPoint);
if (portal == null) {
portal = ret.map.getPortal(0); // char is on a spawnpoint that doesn't exist - select the first spawnpoint instead
ret.initialSpawnPoint = 0;
}
ret.setPosition(portal.getPosition());
And replace that with
Code:
if (channelserver) {
MapleMapFactory mapFactory = ChannelServer.getInstance(client.getChannel()).getMapFactory();
ret.map = mapFactory.getMap(ret.mapid);
if (ret.map == null) { //char is on a map that doesn't exist warp it to henesys
ret.map = mapFactory.getMap(100000000);
} else if (ret.map.getId() >= 103000800 && ret.map.getId() <= 103000805) { // KPQ
ret.map = mapFactory.getMap(103000890);
} else if (ret.map.getId() >= 922010000 && ret.map.getId() <= 922011000) { // LPQ
ret.map = mapFactory.getMap(922010000);
} else if (ret.map.getId() >= 809050000 && ret.map.getId() <= 809050015) { // LMPQ
ret.map = mapFactory.getMap(809050017);
} else if (ret.map.getId() >= 920010000 && ret.map.getId() <= 920011100) { // OPQ
ret.map = mapFactory.getMap(920011200);
} else if (ret.map.getId() == 280030000) { // Zakum's Altar
ret.map = mapFactory.getMap(211000000);
} else if (ret.map.getId() == 220080001) { // Origin of the Clock Tower
ret.map = mapFactory.getMap(220080000);
} else if (ret.map.getId() >= 801040001 && ret.map.getId() <= 801040100) { // Showa dungeon
ret.map = mapFactory.getMap(801040000);
} else if (ret.map.getId() >= 211041500 && ret.map.getId() <= 211042300) { // Elnath dungeon
ret.map = mapFactory.getMap(211041400);
}
This Basically warps you out of zakum when you dc or makes you dc in pap or kerning pq or w/e Something I found while searching and thought it wasnt released and if its released please delete mods

Credits:
The ORIGINAL POSTER:akakori
The Maker: akakori
Edit: TESTED WORKING!