XenoBot Forums - Powered by vBulletin

User Tag List

Results 1 to 3 of 3

Thread: Simple script please help

  1. #1

    Join Date
    Nov 2015
    Posts
    5
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)

    Simple script please help

    Im ignorant about scripting, could someone make a script that follows "X" if i have no target or no monster screen both work, i would appreciate it a lot thx
    Last edited by Vodkita; 12-18-2015 at 03:09 PM.

  2. #2
    Senior Member
    Join Date
    Sep 2012
    Posts
    1,070
    Mentioned
    18 Post(s)
    Tagged
    0 Thread(s)
    @Vodkita
    Just edit the name, it will follow if you don't have any target
    Code:
    function follow()
    local creatureToFollow = Creature.New("Name To Follow")
    if (Self.TargetID() == 0) then
    followCreature(creatureToFollow:ID())
    end
    end
    while true do
    follow()
    wait(400,500)
    end

  3. #3

    Join Date
    Nov 2015
    Posts
    5
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Thx a lot works almost perfect !

Posting Permissions

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