| Updated: | 06-23-08 01:12 PM |
| Created: | unknown |
| Downloads: | 3,105 |
| Favorites: | 10 |
| MD5: |
![]() |
Comment Options |
|
|
|
|
In my guild, when hunters have to MD, we're supposed to broadcast it to the hunter channel so it gives something like this:
Misdirecting MobX to PlayerY (to a custom channel) %t will return MobX name, how do i do to print PlayerY ? |
|
|
|
|
|
||
__________________
![]() -A lot of people are like Slinkies; they're not really good for anything but you can't help but laugh when you see them tumble down the stairs. -Before you criticize someone, you should walk a mile in their shoes. That way, when you criticize them, you're a mile away and you have their shoes. -Borrow money from a pessimist, they don't expect it back. |
||
|
|
|
|
|
|
A Kobold Labourer
Forum posts: 0
File comments: 8
Uploads: 0
|
Great mod, love the idea of changing the core to keep it light.
Quick question, is there any way to make this announce things in the center of the screen or even in sct? I'd like a way to see when my/my 2s partners' cc breaks somewhere more practical than the chatlog, but if seeing that happen to something that isn't my target isn't going to happen then thats cool. Also just to make sure i've got the right idea, if i want to announce something to my party, its channel = "PARTY" right? Thanks in advance |
|
|
|
|
||
Code:
["Shackle Undead"] = {},
__________________
![]() -A lot of people are like Slinkies; they're not really good for anything but you can't help but laugh when you see them tumble down the stairs. -Before you criticize someone, you should walk a mile in their shoes. That way, when you criticize them, you're a mile away and you have their shoes. -Borrow money from a pessimist, they don't expect it back. |
||
|
|
|
|
|
|
Any shackle support?
|
|
|
|
|
|
||
|
Re: Re: Re: Don't work in WOW China
Code:
Misdirection = {
Channel = "WHISPER",
Target = function() if (UnitCanAttack("player", "target")) then return UnitName("focus") elseif (UnitIsPlayer("target")) then return UnitName("target") end end,
Applied = "Misdirecting %t to you!",
},
__________________
![]() -A lot of people are like Slinkies; they're not really good for anything but you can't help but laugh when you see them tumble down the stairs. -Before you criticize someone, you should walk a mile in their shoes. That way, when you criticize them, you're a mile away and you have their shoes. -Borrow money from a pessimist, they don't expect it back.
Last edited by ganders : 06-12-08 at 10:31 AM.
|
||
|
|
|
|
|
|
Re: Re: Don't work in WOW China
Did you completely remove misdirection from r6 ?
|
|
|
|
|
|
||
|
Re: Don't work in WOW China
If you don't know where to look, find the line Code:
local SpellDB = {
__________________
![]() -A lot of people are like Slinkies; they're not really good for anything but you can't help but laugh when you see them tumble down the stairs. -Before you criticize someone, you should walk a mile in their shoes. That way, when you criticize them, you're a mile away and you have their shoes. -Borrow money from a pessimist, they don't expect it back. |
||
|
|
|
|
|
|
A Kobold Labourer
Forum posts: 0
File comments: 1
Uploads: 0
|
Don't work in WOW China
I'm from China and i'm using the addon from WOW 2.33 to 2.4
But, when the WOW China was updated to 2.4.2, i found the addon doesn't work. Could you pls tell me why and how to fix it? Thanks, i like your addon very much. ![]() |
|
|
|
|
|
|
With the latest release, the misdirection line u gave me below doesn't work anymore, no errors, just no whisper to the person i'm misdirecting to.
My MD line Code:
Target = function() if UnitCanAttack("player", "target") then if UnitExists("focus") then return UnitName("focus") else return UnitName("pet") end else return UnitName("target") end end,
Code:
[2008/06/08 17:18:02-10048-x1]: SendChatMessage(): Whisper message missing target player!: <in C code>: ? <in C code>: in function `SendChatMessage' NinjaYell\core.lua:192: in function `Announce' NinjaYell\core.lua:84: in function <Interface\AddOns\NinjaYell\core.lua:65> ---
Last edited by Caellian : 06-08-08 at 09:18 AM.
|
|
|
|
|
|
||
Code:
UnitCanAttack("player", "target")
Code:
UnitCanAttack("target", "player")
__________________
![]() -A lot of people are like Slinkies; they're not really good for anything but you can't help but laugh when you see them tumble down the stairs. -Before you criticize someone, you should walk a mile in their shoes. That way, when you criticize them, you're a mile away and you have their shoes. -Borrow money from a pessimist, they don't expect it back. |
||
|
|
|
|
|
|
Excellent gonna give it a try right now, though, do you really think it's gonna whisper my pet ?
![]() Edit: i recieved this error today, normal MD to focus Code:
[2008/05/29 21:22:52-9169-x2]: SendChatMessage(): Whisper message missing target player!: <in C code>: ? <in C code>: in function `SendChatMessage' NinjaYell-r3\core.lua:159: in function `Announce' NinjaYell-r3\core.lua:65: in function <Interface\AddOns\NinjaYell\core.lua:53>
Last edited by Caellian : 05-29-08 at 04:02 PM.
|
|
|
|
|
|
||
Code:
function() if UnitCanAttack("player", "target") then if UnitExists("focus") then return UnitName("focus") else return UnitName("pet") end else return UnitName("target") end,
I hope that's what you needed.
__________________
![]() -A lot of people are like Slinkies; they're not really good for anything but you can't help but laugh when you see them tumble down the stairs. -Before you criticize someone, you should walk a mile in their shoes. That way, when you criticize them, you're a mile away and you have their shoes. -Borrow money from a pessimist, they don't expect it back. |
||
|
|
![]() |