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!

Ariant Bombs

Initiate Mage
Joined
Jul 23, 2014
Messages
7
Reaction score
0
hello, when i spawn bombs in the map, why do people dc? also, how do we fix the time duration of the bomb so the bomb can go off slower? because it's too fast.

thanks!!
 
Initiate Mage
Joined
Mar 29, 2014
Messages
91
Reaction score
8
Be more detailed with the first question.
To fix the time before the bomb explodes, look at MapleMap.java (one of the spawn methods in there has a check for a mob id for a bomb)
 
Upvote 0
Initiate Mage
Joined
Jul 23, 2014
Messages
7
Reaction score
0
Be more detailed with the first question.
To fix the time before the bomb explodes, look at MapleMap.java (one of the spawn methods in there has a check for a mob id for a bomb)


@Override public void sendPackets(MapleClient c) {
c.getSession().write(MaplePacketCreator.spawnMonster(monster, true));
if (monster.getId() == 9300166 || monster.getId() == 8810026) {
TimerManager.getInstance().schedule(new Runnable() {


@Override
public void run() {
killMonster(monster, (MapleCharacter) getAllPlayer().get(0), false, false, 4);
}
}, 300 + Randomizer.getInstance().nextInt(500));
}

What do i change? 0.0
 
Upvote 0
Back
Top