-
Posts
6 -
Joined
-
Last visited
About tmp


Recent Profile Visitors
561 profile views
tmp's Achievements
-
Hi, I've fixed it. Have to wait for SDN to approve latest version. New version should be on SDN by tomorrow or hopefully earlier.
-
Will fix it tonight
-
z10n reacted to a post in a topic: [FREE] tmp's Ten QP - No Requirements!
-
Bonfire reacted to a post in a topic: [FREE] tmp's Ten QP - No Requirements!
-
Hi, thanks for letting me know. About the Father Aerick interaction. Did the bot get stuck after starting the quest? And did you have to manually lead it to next part of the quest?
-
Glad to hear, cheers!
-
tmp reacted to a post in a topic: [FREE] tmp's Ten QP - No Requirements!
-
tmp started following [FREE] tmp's Ten QP - No Requirements!
-
tmp's Ten QP Completes three different quests to reach 10 Quest Points. Takes ~30 minutes to complete all three quests. Start the script near quest start. (Check list below for quest order) Make sure you don't start the script at the Lumbridge bank! Completes quests in the following order: Restless Ghost Ernest the Chicken Romeo and Juliet Features: Avoids wizards during Romeo and Juliet Will continue quests even if they are already started Logs out when all three quests are completed Requirements: None. Please report any bugs/issues using the following format: 1. Summary 2. Steps to reproduce 3. Expected results 4. Actual results
-
tmp changed their profile photo
-
I have this script with two if statements and I need one to override the other asap when it happens The problem im having is that when eatFood() function is happening, it cant execute anything inside the other if -statement. e.g. if the bot is currently eating food, I need it to stop eating and skip to getting the animation of the NPC When the eatFood() is over, the animation has already ended, and it skips the getAnimation if (xNPC != null) { if (context.getCombat().getHealthPercent() <= 70) { eatFood(); } else if (xNPC.getAnimation == 1000) { //Do something important stuff } } private void eatFood() { Item food = context.getInventory().get(item -> item != null && item.getName().contains("Shark")); if (food != null) { food.interact("Eat"); sleepUntil(() -> context.getCombat().getHealthPercent() > 70, 1500); } } I'd appreciate if you guys would guide me towards right path