Conditions List menu

User Tag List

Page 2 of 9 FirstFirst 123456 ... LastLast
Results 16 to 30 of 128
  1. #16
    Gam1's Avatar Member
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Excuse me for my bad english

    I don't understand the modifier.last condition.

    Can somebody explain to me?

    Conditions List
  2. #17
    ImogenOC's Avatar Contributor ProbablyEngine Community Manager
    Reputation
    173
    Join Date
    Nov 2013
    Posts
    364
    Thanks G/R
    0/8
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    modifier.last checks if it was the last thing cast or not.

    e.g.
    Casts smite if the last cast was smite.
    Code:
    { "Smite", "modifier.last" },
    Casts smite if it wasn't cast last.
    Code:
    { "Smite", "!modifier.last" },
    ProbablyEngine - Developer and Lead Support
    A Powerful Rotation Bot: ProbablyEngine

  3. #18
    Gam1's Avatar Member
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks!

    Another question :
    Is that possible to use something like that
    {{spell1,{condition1}} {spell2,{condition2}} , {condition3}}

    My goal is to cast spell 1 if condition 1&3 are ok and spell 2 if condition 2&3.

  4. #19
    boxo's Avatar Member
    Reputation
    2
    Join Date
    Jan 2012
    Posts
    92
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    { "Spell One, { "condition 1", "condition 3" }},
    { "Spell Two", { "condition 2", "Condition 3" }},

  5. #20
    SolonHH's Avatar Member
    Reputation
    4
    Join Date
    Jun 2012
    Posts
    17
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does this work?

    { "101643", {"toggle.run",not unit.exists("Transcendence Spirit") }}, -- Transcendence
    Last edited by SolonHH; 11-25-2014 at 02:21 PM. Reason: fixing codee

  6. #21
    ImogenOC's Avatar Contributor ProbablyEngine Community Manager
    Reputation
    173
    Join Date
    Nov 2013
    Posts
    364
    Thanks G/R
    0/8
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    No.
    Track for the buff, not the target
    Code:
    { "101643", {
    "toggle.run", 
    "player.buff(Transcendence)",
    }}, -- Transcendence
    ProbablyEngine - Developer and Lead Support
    A Powerful Rotation Bot: ProbablyEngine

  7. #22
    Gam1's Avatar Member
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I use this line but doesn't work

    { "102543", {"modifier.shift", "spell(5217).cooldown < 20", "spell(106951).cooldown < 14", }},

    I want to cast the spell A only when shift pressed, spell B cd<20sec and spell C cd<14sec

    Perhaps a problem in spell.cooldown use or the LUA unlocker (oLUA) doesn't permit this?

  8. #23
    boxo's Avatar Member
    Reputation
    2
    Join Date
    Jan 2012
    Posts
    92
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    { "102543", {
    "modifier.shift",
    "player.spell(5217).cooldown < 20",
    "player.spell(106951).cooldown < 14",
    }},

  9. #24
    SolonHH's Avatar Member
    Reputation
    4
    Join Date
    Jun 2012
    Posts
    17
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ImogenOC View Post
    No.
    Track for the buff, not the target
    Code:
    { "101643", {
    "toggle.run", 
    "player.buff(Transcendence)",
    }}, -- Transcendence
    Target is best because if you leave a zone (or get to far) it will not port you to it.
    So id rather make it look for it being placed. Which it does have an ID for the Unit and a name.

    So there is no way to check for it? I would think there be something that would check for totems like this in the same way (PvP wise)

  10. #25
    Greymalkin's Avatar Corporal
    Reputation
    13
    Join Date
    May 2014
    Posts
    28
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey,
    I'm working on converting some of my old CRs to the current add-on and format, but I'm having a couple of hiccups and resulting questions. =)

    Is there a way to dump the evaluation of a condition or variable directly from the WoW command line? I could do this with the formatting Pre-PE, but now I'm not sure what the equivalent is for PE. Trying to query target.buff(Riptide).duration or player.buff(Water Shield) has not worked for me. My attempts at nesting the conditionals/variables in the various ProbablyEngine.* modules have not been fruitful either. I'm assuming it is a syntax thing where I don't know the structure of how the variables are held. I've been reading through some of the system lua files, but so far I have not sorted this out.

    Is there any method for having an OR operator when resolving conditions other than repeating the blocks of code with the alternate conditions or registering custom functions to resolve the comparison?

    Are there plans for the rest of the entries on the OP's conditions list to have details added (like the first section) at some point?

    Thanks!

  11. #26
    ImogenOC's Avatar Contributor ProbablyEngine Community Manager
    Reputation
    173
    Join Date
    Nov 2013
    Posts
    364
    Thanks G/R
    0/8
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Use a function call. I think I posted about that earlier in this thread.

    There are no or args, nor will ever be. It is redundant in PE's parser.

    If it's wanted enough I can build a full wiki on the addon.
    ProbablyEngine - Developer and Lead Support
    A Powerful Rotation Bot: ProbablyEngine

  12. #27
    zeldaboch's Avatar Member
    Reputation
    1
    Join Date
    Apr 2013
    Posts
    52
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can someone explain how use "atea.enemies" condition? Is it used for calculate how many enemies are in a range?
    Example?

  13. #28
    StinkyTwitch's Avatar Active Member
    Reputation
    40
    Join Date
    Nov 2014
    Posts
    172
    Thanks G/R
    19/13
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    it uses the first argument as the basis for the area calculation, that could be player, target, focus, etc..

    Code:
    "target.area(10).enemies > 1"
    Is true if there are more than 1 enemy within 10 yards of your current target.

  14. #29
    StinkyTwitch's Avatar Active Member
    Reputation
    40
    Join Date
    Nov 2014
    Posts
    172
    Thanks G/R
    19/13
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    double post, because OC.

  15. #30
    zeldaboch's Avatar Member
    Reputation
    1
    Join Date
    Apr 2013
    Posts
    52
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks a lot. Plain and simple!
    Last edited by zeldaboch; 12-01-2014 at 03:50 PM.

Page 2 of 9 FirstFirst 123456 ... LastLast

Similar Threads

  1. leather working Trainer list Guide horde and aliance
    By Elites360 in forum World of Warcraft Guides
    Replies: 1
    Last Post: 01-24-2007, 03:31 AM
  2. Cooking recipe and hunting list
    By Cush in forum World of Warcraft Guides
    Replies: 3
    Last Post: 09-21-2006, 01:51 PM
  3. WoWemu setup list
    By Tenche in forum Community Chat
    Replies: 4
    Last Post: 06-11-2006, 02:08 PM
  4. Massive WoW Leveling Grinding Spots List (merged list)
    By Matt in forum World of Warcraft Guides
    Replies: 9
    Last Post: 05-27-2006, 07:34 PM
  5. [Guide] Command List
    By oninuva in forum World of Warcraft Guides
    Replies: 5
    Last Post: 05-17-2006, 08:28 PM
All times are GMT -5. The time now is 07:56 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search