Signup Now
Results 1 to 3 of 3
  1. #1
    Wind Powered wybocenooba's Avatar
    Join Date
    Jan 2014
    Posts
    409
    Reputation
    16
    Rep Power
    21

    diamond arrows/spectral bolts tutorial xd

    I see so many ppl spamming about adding new ids to the bot but you don't really need those you can do your arrow refiller somewhat like that

    action one
    HTML Code:
    wait(500)
    npcsay("hi")
    wait(500)
    npcsay("trade")
    wait(500)
    action two
    Code:
    buyitems('diamond arrow', 100)
    waitping()
    action three
    Code:
    if itemcount(25757) <= 1500 then
    	gotolabel($wptid-1)
    end
    Last edited by wybocenooba; 01-03-2021 at 03:44 PM.

  2. #2
    Free User
    Join Date
    Nov 2016
    Posts
    34
    Reputation
    10
    Rep Power
    0
    what about move these arrows to supp bp?
    also how to check this bolts on spawn

    add to this
    --ID of mana potions to count:
    local idMpToCount = (nameManaPot)

    --Minimum amount of mana potions:
    local minMpAmount = (minManaPot)

    --ID of health potions to count:
    local idHpToCount = (nameHealthPot)

    --Minimum amount of health potions:
    local minHpAmount = (minHealthPot)

    --ID of ammunition to count:
    local idAmmoToCount = string.lower(nameAmmo)

    --Minimum amount of ammunition:
    local minAmmoAmount = (minAmmo)

    --Minimum amount of cap:
    local minCapAmount = (minCapacity)

    if ((itemcount(idMpToCount) <= minMpAmount) or (itemcount(idHpToCount) <= minHpAmount) or (itemcount(idAmmoToCount) <= minAmmoAmount) or ($cap <= minCapAmount))
    then
    gotolabel('downeast3')
    end
    Last edited by Wiesel; 01-05-2021 at 11:49 AM.

  3. #3
    Wind Powered wybocenooba's Avatar
    Join Date
    Jan 2014
    Posts
    409
    Reputation
    16
    Rep Power
    21
    well I'm using force refill and all things besides arrows are in supply list in bot
    HTML Code:
    --Refiller--
    auto(500)
    
    if $wptsection == "cave" then
       if needresupply(cap, 'ab') or itemcount(25757) < 100 then
    	gotolabel('r1', 'refil')
      end
    end

 

 

Posting Permissions

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