XenoBot Forums - Powered by vBulletin

User Tag List

Results 1 to 10 of 15

Thread: Is Exori/Ue Spells Safe?

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #13
    Dagon's Avatar
    Join Date
    Oct 2013
    Location
    United States, Illinois
    Posts
    30
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank me later, Credits to original creator.

    Also, now that I'm posting this. Would anyone like to tell me how to make this like the comment from above. "Lua Code:" Etc...

    local safeStrike = true

    registerEventListener(TIMER_TICK, "onTick")
    function onTick()
    if safeStrike then
    local pos = Self.LookPos()
    for i = CREATURES_LOW, CREATURES_HIGH do
    local c = Creature.GetFromIndex(i)
    if c:isAlive() and c:isPlayer() and (c:Position().x == pos.x and c:Position().y == pos.y and c:Position().z == pos.z) then
    Self.Turn(math.abs(Self.LookDirection() + 1))
    end
    end
    end
    end
    Last edited by Dagon; 12-24-2014 at 05:59 AM.

Tags for this Thread

Posting Permissions

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