Talamin
Elite user-
Posts
329 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Talamin
-
[Free] Project Wholesome - WOTLK Fightclasses (all 10 included)
Talamin commented on Talamin's file in Fight Classes - Wotlk
-
[Free] Project Wholesome - WOTLK Fightclasses (all 10 included)
Talamin commented on Talamin's file in Fight Classes - Wotlk
Did you look in the settings? There is a setting to enable and disable Buffs and a Setting for enable and disable De-Buffs, and there is an explanation what every Settings do! nevermind, found some incombat Buffing which doesn´t take the Option into account, will fix this. Whats causing this is that the FC estimates the cost of buffing individually against using group buffs, so this can cause your multiple buffs. -
hmm, your Spells have a Base Damage per Tick. I would take the Basedamage and compare it to the actual health. Let´s say you have a Target with 1000 Health, but the Basedamage of your ShadowWord: Pain is 300 per Tick (total of 5 Ticks) it´s not worth to cast it. On the other side, when you "wand" the target down like every SPriest does while leveling, a DoT comes in Hand. So in General, there are different Ways to Achieve what you want: 1. Read the dmg Output out of Combatlog of the Spell you desire and compare this against the enemy health 2. Calculate the Base Damage of the Spell you want to see and compare this against the enemy health 3. Limit your Dot´s, compared to the Health again, flat to the kind of Mob you are Facing (Normal Grind, Trash in Dungeon, Bossfight in Dungeon) 4. Maybe some more... Actually i try to understand the Point of the Addon above. In the AIO we did Point 3. We checked for the kind of Target we have actually and this is the Trigger for the Rotation. Like in ShadowWord:Pain (Bossfight: Ignore Health, Trashmobs in Dungeon: 5%, Grindmobs outside Dungeon 30% <-- Because we Wand them down). Hope i could give you a rough idea what i am talking about. If you need something more specific, let me know.
-
could you be more specific what the point is behind this? You want to estimate if it´s worth to reapply your Dots on a Target?
-
[Free] Project Wholesome - WOTLK Fightclasses (all 10 included)
Talamin commented on Talamin's file in Fight Classes - Wotlk
new RotationStep(new RotationBuff("Arcane Intellect"), 5f, (s,t) => !t.HaveBuff("Fel Intelligence") && !t.HaveBuff("Arcane Brilliance"), RotationCombatUtil.FindPartyMember), new RotationStep(new RotationBuff("Arcane Intellect"), 6f, (s,t) => !t.HaveBuff("Fel Intelligence") && !t.HaveBuff("Arcane Brilliance"), RotationCombatUtil.FindMe), It´s already included in the Buff Section for Mages. About disable Buffing, i can make this an option. About the Priest @FlXWare has to answer, this is his baby. -
It could be that you will face some new Problems here and there. The Movement is called on several points inside Quester/Grinder and other Products. The only reliable way is to use your own product where you have full control over your movement (for example if you want to use keystroke movement instead of ctm).
-
Well, then show him how you would solve this, I already gave my opinion about this!
-
exactly, if you want control over the incombat movement without depending on the standard movement you have to build your own combat state where you can handle the movement to the target, after engaging combat.
-
[Free] Project Wholesome - WOTLK Fightclasses (all 10 included)
Talamin commented on Talamin's file in Fight Classes - Wotlk
-
As Ordush said, you only will be able to Assist the "Tank" if he is a Warrior and only one Warrior. If it is your own preset group you should be fine. If you want to handle Target switching in Combat, it would be the best to add it to the OnFightLoop like Ordush said too. Take a look in the Fightclass Section, there you find some examples how to handle Combat MidFight. Alternatively you can check in your FC Pulse if the Target of your Tank is the same as yours, and if not then change it.
-
someone help me with crash report.. please
Talamin replied to Jpizzle's topic in WRobot for Wow Vanilla - Help and support
If you are talking about the HMP from Matenia, it would be the best to contact him directly or join his discord for support for his Plugin. -
I only can recommend to use less LUA, as Matenia said, LUA can slow down your Rotation a lot if you don´t use it correct or unneeded. Let the Debug Output stay in wrobot like Logging.Write(). I can recommend to take a look how Matenia handled Stuff in his free Framework for Developers which he posted on Wrobot.
-
So, assuming you use wrotation you can do something like this to get the Tankname: public static string LUAGetTankName() { return Lua.LuaDoString<string>(@" for i = 1, 4 do local isTank,_,_ = UnitGroupRolesAssigned('party' .. i) if isTank then name, realm = UnitName('party' .. i) return name; end end"); } With this you get the Tank name. Then you can use ObjectManager.GetObjectWoWPlayer().FirstOrDefault(p => p.Name == Tankname) and store it in a variable. With this you have the Basic to Assist the Tank, Ignore the TankTarget and much more. Same goes for every Member in the Group. But be aware that the LUA only works after you joined the Dungeon through Dungeonfinder. If you don´t use Dungeonfinder you have to set the Tank by yourself. If you need more Help, or have more Questions feel free todo so. Sometimes it would help more to post the part of the Code where you struggle, this helps more then describing the things ?
-
Do you use a specific FC or do you build your own? 1. You have to differentiate between auto Choosing Targets (handled by the Product) or you choose manual a Target. Which one is the case? 2. You can store a guid into a Variable or set an FocusTarget or Filter through Enemies and so on. You should be a little bit more specific. 3. This is something which should be handled by the Product (or the FC if you make your own). 4. Again, this is something the FC you use handles. Overall everything you mentioned is doing (with less effort in C#).
-
-
-
[Free] Project Wholesome - WOTLK Fightclasses (all 10 included)
Talamin commented on Talamin's file in Fight Classes - Wotlk
The FC makes use of nearly all Feral Spells. Shred was considered by the Testers as useless for Leveling. In Catform it uses: Prowl, Feral Charge, Pounce, Faerie Fire, Ravage, Dash, Tigers Fury, Rake, Rip, Ferocious Bite, Mangle and Claw. (this is no Order, we use a Priority System to determine when which Spell should be used). If you have Suggestions to improve the Behavior, just let me know. -
[Free] Project Wholesome - WOTLK Fightclasses (all 10 included)
Talamin commented on Talamin's file in Fight Classes - Wotlk
-
[Free] Project Wholesome - WOTLK Fightclasses (all 10 included)
Talamin commented on Talamin's file in Fight Classes - Wotlk
-
[Free] Project Wholesome - WOTLK Fightclasses (all 10 included)
Talamin commented on Talamin's file in Fight Classes - Wotlk
[F] 15:46:08 - [RTF] Casting Riptide on [73870] [F] 15:46:44 - [RTF] Casting Call of the Elements on [73870] [F] 15:46:44 - [RTF] Casting Nature's Swiftness on [73870] [F] 15:46:46 - [RTF] Casting Healing Wave on [73870] [F] 15:46:47 - [RTF] Casting Riptide on [73870] I tested it again and for me it works flaweless. You ticked in the settings : "Syntetic Events"? And deactivate all Addons! Really, all! -
[Free] Project Wholesome - WOTLK Fightclasses (all 10 included)
Talamin commented on Talamin's file in Fight Classes - Wotlk
-
LoadProfile and slow loading of profile steps
Talamin commented on Pudge's bug report in Bug Tracker
? -
LoadProfile and slow loading of profile steps
Talamin commented on Pudge's bug report in Bug Tracker
i did so, in Discord and via PN. Now i am out of Options.