Jump to content

LunaAlfie

Members
  • Posts

    31
  • Joined

  • Last visited

Posts posted by LunaAlfie

  1. 28 minutes ago, Arcangelo said:


    Dude that comment made my day - im so close to make it for free just bez you are admitting you to lazy to do it :) ! but im pretty much working like crazy on another project with the bot att. :)
    and seriously 1 purpose for learning something new, that can be used for almost everything on a computer..
    belive me mate, would be so much easier to just get your head down the books or on youtube, and get to work

     

    Well it`s mostly because i`m lazy yes, but it`s not just that :biggrin:  I just can`t do such things... I`m trying to make a lasting DK Tank Class that can be used on any purpose :)

  2. 8 minutes ago, Runaro said:

     

    Thanks, but i was hoping for a bit more well you know what i mean - i want others to do the work for me :wub:  That`s why i have decided to Bot in the first place! I haven`t got the energy to learn a new Language just for this one purpose...

  3. 1 hour ago, xanthos84 said:

    Hi,

    after fishing the bot only equips one weapon.

    I already entered both weapons under "Weapon name" .. but they have the same name - so that is maybe the issue? 

    WeaponName;WeaponName

    ...Bug?

     

    Know nothing about the Bots, but the Weapons usually can be equipped only once. Are you sure you got the right names? Sometimes it`s just the end bit that differs, like for me it`s "harmonic" and something else, but appart from that they have exactly the same name.

  4. 27 minutes ago, BetterSister said:

    has to be user fault :D

    Now the item IDs please :)

    • Draenischer Trank der Stärke  (ID= 109219 )
    • Rune der Kraftverstärkung  (ID= 118631 )
    • Großes draenisches Fläschchen der Stärke  (ID= 109156 )
    • Heilsames Tonikum  (ID= 109223 )

     

    It`s all in German, but the ID`s should be the same i think?

  5. 17 minutes ago, BetterSister said:

    what is the item ID you're trying to add?

     

    • Runic Empowerment: ID=81229, Stack=0, TimeLeft=0 ms, Owner=0000000007893F560810E40000000000
    • Draenic Strength Potion: ID=156428, Stack=0, TimeLeft=19199 ms, Owner=0000000007893F560810E40000000000
    • Draenic Strength Flask: ID=156071, Stack=0, TimeLeft=3588757 ms, Owner=0000000007893F560810E40000000000
    • Greater Draenic Strength Flask: ID=156080, Stack=0, TimeLeft=3596088 ms, Owner=0000000007893F560810E40000000000
  6. Hello,

    i`ve never done anything related to programming and after hours of Reading i`ve managed to put something together. The purpose: Combat Rezz Tanks before Healers and Healers before DD`s.


    Can anybody look over it and tell me, what is wrong and what is not wrong, please?

     

    char rd = 'raid'; 
    char tmp = ''; 
    char tmpRole = '';
    bool tmpTanks = true;
    bool tmpHeals = true;
    
    for (int i = 1; i <= 20; i++) 
    {
    	tmp = rd + i;
    	tmpRole = UnitGroupRolesAssigned(tmp);
    	
    	if (tmpRole == 'TANK') {
    		if (UnitIsDead(tmp)) {
    			tmpTanks = false;
    			local name = GetItemInfo(61999);
    			RunMacroText('/use ' .. name);
    			break;
    		};
    	} else if (tmpRole == 'HEALER') {
    		if (UnitIsDead(tmp)) {
    			tmpHeals = false;
    			local name = GetItemInfo(61999);
    			RunMacroText('/use ' .. name);
    			break;
    		};
    	} else {
    		if (tmpTanks && tmpHeals) {
    			local name = GetItemInfo(61999);
    			RunMacroText('/use ' .. name);
    			break;
    		};
    	};
    };

     

  7. Hi,

    I`ve looked into the Wow Api a bit and i found a really usefully function, that will let me Check if the Casting Spell can be Interrupted. I would like to put that Function into the Condition using C Sharp code, but i got zero Idea / knowledge on how to accomplish that.

     

    The Function is called "UnitCastingInfo".

     

    I`m guessing it`s something like this:

    notInterruptible = UnitCastingInfo("player")

     

    But how to build it in?

  8. 3 minutes ago, BetterSister said:

    this fixed the issue

     

     

    I`ve had some Issues with the ID`s - In case you got the same Problem, here`s a smal List i created:

     

    • Killing Machine: ID=51128 ---- Spellbook
    • Rime: ID=59057 ---- Spellbook
    • Killing Machine: ID=51124
    • Razorice: ID=51714
    • Frost Fever: ID=55095
    • Rime: ID=59052
    • Dark Succor: ID=178819 --- Spellbook

     

    The Spellbook ones differ from the proc ones somehow. I had to use the non Spellbook ones

  9. 13 minutes ago, Dreamful said:

    Their is a Option/Checkbox in General Settings "Ignore Training Dummys". Uncheck this, maybe that causes your issue. 

     

    That was not the one, but for everybody with the same Problem: It solved, when i unchecked "Launch rotation when combat starts" in the Product Settings.

  10. Hi,

     

    i`m trying to improve my combat rotation and i want a certain spell (Frostscythe) to be casted ONLY, when "Killing Machine" procs. So i make a "Buff" Condition, type in the Name and set Need to "True", but it will still cast that spell a dozen times, even when i haven`t got that Buff.

     

    I also got the same Problem with another Spell, where it also contains a Space.. Is that the Problem, that white space? How can i avoid that?

     

×
×
  • Create New...