XenoBot Forums - Powered by vBulletin

User Tag List

Page 8 of 33 FirstFirst ... 67891018 ... LastLast
Results 71 to 80 of 324

Thread: Knight Project by Shadow Wolf

  1. #71
    Xerilo's Avatar
    Join Date
    Jul 2012
    Posts
    214
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I reallllyyy want to start the world with you !
    im completely new to this bot and dont have a clue what im doing but i want to start a new world other than the one im on ... pm me you world if you dont mind.

  2. #72
    Senior Member Secret's Avatar
    Join Date
    Jul 2012
    Location
    Sweden
    Posts
    765
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    How do u train on the mage? I guess its fishing food and uses exura? also what weapon u use to train on the mage? knife full def?

  3. #73
    Senior Member Shadow Wolf's Avatar
    Join Date
    Jan 2012
    Location
    ⊰ New Zealand ⊱
    Posts
    657
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Xerilo View Post
    I reallllyyy want to start the world with you !
    im completely new to this bot and dont have a clue what im doing but i want to start a new world other than the one im on ... pm me you world if you dont mind.
    I wouldn't recomend this world it's really aggressive, but come to Valoria myself and some other people from here have started there. I just hit main like 5mins ago.

    Quote Originally Posted by Secret View Post
    How do u train on the mage? I guess its fishing food and uses exura? also what weapon u use to train on the mage? knife full def?
    You got it bro and then you just adjust the mage's Eq so you hit between 1-3max on him/her.
    ~ Shadow Wolf

    ~ A friend will bail you out of jail, but a true friend would be right there beside you saying: "DAMN that was fun!" ~


  4. #74
    Senior Member Secret's Avatar
    Join Date
    Jul 2012
    Location
    Sweden
    Posts
    765
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Shadow Wolf View Post
    You got it bro and then you just adjust the mage's Eq so you hit between 1-3max on him/her.
    ~ Shadow Wolf
    Thanks.

    Skills atm? I'll follow you as much as I can.

  5. #75
    Senior Member Shadow Wolf's Avatar
    Join Date
    Jan 2012
    Location
    ⊰ New Zealand ⊱
    Posts
    657
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Secret View Post
    Thanks.

    Skills atm? I'll follow you as much as I can.
    Thanks.
    Skilling is really starting to slow down now, no idea how I used to have the patience to this back in the day hahaha.
    Sword Skill 65

    Quoted from: pskonejott
    Knight to raise melee from 65, 3% to 75 = 78h, 36m, 6s.

    ~ A friend will bail you out of jail, but a true friend would be right there beside you saying: "DAMN that was fun!" ~


  6. #76
    Senior Member Secret's Avatar
    Join Date
    Jul 2012
    Location
    Sweden
    Posts
    765
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Ok a new question: What fishing script do u use? I might wanna try this training method someday hope its ok!

  7. #77
    Senior Member Shadow Wolf's Avatar
    Join Date
    Jan 2012
    Location
    ⊰ New Zealand ⊱
    Posts
    657
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Secret View Post
    Ok a new question: What fishing script do u use? I might wanna try this training method someday hope its ok!
    Ofcourse! hahaha
    We need to get the community on XenoForums up and running.
    I got this fishing script from @Blab Scripts.

    [CODE=lua]--*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
    -- DO NOT CHANGE
    --*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
    function fish(maxFish)
    if (Self.ItemCount(3578) <= maxFish) or (maxFish == 0) then
    for x = -7, 7, 1 do
    for y = -5, 5, 1 do
    Self.UseItemWithGround(3483, Self.Position().x + x, Self.Position().y + y, Self.Position().z)
    wait(1200,1800)
    end
    end
    else
    wait(5000,10000)
    end
    end




    --*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
    -- CHANGE BELOW HERE
    --*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
    if Self.ItemCount(3483) >= 1 then
    displayInformationMessage("Executing Blab's Fishing script.")
    while(true) do
    --*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
    -- Put how many fish you want to catch. EXAMPLE: fish(NUMBER)
    -- If you do not want to stop put - fish(0)
    --*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
    fish(10)
    end
    else
    displayInformationMessage("Blab says you need a fishing rod dummy.")
    end[/CODE]

    ~ A friend will bail you out of jail, but a true friend would be right there beside you saying: "DAMN that was fun!" ~


  8. #78
    Senior Member Secret's Avatar
    Join Date
    Jul 2012
    Location
    Sweden
    Posts
    765
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Shadow Wolf View Post
    Ofcourse! hahaha
    We need to get the community on XenoForums up and running.
    I got this fishing script from @Blab Scripts.

    [CODE=lua]--*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
    -- DO NOT CHANGE
    --*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
    function fish(maxFish)
    if (Self.ItemCount(3578) <= maxFish) or (maxFish == 0) then
    for x = -7, 7, 1 do
    for y = -5, 5, 1 do
    Self.UseItemWithGround(3483, Self.Position().x + x, Self.Position().y + y, Self.Position().z)
    wait(1200,1800)
    end
    end
    else
    wait(5000,10000)
    end
    end




    --*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
    -- CHANGE BELOW HERE
    --*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
    if Self.ItemCount(3483) >= 1 then
    displayInformationMessage("Executing Blab's Fishing script.")
    while(true) do
    --*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
    -- Put how many fish you want to catch. EXAMPLE: fish(NUMBER)
    -- If you do not want to stop put - fish(0)
    --*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
    fish(10)
    end
    else
    displayInformationMessage("Blab says you need a fishing rod dummy.")
    end[/CODE]
    Thanks! Will this fish on different spots at the water? And how many worms should I bring and will the script continue to run all the time until I got worms?

  9. #79
    Senior Member Shadow Wolf's Avatar
    Join Date
    Jan 2012
    Location
    ⊰ New Zealand ⊱
    Posts
    657
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    @Secret
    It will try to fish every square on the screen when you have less than 10fish on you. It will continue to repeat that process until you have over 10 fish.
    So when you have a high fishing skill you might end up with say 20+ fish. Then it just wont fish again until you have less than 10 fish again.
    Does that make sense?
    And I usually try to have at least 600 worms on me overnight. You wont use it all, but I'm to lazy to work out how many you need.

    ~ A friend will bail you out of jail, but a true friend would be right there beside you saying: "DAMN that was fun!" ~


  10. #80
    Senior Member Shadow Wolf's Avatar
    Join Date
    Jan 2012
    Location
    ⊰ New Zealand ⊱
    Posts
    657
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Sword Skill 67


    ~ A friend will bail you out of jail, but a true friend would be right there beside you saying: "DAMN that was fun!" ~


Posting Permissions

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