XenoBot Forums - Powered by vBulletin

User Tag List

Page 14 of 15 FirstFirst ... 412131415 LastLast
Results 131 to 140 of 150

Thread: [Update] XenoBot v3.0.0

  1. #131
    Lifetime Subscriber Stusse's Avatar
    Join Date
    Dec 2011
    Location
    solid-scripts.com
    Posts
    3,523
    Mentioned
    346 Post(s)
    Tagged
    1 Thread(s)
    Quote Originally Posted by DarkstaR View Post
    Are you following a creature behind a counter, or something?

    As long as you are on the creatures screen it works fine. I use it.
    Unfortunately I'm standing in range with just but an open deck between me and the Npc.

    Tried with both just the Creature.Follow to let it create new creature itself, also tried with to make a creature for the npc and follow it, niether worked for me

  2. #132

    Join Date
    Feb 2012
    Posts
    55
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey, the backpackreopener doesnt function anymore when Xeno uses it.

    Greetings

  3. #133
    Lifetime Subscriber Stusse's Avatar
    Join Date
    Dec 2011
    Location
    solid-scripts.com
    Posts
    3,523
    Mentioned
    346 Post(s)
    Tagged
    1 Thread(s)
    Quote Originally Posted by Junglemaster1992 View Post
    Hey, the backpackreopener doesnt function anymore when Xeno uses it.

    Greetings
    Depens ofcourse on which backpackresetter function your using.

    I suggest you use this:

    [code="lua"]
    --Main bp = backpack nr 1--
    BP2 = Item.GetID("Red Backpack") --<<--Your bp nr 2
    BP3 = Item.GetID("Blue Backpack")--<<--Your bp nr 3
    BP4 = Item.GetID("Golden Backpack")--<<--Your bp nr 4

    setBotEnabled(false)
    wait(800,1200)
    Self.CloseContainers()
    wait(1500,2000)
    repeat
    wait(1200)
    until (Self.UseItemFromEquipment("backpack") > 0)
    wait(1500)
    Container.GetFirst():OpenChildren(BP2, BP3, BP4)
    wait(800,1200)
    setBotEnabled(true)
    [/code]

  4. #134
    XenoBot Developer DarkstaR's Avatar
    Join Date
    Dec 2010
    Posts
    6,104
    Mentioned
    1326 Post(s)
    Tagged
    16 Thread(s)
    Quote Originally Posted by Stusse View Post
    Depens ofcourse on which backpackresetter function your using.

    I suggest you use this:

    [code="lua"]
    --Main bp = backpack nr 1--
    BP2 = Item.GetID("Red Backpack") --<<--Your bp nr 2
    BP3 = Item.GetID("Blue Backpack")--<<--Your bp nr 3
    BP4 = Item.GetID("Golden Backpack")--<<--Your bp nr 4

    setBotEnabled(false)
    wait(800,1200)
    Self.CloseContainers()
    wait(1500,2000)
    repeat
    wait(1200)
    until (Self.UseItemFromEquipment("backpack") > 0)
    wait(1500)
    Container.GetFirst():OpenChildren(BP2, BP3, BP4)
    wait(800,1200)
    setBotEnabled(true)
    [/code]
    You don't need to use Item.GetID anymore, it will do that for you.


    [code="lua"]
    Backpacks = {"Red Backpack", "Blue Backpack", "Golden Backpack"}

    setBotEnabled(false)
    Self.CloseContainers()
    repeat wait(1200) until (Self.UseItemFromEquipment("backpack") > 0)
    wait(1500)
    Container.GetFirst():OpenChildren(unpack(Backpacks ))
    setBotEnabled(true)
    [/code]

  5. #135
    Lifetime Subscriber Stusse's Avatar
    Join Date
    Dec 2011
    Location
    solid-scripts.com
    Posts
    3,523
    Mentioned
    346 Post(s)
    Tagged
    1 Thread(s)
    Quote Originally Posted by DarkstaR View Post
    You don't need to use Item.GetID anymore, it will do that for you.
    Okey, sweet!

    Anyways darkstar, do you mind writing exactly how you should write the Creature follow for lets say Npc "Darkstar"? Would be good to see what you're using that actually works, since it isnt for me

    Thansk

  6. #136
    XenoBot Developer DarkstaR's Avatar
    Join Date
    Dec 2010
    Posts
    6,104
    Mentioned
    1326 Post(s)
    Tagged
    16 Thread(s)
    Quote Originally Posted by Stusse View Post
    Okey, sweet!

    Anyways darkstar, do you mind writing exactly how you should write the Creature follow for lets say Npc "Darkstar"? Would be good to see what you're using that actually works, since it isnt for me

    Thansk
    Creature.Follow("DarkstaR")

  7. #137
    Lifetime Subscriber Stusse's Avatar
    Join Date
    Dec 2011
    Location
    solid-scripts.com
    Posts
    3,523
    Mentioned
    346 Post(s)
    Tagged
    1 Thread(s)
    Quote Originally Posted by DarkstaR View Post
    Creature.Follow("DarkstaR")
    Aight well, you got any ideas what can be wrong since that's exactly what I'm doing...

    Thanks

  8. #138
    Super Moderator Infernal Bolt's Avatar
    Join Date
    Dec 2011
    Location
    Skellefteċ, Sweden
    Posts
    2,880
    Mentioned
    217 Post(s)
    Tagged
    2 Thread(s)
    Quote Originally Posted by Stusse View Post
    Okey, sweet!

    Anyways darkstar, do you mind writing exactly how you should write the Creature follow for lets say Npc "Darkstar"? Would be good to see what you're using that actually works, since it isnt for me

    Thansk
    Creature.GetByName("Darkstar"):Follow()
    if his version doesn't work.

  9. #139
    Senior Member XtrmJosh's Avatar
    Join Date
    Apr 2012
    Location
    Cambridge, England
    Posts
    1,324
    Mentioned
    39 Post(s)
    Tagged
    0 Thread(s)
    Looks like a positive step here for XB, too bad it's so late into the development, now scripters must put extra time into repairing old scripts instead of making new... I guess it's the price you pay for joining a revolution though...

    Well done, and keep it up.
    You cannot fail, so I'm lowering the standard.

  10. #140

    Join Date
    Feb 2012
    Posts
    55
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I use forgee.lua bpopener, but when Xeno wants to open the bp's it stucks at a bp, before update I hadnt this problem :///

    Greetings

Posting Permissions

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