Advertisement
Guest User

Untitled

a guest
Sep 20th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.78 KB | None | 0 0
  1.     public int boneSet[] = { 526, 528, 532, 534, 536, 4834, 6812};
  2.    
  3.     public int boneSetExp[] = { 5, 25, 75, 125, 175, 275, 400 };
  4.    
  5.     public int bonesExp[][] = {
  6.     {boneSet[0], boneSetExp[0]}, {boneSet[1], boneSetExp[1]},
  7.     {boneSet[2], boneSetExp[2]}, {boneSet[3], boneSetExp[3]},
  8.     {boneSet[3], boneSetExp[3]}, {boneSet[4], boneSetExp[4]},
  9.     {boneSet[5], boneSetExp[5]}, {boneSet[6], boneSetExp[6]}
  10.     };
  11.  
  12.     //For clickItem packet class:
  13.  
  14.     case cfg.bonesExp[0][0]:
  15.         c.getPA().buryBone(cfg.bonesExp[0][1], 1600, cfg.bonesExp[0][0], itemSlot);
  16.     break;
  17.            
  18.     case cfg.bonesExp[2][0]:
  19.         c.getPA().buryBone(cfg.bonesExp[2][1], 1600, cfg.bonesExp[2][0], itemSlot);
  20.     break;
  21.            
  22.     case cfg.bonesExp[3][0]:
  23.         c.getPA().buryBone(cfg.bonesExp[3][1], 1600, cfg.bonesExp[3][0], itemSlot);
  24.     break;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement