Guest User

Untitled

a guest
Oct 21st, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. public void SlayerXP(int npc) {
  2. int[][] id = {{id, xp}};
  3. String[] name = {"Man","Man","Man","Man","Man","Man"};
  4. for(int i = 0; i < id.length; i++) {
  5. if(npc == id[i][0] && name[i].equals(""+NPCTASK+"")) {
  6. if(TASKAMOUNT > 0) {
  7. addSkillXP(id[i][1],18);
  8. } else {
  9. sendMessage("You've complete your task; Talk to a slayer master to recive another task.");
  10. }
  11. }
  12. }
  13. }
Add Comment
Please, Sign In to add comment