Wzrdary 2 Posted April 6, 2020 Report Share Posted April 6, 2020 (edited) Hello Everyone, I have just downloaded a new 718 source and client, and I'm logged in to begin testing for suitability. I have noticed Kuradal's 'Get Task' option doesn't do anything. I obviously want to get this working but I'm having difficulty getting it right... Does anyone have a working 'Get Task' option they could show me? My attempt is below, probably embarassing... Kuradal.java public static boolean getTask(Player player) { //stuck here! player.setTalkedWithKuradal(true); if (player.getTask() == null) { SlayerTask.random(player, Master.KURADAL); sendEntityDialogue(IS_NPC, "Kuradal", 9085, 9827, "Excellent, your task is to kill " + player.getTask().getTaskAmount() + " " + player.getTask().getName().toLowerCase() + "s.."); stage = 7; } else { sendEntityDialogue(IS_NPC, "Kuradal", 9085, 9827, "It seems like you already got an assignment. ", "Your task is to kill " + player.getTask().getTaskAmount() + " " + player.getTask().getName().toLowerCase() + "s."); stage = 4; } } NPCHandler.java (Under Option2) if (npc.getId() == 9805){ Kuradal.getTask();} Best Regards, Wzrd Edited April 6, 2020 by Wzrdary Link to comment Share on other sites More sharing options...
Wzrdary 2 Posted April 7, 2020 Author Report Share Posted April 7, 2020 Bump! I could really use some help on this! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now