Advertisement
Guest User

Untitled

a guest
Sep 16th, 2015
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.38 KB | None | 0 0
  1.     public static void walkingPacket(final Client player) {
  2.         if(player.playerIsFishing2 ) {
  3.         Server.getTaskScheduler().schedule(new Task(2, false) {
  4.             @Override
  5.             protected void execute() {
  6.                 stop();
  7.                 if(player.fishingCoord.equalsIgnoreCase(""+player.absX+""+player.absY+""))
  8.                     return;
  9.                 player.playerIsFishing2 =false;
  10.                 player.startAnimation(0);
  11.             }
  12.         });
  13.         }
  14.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement