Results 1 to 3 of 3

Thread: any 650 scripts out there?

  1. #1
    Join Date
    Apr 2017
    Location
    US
    Posts
    2,327
    Blog Entries
    1

    Default any 650 scripts out there?

    are there any 650 scripts out there that rotate between aspects automatically or any script gurus out there want to be awesome and craft one up?

    I tried this below but its painfully unintuitive and it doesn't alert me when it switchs so I routinely miss if its actually working or not:

    start:
    put incant 650
    pause 125
    put assume wolf
    pause 125
    put assume porcupine
    pause 125
    put assume wolf
    pause 125
    put assume porcupine
    pause 180
    goto start
    Discord - Arrolus#0270

    Follow my farm - Cool Story Farm on facebook and Instagram!

    Arrolus - Monk
    Aromos - Cleric

  2. #2

    Default

    Quote Originally Posted by Orthin View Post
    are there any 650 scripts out there that rotate between aspects automatically or any script gurus out there want to be awesome and craft one up?

    I tried this below but its painfully unintuitive and it doesn't alert me when it switchs so I routinely miss if its actually working or not:

    start:
    put incant 650
    pause 125
    put assume wolf
    pause 125
    put assume porcupine
    pause 125
    put assume wolf
    pause 125
    put assume porcupine
    pause 180
    goto start
    This should be pretty close.

    Code:
    debug = (script.vars[1] == "--debug") || false
    
    aspects = {
        "wolf" => 9014,
        "porcupine" => 9028
    }
    
    echo "DEBUG ON" if debug
    
    if ( !Spell[650].known? )
        echo "You don't even know 650, what are you doing?!"
        exit
    end
    
    loop{
        echo "Starting rotation" if debug
    
        ["wolf", "porcupine"].each { |name|
            echo "Assuming #{name}" if debug
            aspect_num = aspects[name]
            cd_num = aspect_num + 1
            aspect = Spell[aspect_num]
            cd = Spell[cd_num]
            
            echo "Cooldown is active!" if debug && cd.active?
    
            # Assume the current aspect in rotation
            aspect.cast if !aspect.active? && !cd.active?
            waitcastrt?
    
            while (aspect.active?)
                echo "Sleeping while #{name} is still active" if debug
                sleep 10.0
            end
        }
        echo "Rotation complete" if debug
        sleep 1.0
    }
    Last edited by Izzy; 07-30-2021 at 10:27 PM.

  3. #3
    Join Date
    Apr 2017
    Location
    US
    Posts
    2,327
    Blog Entries
    1

    Default

    Quote Originally Posted by Izzy View Post
    This should be pretty close.

    Code:
    debug = (script.vars[1] == "--debug") || false
    
    aspects = {
        "wolf" => 9014,
        "porcupine" => 9028
    }
    
    echo "DEBUG ON" if debug
    
    if ( !Spell[650].known? )
        echo "You don't even know 650, what are you doing?!"
        exit
    end
    
    loop{
        echo "Starting rotation" if debug
    
        ["wolf", "porcupine"].each { |name|
            echo "Assuming #{name}" if debug
            aspect_num = aspects[name]
            cd_num = aspect_num + 1
            aspect = Spell[aspect_num]
            cd = Spell[cd_num]
            
            echo "Cooldown is active!" if debug && cd.active?
    
            # Assume the current aspect in rotation
            aspect.cast if !aspect.active? && !cd.active?
            waitcastrt?
    
            while (aspect.active?)
                echo "Sleeping while #{name} is still active" if debug
                sleep 10.0
            end
        }
        echo "Rotation complete" if debug
        sleep 1.0
    }
    Thank you I am going to give that a try!
    Discord - Arrolus#0270

    Follow my farm - Cool Story Farm on facebook and Instagram!

    Arrolus - Monk
    Aromos - Cleric

Similar Threads

  1. MA Scripts
    By Lodyn in forum Miscellaneous Scripts
    Replies: 1
    Last Post: 12-23-2011, 05:10 PM
  2. Help with Scripts
    By jhiggs in forum Miscellaneous Scripts
    Replies: 10
    Last Post: 01-21-2009, 07:42 PM
  3. Looking for lfm scripts
    By soenchanting in forum Rogue
    Replies: 5
    Last Post: 08-11-2005, 10:07 PM
  4. LM scripts
    By AnticorRifling in forum Scripting Discussion
    Replies: 8
    Last Post: 06-25-2005, 01:49 AM
  5. Some of my most used scripts.
    By Trinitis in forum Scripting Discussion
    Replies: 22
    Last Post: 02-17-2004, 10:59 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •