-
GlassNhearts started following
Samiofficial - Sami Soul Wars
- Sami Soul Wars
- Sami Soul Wars
-
Sami Soul Wars
activated a 24 hour trial goodluck
- [Stable] OSBot 2.7.40
-
- Sami Scripts ✨ Custom OSBot Scripts 🛡️ Elite Quality Scripts 🎯 Lowest Ban Rates 🛠️ Around-the-Clock Support 🕒 Personalized for You ✍️ Private & Secure 🔒
-
Sami Soul Wars
you have to find a clan where people dont kill each other 320 is full ofplayer killers thats why i warned dm me on discord
- Sami Scripts ✨ Custom OSBot Scripts 🛡️ Elite Quality Scripts 🎯 Lowest Ban Rates 🛠️ Around-the-Clock Support 🕒 Personalized for You ✍️ Private & Secure 🔒
- Sami Scripts ✨ Custom OSBot Scripts 🛡️ Elite Quality Scripts 🎯 Lowest Ban Rates 🛠️ Around-the-Clock Support 🕒 Personalized for You ✍️ Private & Secure 🔒
-
Sami AIO Air Orber
Sami AIO Air Orber Most Advanced Air Orbing Script Script State: Beta Script Version: 1.1 Script Description: Sami's AIO Air Orbing Script is a highly advanced, fully automated solution for making profit through air orbing. The script supports the entire air orbing process, including dynamic Grand Exchange restocking. Start the script at the Grand Exchange with GP, and the script will take care of the rest, ensuring maximum efficiency and a hands-free experience. Features (Added) Instructions! Discord Webhook Support! Some Progress Reports!
-
Sami Soul Wars
can you dm me logs and a screen recording if possible
- Sami Soul Wars
-
Sami Soul Wars
Sure I can do this
-
Sami Soul Wars
activated gl no it requires 40 cmb
-
[Open Source] Sami Tele Alch
Sami Tele Alch import org.osbot.rs07.api.ui.Spells; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import org.osbot.rs07.api.model.Item; import org.osbot.rs07.utility.ConditionalSleep; @ScriptManifest(name = "Sami Tele Alch", author = "Sami", version = 1.0, info = "", logo = "") public class Main extends Script { private static final int NATURE_RUNE = 561; private static final int FIRE_RUNE = 554; private static final int ITEM_TO_ALCH = 892; @Override public void onStart() { log("Sami Tele Alch Script Started"); } @Override public int onLoop() throws InterruptedException { if(!myPlayer().isAnimating()) { if (getMagic().canCast(Spells.NormalSpells.CAMELOT_TELEPORT)) { getMagic().castSpell(Spells.NormalSpells.CAMELOT_TELEPORT); sleep(300); } } if (canAlch()) { if (getMagic().castSpell(Spells.NormalSpells.HIGH_LEVEL_ALCHEMY)) { sleep(300); new ConditionalSleep(5000){ @Override public boolean condition() { return myPlayer().getAnimation() == -1; } }.sleep(); Item item = getInventory().getItem(ITEM_TO_ALCH); if (item != null) { item.interact("Cast"); } } } return 600; } private boolean canAlch() { return getInventory().contains(NATURE_RUNE) && (getInventory().contains(FIRE_RUNE) || isUsingFireStaff()) && getInventory().contains(ITEM_TO_ALCH); } private boolean isUsingFireStaff() { return getEquipment().isWieldingWeaponThatContains("Staff of fire"); } @Override public void onExit() { log("Sami Tele Alch Script Stopped"); } }