(http://orcsoftheredblade.com/forum/gallery/484_17_08_10_4_25_54.jpg)
The orcs' favourite sport is back for an ass-kicking! Join in the game or observe the spectacle as orcs clash in a heated game of Battle Ball! The rules can be found in the BattleBall Compendium, and while you're at it, bring some drinks to complete the celebrations for the winning team afterwards!
The rules are written in the link! However here's a few added ones.
Colours will be determinded by tabards, so get yourself a undercity tabard http://www.wowhead.com/item=45583 (http://www.wowhead.com/item=45583) And an Orgrimmar tabard! http://www.wowhead.com/item=45581/ (http://www.wowhead.com/item=45581/)
You cannot use any abilities under the play, only the macros provided can be used. So no using herioc leap, sprint, or movement speed increases like hunter aspects!
The macros are as followed:
First: Passing:
"You pass the ball to your current target. You must be within 30 yards distance. Your pass has a 100% chance of success."
/script if (GetRaidTargetIndex("player")==2) and CheckInteractDistance("target",1) then SetRaidTarget("player",0); SetRaidTarget("target",2) end
Second: Preasuring:
"You pressure the person in possession of the ball, to try and force a fumble and/or to seize the ball. Only works on a player carrying the ball. You must be within 10 yards distance. You have 5% chance of stealing the ball."
/script if(GetRaidTargetIndex("target")==2) and CheckInteractDistance("target",3) and (random(20) > 18) then SetRaidTarget("target", 0);SetRaidTarget("player",2) end
Third: Tackle:
"You tackle the targeted player. If the player in possession of the ball is tackled, he will be incapacitated for five seconds. If a player who is not carrying the ball is tackled, this move results in a foul. You must be within 10 yards distance. Tackling has a 15% chance of success."
/script if(CheckInteractDistance("target",3) and (random(20) > 17)) then if(GetRaidTargetIndex("target")==2) then SetRaidTarget("target",8);SetRaidTarget("player",2) else SetRaidTarget("player",7);SendChatMessage("** Foul**" , "RAID") end end
The game host's macros are provided in the link, however for convience they are here too:
Game pause:
/script SetRaidTarget("player",2)
/rw "Game paused"
Put the ball in play:
/script SetRaidTarget("target",2)
/rw "Ball is in play"
Clear icons:
/script SetRaidTarget("target",0)