Results 1 to 3 of 3

Thread: Hunting with a Crossbow

  1. #1

    Default Hunting with a Crossbow

    Is there an alias script for hunting with a crossbow? Maybe use ;fire for the following movements?

    cock my crossbow
    wait (stance def?)
    get 1 bolt from my *
    load my bolt on my crossbow
    (stance off?)
    kneel
    fire
    wait
    stand
    stance def

  2. #2

    Default

    I wrote this one for my mechanical crossbow:

    Code:
    fput "cock my crossbow"
    waitrt?
    fput "stance defensive"
    
    fput "get 1 my bolt from my #{GameObj[UserVars.ammosack]}"
    
    if (GameObj.right_hand.noun == 'bolt')
    	fput "load my crossbow"
    	fput "kneel"
    	fput "stance offensive"
    else
    	waitrt?
            fput "stow right"
    	fput "get 1 my bolt from my #{GameObj[UserVars.ammosack]}"
    	fput "load my crossbow"
    	fput "kneel"
    	fput "stance offensive"
    end
    
    match 'loaded', 'can only hold up to three bolts!'
    match 'loaded', 'You must have your other hand free'
    match 'fire', 'You fire'
    match 'fire', 'I could not find'
    match 'fire', 'is quite dead already'
    fput "fire " + script.vars[1]
    matchwait
    
    loaded:
    if GameObj.right_hand.noun == 'bolt'
            fput "put bolt in bolt in my #{GameObj[UserVars.ammosack]}"
            fput "fire " + script.vars[1]
    else
            fput "stow right"
            fput "fire " + script.vars[1]
    end
    
    fire:
    waitrt?
    waitrt?
    fput "stand"
    fput "stance defensive"
    Usage - ;bolt <target>

  3. #3

    Default

    Thank you. I'll tinker with it and see how it goes.

Similar Threads

  1. black alloy sighted crossbow ( good hand crossbow project)
    By neimanz1 in forum Flat Priced Sales
    Replies: 1
    Last Post: 08-20-2020, 02:53 PM
  2. Replies: 4
    Last Post: 07-10-2019, 01:47 PM
  3. Deep blue twin crossbow with glaes shard accents (+21, dual crossbow)
    By etambusiness in forum High-End Valuables
    Replies: 1
    Last Post: 01-24-2016, 08:22 PM
  4. Replies: 7
    Last Post: 09-09-2013, 02:20 AM
  5. Dual Heavy Crossbow or Elemental Crossbow
    By Haldrik in forum Wanted
    Replies: 2
    Last Post: 06-19-2013, 02:39 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
  •