Examples of startFishing()


Examples of com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance.startFishing()

    iu.addModifiedItem(lure2);
    player.sendPacket(iu);
    iu = null;
    // If everything else checks out, actually cast the hook and start
    // fishing... :P
    player.startFishing(x, y, z);

    //player = null;
  }

  @Override
View Full Code Here

Examples of lineage2.gameserver.model.Player.startFishing()

      player.sendPacket(Msg.NOT_ENOUGH_BAIT);
      return;
    }
    int check = Rnd.get(fishs.size());
    FishTemplate fish = fishs.get(check);
    player.startFishing(fish, lureId);
  }
}
View Full Code Here

Examples of net.aufdemrand.denizen.npc.traits.FishingTrait.startFishing()

        npc.getEquipmentTrait().set(0, new ItemStack(Material.FISHING_ROD));

        trait.setCatchPercent(percent.asInt());
        trait.setCatchType(FishingTrait.CatchType.valueOf(katch.asString().toUpperCase()));
        trait.startFishing(location);

    }
}
View Full Code Here

Examples of net.sf.l2j.gameserver.model.actor.instance.L2PcInstance.startFishing()

      iu.addModifiedItem(lure2);
      player.sendPacket(iu);
    }

    // If everything else checks out, actually cast the hook and start fishing... :P
    player.startFishing(x, y, z);

    }

    @Override
  public SkillType[] getSkillIds()
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.