• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

Disabling FJ

Status
Not open for further replies.
Newbie Spellweaver
Joined
May 9, 2013
Messages
28
Reaction score
2
How would i disable the use of FJing in a certain map?
 
Custom Title Activated
Loyal Member
Joined
Apr 29, 2008
Messages
1,297
Reaction score
509
SpecialMoveHandler / specialMove function? Look for it somewhere.
Then just make a check
Code:
if ((skillid == FJ_SKILL_ID || skillid == FJ_SKILL_ID || skillid == FJ_SKILL_ID) && c.getPlayer().getMap() == MAP_ID) {
    c.getSession().write(CWvsContext.enableActions()); OR c.getSession().write(MaplePacketCreator.enableActions());
    return
}

It depends on your version, also, depends on how many flash jump skills are there. Just add / remove accordingly.
 
Upvote 0
Newbie Spellweaver
Joined
May 9, 2013
Messages
28
Reaction score
2
Im giving it a try, ill give you a feed back
Edit: I tried to do this, but wouldnt work. Do you know a way so that if they do use fj in a map they die?
Code:
 if (skillid == 4111006 || skillid == 14101004 || skillid == 11101005 && player.getMapId() == 922010300) {   c.getSession().write(MaplePacketCreator.enableActions());
    return;
        }
 
Last edited:
Upvote 0
Custom Title Activated
Loyal Member
Joined
Jun 30, 2008
Messages
3,451
Reaction score
1,616
Flash Jump is a movement. You can only block it by making client sided checka or by removing the skill from it's skills whenever he enters the map.
 
Upvote 0
Newbie Spellweaver
Joined
May 9, 2013
Messages
28
Reaction score
2
Alright, ive added it. But it doesnt seem like it work in a certain map, but all...

Edit: Fixed it, close the thread please
 
Last edited:
Upvote 0
Status
Not open for further replies.
Back
Top