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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

[REQUEST] - Amber-Shaper Mutated Construct plugin

woohah

Member
Joined
Jan 15, 2010
Messages
153
I am requesting that someone write a plugin that when turned into the Mutated Construct to interrupt the boss cast using Amber Strike and then interrupt Amber Explosion on yourself when casted. This would help tremendously.
 
Last edited:
So you can't do it yourself but it still "should be fairly easy"...
You sound like a Project Managers...

You're right. I am around project managers all day long and I guess I should have chosen my words a little more carefully! I made an assumption on that statement. :-)

Edited that statement out for obvious reasons...
 
You're right. I am around project managers all day long and I guess I should have chosen my words a little more carefully! I made an assumption on that statement. :-)
Edited that statement out for obvious reasons...
;)
I am a project manager ;)
 
--Amber Shaper


if UnitExists("boss1") then
local npcID = tonumber(UnitGUID("boss1"):sub(6,10), 16)
if npcID == 62511 then --Amber Shaper
local reshapeLife = UnitDebuffID("player", 122370)

if reshapeLife then
--Player is mind controlled.
local playerCasting = UnitCastingInfo("player")
local amberExplosion = GetSpellInfo(122402)
local struggleForControl = GetSpellInfo(122395)
local amberStrike = GetSpellInfo(122389)
local breakFree = GetSpellInfo(123060)
local playerWisdom = UnitPower("player", 10) --"Wisdom" power.

if playerWisdom <= 8 then
RunMacroText("/cast "..breakFree)
end

if UnitExists("boss2") then
--62711
local npcID = tonumber(UnitGUID("boss2"):sub(6,10), 16)
if npcID == 62711 then
local bossCasting = UnitCastingInfo("boss2")
if bossCasting == amberExplosion then
--boss is casting.
RunMacroText("/cast "..amberStrike)
else
if playerCasting == amberExplosion then
RunMacroText("/cast "..struggleForControl)
end
end
end
else
if playerCasting == amberExplosion then
RunMacroText("/cast "..struggleForControl)
end
end

end
end
end
 
fishing here and i don't know how to drop it into lazyraider. I lifted the code from another website
 
Open a text editor, copy and paste what Valve wrote and save it as "Yourawesomepluginname.cs" and put it into a folder with the same name like /plugins/yourawesomepluginname

You could try that :P
 
Would someone out there take a look at this and possibly implement this CS. Seems worth while and simple to do. However, beyond the scope of what i can do myself. Many THANKS!!!! In advance!
yes this would be so AMAZING. :)
 
This seems to be in LUA... Used in PQR (you can search for it at ownedcore)
 
not trying to necro a month old thread, but does the script that is provided a couple posts down actually work?
 
Back
Top