XenoBot Forums - Powered by vBulletin

User Tag List

Results 1 to 6 of 6

Thread: Diamond Arrow Maker for RP

  1. #1

    Join Date
    Mar 2020
    Posts
    1
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Diamond Arrow Maker for RP

    I'm wondering if someone has written a script to make diamond arrows on an RP when say they are below 500? I'm playing an OT where they don't expire and you can make them back-to-back. If not, any chance anyone can write a script to make it when diamond arrows are under 500?

  2. #2

    Join Date
    Mar 2020
    Location
    Philippines
    Posts
    1
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Module.New('CastSpell', function()
    Self.Cast('exevo gran con hur', 1000) -- Spell to cast, and mana needed for cast it.
    Moduleelay(60000) -- Seconds to cast the spell.
    wait(60000)
    end)

  3. #3

    Join Date
    Feb 2017
    Posts
    4
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by rodrigoliveirap View Post
    Module.New('CastSpell', function()
    Self.Cast('exevo gran con hur', 1000) -- Spell to cast, and mana needed for cast it.
    Moduleelay(60000) -- Seconds to cast the spell.
    wait(60000)
    end)
    how to put it to do if you have less than 500 arrows?

  4. #4

    Join Date
    Aug 2020
    Posts
    4
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    its make arrow when 10 diamond arrow left

    while true do

    if (Self.CanCastSpell("exevo gran con hur")) and (Self.ItemCount(25757) < 10) then
    Self.Say("exevo gran con hur")
    elseif Self.Ammo().id == 0 and (Self.ItemCount(25757) > 0) then
    Self.Equip(25757, "ammo", 100) -- Special Ammo
    end
    wait(200,600)
    end

  5. #5

    Join Date
    Apr 2018
    Posts
    1
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Heishen View Post
    its make arrow when 10 diamond arrow left

    while true do

    if (Self.CanCastSpell("exevo gran con hur")) and (Self.ItemCount(25757) < 10) then
    Self.Say("exevo gran con hur")
    elseif Self.Ammo().id == 0 and (Self.ItemCount(25757) > 0) then
    Self.Equip(25757, "ammo", 100) -- Special Ammo
    end
    wait(200,600)
    end


    XenoScript Error:
    Script: Diamond Arrow.lua
    Line #: 7
    Chunk: C:?Users?norse?DOCUME?1?XenoBot?Scripts??DIAMON?1. LUA
    Error: '<eof>' expected near 'end'
    This is an error with user-input and should not be reported as a bug with XenoBot.


    Can you help me with it ??
    I need to use script but I must put my ammo into "quiver" not in ammo slot. HELP

  6. #6

    Join Date
    Apr 2021
    Posts
    1
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    then?

Posting Permissions

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