Package l2p.gameserver.serverpackets

Examples of l2p.gameserver.serverpackets.ExFishingStartCombat


    {
      _deceptiveMode = 0;
      lureType = isNoob ? 0 : 1;
    }
    _mode = Rnd.chance(20) ? 1 : 0;
    ExFishingStartCombat efsc = new ExFishingStartCombat(fisher, _time, _fishMaxHP, _mode, lureType, _deceptiveMode);
    fisher.broadcastPacket(efsc);
    // Succeeded in getting a bite
    fisher.sendPacket(Msg.SUCCEEDED_IN_GETTING_A_BITE);
    if(_fishAItask == null)
    {
View Full Code Here

TOP

Related Classes of l2p.gameserver.serverpackets.ExFishingStartCombat

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.