Added player action flood protection at RequestExEnchantSkill.
This commit is contained in:
parent
2d2dfa224c
commit
84b58491bc
@ -75,6 +75,11 @@ public class RequestExEnchantSkill implements IClientIncomingPacket
|
||||
@Override
|
||||
public void run(GameClient client)
|
||||
{
|
||||
if (!client.getFloodProtectors().canPerformPlayerAction())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if ((_skillId <= 0) || (_skillLevel <= 0) || (_skillSubLevel < 0))
|
||||
{
|
||||
return;
|
||||
|
@ -71,6 +71,11 @@ public class RequestExEnchantSkill implements IClientIncomingPacket
|
||||
@Override
|
||||
public void run(GameClient client)
|
||||
{
|
||||
if (!client.getFloodProtectors().canPerformPlayerAction())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if ((_skillId <= 0) || (_skillLevel <= 0) || (_skillSubLevel < 0))
|
||||
{
|
||||
return;
|
||||
|
@ -71,6 +71,11 @@ public class RequestExEnchantSkill implements IClientIncomingPacket
|
||||
@Override
|
||||
public void run(GameClient client)
|
||||
{
|
||||
if (!client.getFloodProtectors().canPerformPlayerAction())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if ((_skillId <= 0) || (_skillLevel <= 0) || (_skillSubLevel < 0))
|
||||
{
|
||||
return;
|
||||
|
@ -71,6 +71,11 @@ public class RequestExEnchantSkill implements IClientIncomingPacket
|
||||
@Override
|
||||
public void run(GameClient client)
|
||||
{
|
||||
if (!client.getFloodProtectors().canPerformPlayerAction())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if ((_skillId <= 0) || (_skillLevel <= 0) || (_skillSubLevel < 0))
|
||||
{
|
||||
return;
|
||||
|
@ -71,6 +71,11 @@ public class RequestExEnchantSkill implements IClientIncomingPacket
|
||||
@Override
|
||||
public void run(GameClient client)
|
||||
{
|
||||
if (!client.getFloodProtectors().canPerformPlayerAction())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if ((_skillId <= 0) || (_skillLevel <= 0) || (_skillSubLevel < 0))
|
||||
{
|
||||
return;
|
||||
|
@ -71,6 +71,11 @@ public class RequestExEnchantSkill implements IClientIncomingPacket
|
||||
@Override
|
||||
public void run(GameClient client)
|
||||
{
|
||||
if (!client.getFloodProtectors().canPerformPlayerAction())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if ((_skillId <= 0) || (_skillLevel <= 0) || (_skillSubLevel < 0))
|
||||
{
|
||||
return;
|
||||
|
@ -71,6 +71,11 @@ public class RequestExEnchantSkill implements IClientIncomingPacket
|
||||
@Override
|
||||
public void run(GameClient client)
|
||||
{
|
||||
if (!client.getFloodProtectors().canPerformPlayerAction())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if ((_skillId <= 0) || (_skillLevel <= 0) || (_skillSubLevel < 0))
|
||||
{
|
||||
return;
|
||||
|
@ -71,6 +71,11 @@ public class RequestExEnchantSkill implements IClientIncomingPacket
|
||||
@Override
|
||||
public void run(GameClient client)
|
||||
{
|
||||
if (!client.getFloodProtectors().canPerformPlayerAction())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if ((_skillId <= 0) || (_skillLevel <= 0) || (_skillSubLevel < 0))
|
||||
{
|
||||
return;
|
||||
|
@ -71,6 +71,11 @@ public class RequestExEnchantSkill implements IClientIncomingPacket
|
||||
@Override
|
||||
public void run(GameClient client)
|
||||
{
|
||||
if (!client.getFloodProtectors().canPerformPlayerAction())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if ((_skillId <= 0) || (_skillLevel <= 0) || (_skillSubLevel < 0))
|
||||
{
|
||||
return;
|
||||
|
@ -71,6 +71,11 @@ public class RequestExEnchantSkill implements IClientIncomingPacket
|
||||
@Override
|
||||
public void run(GameClient client)
|
||||
{
|
||||
if (!client.getFloodProtectors().canPerformPlayerAction())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if ((_skillId <= 0) || (_skillLevel <= 0) || (_skillSubLevel < 0))
|
||||
{
|
||||
return;
|
||||
|
@ -71,6 +71,11 @@ public class RequestExEnchantSkill implements IClientIncomingPacket
|
||||
@Override
|
||||
public void run(GameClient client)
|
||||
{
|
||||
if (!client.getFloodProtectors().canPerformPlayerAction())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if ((_skillId <= 0) || (_skillLevel <= 0) || (_skillSubLevel < 0))
|
||||
{
|
||||
return;
|
||||
|
@ -58,6 +58,11 @@ public class RequestExEnchantSkill implements IClientIncomingPacket
|
||||
@Override
|
||||
public void run(GameClient client)
|
||||
{
|
||||
if (!client.getFloodProtectors().canPerformPlayerAction())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
final Player player = client.getPlayer();
|
||||
if (player == null)
|
||||
{
|
||||
|
@ -58,6 +58,11 @@ public class RequestExEnchantSkill implements IClientIncomingPacket
|
||||
@Override
|
||||
public void run(GameClient client)
|
||||
{
|
||||
if (!client.getFloodProtectors().canPerformPlayerAction())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
final Player player = client.getPlayer();
|
||||
if (player == null)
|
||||
{
|
||||
|
@ -61,6 +61,11 @@ public class RequestExEnchantSkill implements IClientIncomingPacket
|
||||
@Override
|
||||
public void run(GameClient client)
|
||||
{
|
||||
if (!client.getFloodProtectors().canPerformPlayerAction())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if ((_skillId <= 0) || (_skillLevel <= 0))
|
||||
{
|
||||
return;
|
||||
|
@ -61,6 +61,11 @@ public class RequestExEnchantSkill implements IClientIncomingPacket
|
||||
@Override
|
||||
public void run(GameClient client)
|
||||
{
|
||||
if (!client.getFloodProtectors().canPerformPlayerAction())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if ((_skillId <= 0) || (_skillLevel <= 0))
|
||||
{
|
||||
return;
|
||||
|
@ -71,6 +71,11 @@ public class RequestExEnchantSkill implements IClientIncomingPacket
|
||||
@Override
|
||||
public void run(GameClient client)
|
||||
{
|
||||
if (!client.getFloodProtectors().canPerformPlayerAction())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if ((_skillId <= 0) || (_skillLevel <= 0) || (_skillSubLevel < 0))
|
||||
{
|
||||
return;
|
||||
|
@ -71,6 +71,11 @@ public class RequestExEnchantSkill implements IClientIncomingPacket
|
||||
@Override
|
||||
public void run(GameClient client)
|
||||
{
|
||||
if (!client.getFloodProtectors().canPerformPlayerAction())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if ((_skillId <= 0) || (_skillLevel <= 0) || (_skillSubLevel < 0))
|
||||
{
|
||||
return;
|
||||
|
@ -71,6 +71,11 @@ public class RequestExEnchantSkill implements IClientIncomingPacket
|
||||
@Override
|
||||
public void run(GameClient client)
|
||||
{
|
||||
if (!client.getFloodProtectors().canPerformPlayerAction())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if ((_skillId <= 0) || (_skillLevel <= 0) || (_skillSubLevel < 0))
|
||||
{
|
||||
return;
|
||||
|
@ -71,6 +71,11 @@ public class RequestExEnchantSkill implements IClientIncomingPacket
|
||||
@Override
|
||||
public void run(GameClient client)
|
||||
{
|
||||
if (!client.getFloodProtectors().canPerformPlayerAction())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if ((_skillId <= 0) || (_skillLevel <= 0) || (_skillSubLevel < 0))
|
||||
{
|
||||
return;
|
||||
|
@ -71,6 +71,11 @@ public class RequestExEnchantSkill implements IClientIncomingPacket
|
||||
@Override
|
||||
public void run(GameClient client)
|
||||
{
|
||||
if (!client.getFloodProtectors().canPerformPlayerAction())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if ((_skillId <= 0) || (_skillLevel <= 0) || (_skillSubLevel < 0))
|
||||
{
|
||||
return;
|
||||
|
@ -70,6 +70,11 @@ public class RequestExEnchantSkill implements IClientIncomingPacket
|
||||
@Override
|
||||
public void run(GameClient client)
|
||||
{
|
||||
if (!client.getFloodProtectors().canPerformPlayerAction())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if ((_skillId <= 0) || (_skillLevel <= 0) || (_skillSubLevel < 0))
|
||||
{
|
||||
return;
|
||||
|
@ -71,6 +71,11 @@ public class RequestExEnchantSkill implements IClientIncomingPacket
|
||||
@Override
|
||||
public void run(GameClient client)
|
||||
{
|
||||
if (!client.getFloodProtectors().canPerformPlayerAction())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if ((_skillId <= 0) || (_skillLevel <= 0) || (_skillSubLevel < 0))
|
||||
{
|
||||
return;
|
||||
|
@ -70,6 +70,11 @@ public class RequestExEnchantSkill implements IClientIncomingPacket
|
||||
@Override
|
||||
public void run(GameClient client)
|
||||
{
|
||||
if (!client.getFloodProtectors().canPerformPlayerAction())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if ((_skillId <= 0) || (_skillLevel <= 0) || (_skillSubLevel < 0))
|
||||
{
|
||||
return;
|
||||
|
@ -70,6 +70,11 @@ public class RequestExEnchantSkill implements IClientIncomingPacket
|
||||
@Override
|
||||
public void run(GameClient client)
|
||||
{
|
||||
if (!client.getFloodProtectors().canPerformPlayerAction())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if ((_skillId <= 0) || (_skillLevel <= 0) || (_skillSubLevel < 0))
|
||||
{
|
||||
return;
|
||||
|
@ -70,6 +70,11 @@ public class RequestExEnchantSkill implements IClientIncomingPacket
|
||||
@Override
|
||||
public void run(GameClient client)
|
||||
{
|
||||
if (!client.getFloodProtectors().canPerformPlayerAction())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if ((_skillId <= 0) || (_skillLevel <= 0) || (_skillSubLevel < 0))
|
||||
{
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user