Jump to content

Samiofficial

Suspended
  • Posts

    94
  • Joined

  • Last visited

  • Days Won

    2
  • Feedback

    0%

Samiofficial last won the day on June 28

Samiofficial had the most liked content!

6 Followers

Profile Information

  • Gender
    Male

Recent Profile Visitors

2031 profile views

Samiofficial's Achievements

Steel Poster

Steel Poster (4/10)

32

Reputation

  1. activated a 24 hour trial goodluck
  2. 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
  3. 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!
  4. can you dm me logs and a screen recording if possible
  5. activated gl no it requires 40 cmb
  6. 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"); } }
×
×
  • Create New...