Everything posted by iJodix
-
I need a new TV.
Can i have the old TV ?
-
We need a ghoul killer script
Pretty sure Khaleesi is working on one
-
A script that helps you kill zulhra
I know who can do this;
-
Am I going to die?
Depends how many of them you ate.
-
Activating Quick Prayers & Some Item advise
Prayers api; http://osbot.org/api/org/osbot/rs07/api/Prayer.html You don't have to use any widgets w/e.
-
Cook All Option?
use widgets; http://osbot.org/api/org/osbot/rs07/api/Widgets.html
-
✛ Malevolant ☛ Account Shop ☚ CHEAP & SECURE ✛ STARTER MAINS / PURES / SKILLERS
Acount #2 10M
-
Question about Mirror & Injection
Stealth == Mirror
-
✛ Malevolant ☛ Account Shop ☚ CHEAP & SECURE ✛ STARTER MAINS / PURES / SKILLERS
Account #1: 6M 07
-
OSBot-Framework
Web walker ? fok, time to leech.
-
Error bot help!
Didn't expect a thread like this from you @Gilgad
-
[Scripter Noob] Help again :P
public boolean usePleb(String action, String action2) { // action == the item it is going to select, action2 == in this case, is the ruins Entity ruins = objects.closest(action2); if (inventory.isItemSelected()) { // IF ITEM IS SELECTED if (inventory.getSelectedItemName() == action) { // IF THE SELECTED ITEM IS == action ruins.interact("Use"); } else { inventory.deselectItem(); } } else { inventory.interact("Use", action); // THIS ONE WILL SELECT THE ITEM IF ITEM IS NOT SELECTED } return true; } to use this just use; usePleb("Air talisman", "Mysterious Ruins");
-
[Zen Slayer Pro] Dev Blog
Great, hopefully you'll finish it
- need like 15-20m
-
All accounts banned
Haven't changed my ip yet, i'll do that once i feel doing it :p
-
All accounts banned
2 of my accounts got banned today. RIP But i'm already botting a new one.
-
[WIP] iWarrior [Food support] [Looting support]
The script is removed from SDN.
-
Are you Angry? Depressed? Upset? Listen.
Zzzz ...
- CameraEntityEvent
-
CameraEntityEvent
Ok, it .. kinda moves the camera ? Like few pixels .. I don't have any issues with executing the MoveMouseEvent
-
CameraEntityEvent
Oh sorry, i re-wrote the code to the thread so made a typo.
-
CameraEntityEvent
Ok so, any ideas why this doesn't want to move the camera ? NPC npc = getNpcs().closest(npcFitler); CameraEntityEvent ce = new CameraEntityEvent(npc); execute(ce);
-
What's the best way to communicate with Dialogues?
The code @Flamezzz posted is .. so wrong ..
-
What's the best way to communicate with Dialogues?
if (!dialogues.inDialogue()) { if (npc != null) { if (npc.isVisible()) { if (npc.interact("Talk-to")) { new ConditionalSleep(random(1000, 2000)) { public boolean condition() throws InterruptedException { return dialogues.inDialogue(); } }.sleep(); } } else { getCamera().toEntity(npc); } } } else { if (dialogues.isPendingOption()) { dialogues.completeDialogue("plebs4free", "plebs4free", "plebs4free","plebs4free"); sleep(random(400, 900)); } if (dialogues.isPendingContinuation()) { dialogues.clickContinue(); sleep(random(400, 900)); } }
-
What's the best way to communicate with Dialogues?
Dialogue API; http://osbot.org/api/org/osbot/rs07/api/Dialogues.html