What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Warena - PVP Arms Warrior Combat Routine

I did some more testing and it looks like it is no longer attacking ice block but rather just auto-attacking! I think that is working correctly.
 
Last edited:
Please post the highest ratings you guys are actively using this CR at in Arena with success.

If you like this CC please click on the star in lower left hand corner of my name of +rep and rate the thread on the first post.

As you see I implement good ideas when I know how. Keep suggesting good ideas or problems and I will implement if I have time or think its needed.

Thanks!

I like the new changes.
Probably will do some night session of arenas today, in this season im slaking on PvP, so no high rating bracket. Will post how it went.

What do you think about my suggestion on Intimidation Shout on Stampede?
 
In Common.cs line 595-596 you still have your weapons assign instead the String define in Settings.cs:

Lua.DoString("RunMacroText(\"/equipslot 16 " + "Malevolent Gladiator's Hacker" + "\")");
Lua.DoString("RunMacroText(\"/equipslot 17 " + "Masterwork Spiritguard Shield" + "\")");
 
In Common.cs line 595-596 you still have your weapons assign instead the String define in Settings.cs:

Lua.DoString("RunMacroText(\"/equipslot 16 " + "Malevolent Gladiator's Hacker" + "\")");
Lua.DoString("RunMacroText(\"/equipslot 17 " + "Masterwork Spiritguard Shield" + "\")");

Thank you I fixed this. This composite is not currently being used however so it should not have affected anyone.
 
So i did some arenas yesterday, not as much as i wanted, but it work very well. Did some 2s, and i was destroying enemies teams. Didnt had time to analise the logs, i still did some CD's manually, old habits... But my review atm: the best Warrior Arms PvP routine i try! (didnt use Vindictam Deorum ~ Arma Bellator in Cata)
 
Thanks you for the update !

This CC is so magic and so good ! I really want to help all as I can but I am busy this time, even for play :((
When I will be free I will try to give a big feed back and idea !!!!

Love Your work <3
 
Any update on this ?
i would like you to explain me how your code work,
im a great coder in c# but never coded any routine
 
Cant use this CC.. when i use it.. my FPS drop so mutch.. like 10fps.. bugged?
 
This is only for Arena/BGs. There is too much unit scanning going on for big raids. It will slow down for bigger raid BGs as well.
 
Last night had done some arenas. It went very good, but i check the logs and i see that the bot try to cast Safeguard to other team player, maybe same fraction issue?
 
Last night had done some arenas. It went very good, but i check the logs and i see that the bot try to cast Safeguard to other team player, maybe same fraction issue?

That's interesting.

It's suppose to cast safeguard on your teammates, but not on your enemy

Code:
                            u.IsAlive &&
                            !u.IsMe &&
                            u.IsFriendly &&
                            u.HealthPercent <= 25 &&
                            u.InLineOfSpellSight &&

If it did try to cast safeguard on the enemy team-player, he should try
Code:
 !u.IsHostile

Instead of
Code:
 u.IsFriendly
 
Last edited:
Back
Top