Thread Tools Display Modes
12-07-12, 11:57 PM   #1
MelokOnes
A Murloc Raider
Join Date: Dec 2012
Posts: 6
Question Help!!!Gets whether or not in the team

Thanks for all the people:
Because I am a shaman, I like playing Dps, also often call by the friend to play a copy, so regular shift between Dps and Heal, but in Heal mode head position and the team framework of overlapping position, and so I want to, can not enter the team time move head to other places, and then quit the team before moving back?

My English level is limited, you can see some fuzzy, thank you again!


Chinese Edition:
因为我是一个萨满,我自己比较喜欢打Dps,另外又经常被朋友叫去打副本,所以要经常在Dps和Heal之间切换,然而在Heal模式下头像的位置会和团队框架的位置重叠,所以我就这样想,能不能在进入团队的时候就移动头像到别的地方,然后再退出团队的时候再移动回来?

非常感谢你们的帮助,谢谢!

Last edited by MelokOnes : 12-08-12 at 12:18 AM.
  Reply With Quote
12-08-12, 12:10 AM   #2
Coote
A Scalebane Royal Guard
 
Coote's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2007
Posts: 440
I'm sorry, but I cannot make out what you are attempting to say. You may have a better chance of getting help if you also included your question in your native language below your post. Somebody else who may be able to help will likely be able to provide you with help.
__________________

"This is the fifteen-thousandth four hundredth and ninety-eighth occurence".
  Reply With Quote
12-08-12, 12:15 AM   #3
MelokOnes
A Murloc Raider
Join Date: Dec 2012
Posts: 6
Originally Posted by Coote View Post
I'm sorry, but I cannot make out what you are attempting to say. You may have a better chance of getting help if you also included your question in your native language below your post. Somebody else who may be able to help will likely be able to provide you with help.
Thank you

I'm writing a segment of their mother tongue, double here
  Reply With Quote
12-08-12, 12:54 AM   #4
semlar
A Pyroguard Emberseer
 
semlar's Avatar
AddOn Author - Click to view addons
Join Date: Sep 2007
Posts: 1,060
Don't quote me on this, but I think he's saying that when he's healing his portrait frame is overlapping the party frames.

I think he wants to move his unit frame while in a party and put it back when he leaves.

Last edited by semlar : 12-08-12 at 01:04 AM.
  Reply With Quote
12-08-12, 01:11 AM   #5
MelokOnes
A Murloc Raider
Join Date: Dec 2012
Posts: 6
Semlar say is right,I just want this effect. just in 40 team's appear This kind of problem.
  Reply With Quote
12-08-12, 02:49 AM   #6
Fizzlemizz
I did that?
 
Fizzlemizz's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Dec 2011
Posts: 1,879
It sounds like the raid frames need to be moved/adjusted to account for all raid sizes rather than moving the player unit frame when in 40s.

MelokOnes, can you post the name (if any) of your raid frame addon?
__________________
Fizzlemizz
Maintainer of Discord Unit Frames and Discord Art.
Author of FauxMazzle, FauxMazzleHUD and Move Pad Plus.
  Reply With Quote
12-08-12, 04:06 AM   #7
MelokOnes
A Murloc Raider
Join Date: Dec 2012
Posts: 6
Originally Posted by Fizzlemizz View Post
It sounds like the raid frames need to be moved/adjusted to account for all raid sizes rather than moving the player unit frame when in 40s.

MelokOnes, can you post the name (if any) of your raid frame addon?
Of course, the Ui is DuffedUI, when I created UI team frame move head position, see the following code, but when I want to launch the team move the head to its original position, but do not know how to accomplish this functionality.

Lua Code:
  1. -- only show 5 groups in raid (25 mans raid)
  2. local MaxGroup = CreateFrame("Frame")
  3. MaxGroup:RegisterEvent("PLAYER_ENTERING_WORLD")
  4. MaxGroup:RegisterEvent("ZONE_CHANGED_NEW_AREA")
  5. MaxGroup:SetScript("OnEvent", function(self)
  6.     local inInstance, instanceType = IsInInstance()
  7.     local _, _, _, _, maxPlayers, _, _ = GetInstanceInfo()
  8.     if inInstance and instanceType == "raid" and maxPlayers ~= 40 then
  9.         G.PlayerFrame:Point("BOTTOMLEFT", DuffedUIBar1, "TOPLEFT", 2, 140)
  10.         G.TargetFrame:Point("BOTTOMRIGHT", DuffedUIBar1, "TOPRIGHT", -2, 140)
  11.         G.RaidHeal:Point("BOTTOMLEFT", DuffedUIBar2, "TOPLEFT", 2, 33)
  12.         DuffedUIGrid:SetAttribute("groupFilter", "1,2,3,4,5")
  13.     else
  14.         --Here I set the position of player team avatar and avatar target framework
  15.         G.RaidHeal:Point("BOTTOMLEFT", DuffedUIBar2, "TOPLEFT", -100, 33)
  16.         G.PlayerFrame:Point("BOTTOMLEFT", DuffedUIBar1, "TOPLEFT", -150, 340)
  17.         G.TargetFrame:Point("BOTTOMRIGHT", DuffedUIBar1, "TOPRIGHT", 150, 340)
  18.         DuffedUIGrid:SetAttribute("groupFilter", "1,2,3,4,5,6,7,8")
  19.     end
  20. end)
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Help/Support » Help!!!Gets whether or not in the team


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off