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!

[Plugin] Ultimate PvP Suite

Hello i am from Russia , sorry but my english very bad . I just now donated for this plugin but i cant open setting of this plugin , pliz can you help me ? and i have another qestion - how to usr this pvp plugin , can you show the video how to do
 
Сумма: $25,00 usd
Конвертация валют: 863,97 rub = $25,00 usd
Курс обмена: 1 rub = 0,0289361 usd
Отправлено: 01 декабря 2013
 
Сумма: $25,00 usd
Конвертация валют: 863,97 rub = $25,00 usd
Курс обмена: 1 rub = 0,0289361 usd
Отправлено: 01 декабря 2013

По идее тебе должны выслать логин пасс. напиши Фелону(разрабу) в личку, что ты задонатил
 
По идее тебе должны выслать логин пасс. напиши Фелону(разрабу) в личку, что ты задонатил

Ага, я уже больше недели жду, честно говоря не ожидал такой "быстрой" обратной связи.
 
buddy,

has made a donation more than a week ago 6C677008Y30917828, according to the requirements of your time is up, when I get a link on the SVN?
 
Сумма: $25,00 usd
Конвертация валют: 863,97 rub = $25,00 usd
Курс обмена: 1 rub = 0,0289361 usd
Отправлено: 01 декабря 2013

Hi Damir, please don't post any transaction details on the forum :) Make sure you send them by PM to Phelon.
 
buddy,

has made a donation more than a week ago 6C677008Y30917828, according to the requirements of your time is up, when I get a link on the SVN?

Jonoday did you PM Phelon with your transaction details? I am trying to find out if you did or not but I cant get hold of Phelon at the moment.
 
Hi,
I wrote him a personal mail, except the automatic response, neither of which did not get passed all the time.
 
сколько уже жду ничего ни где не приходило никто не отвечал... я хз куда писать...
 
Напиши номер платежки, как пример посмотри на мой в сообщении выше, должен был выдаваться при оплате, пиши на английском.
 
Sorry all. I have been VERY sick. I am working on getting everyone added now.
 
How do you select buffing ppl when the bg starts? This is very annoying cus people are spamming BUFF!! and BOTS NOT BUFFING!

Dont wanna get my acc banned thanks to something like that

Oh and should I use singular for this?
 
How do you select buffing ppl when the bg starts? This is very annoying cus people are spamming BUFF!! and BOTS NOT BUFFING!

Dont wanna get my acc banned thanks to something like that

Oh and should I use singular for this?

Buffing is handled by the Custom Class my man =)
 
Anyone having trouble targeting Undead Priests in BG's?. Even Manual targeting it jumps to next nearest player
 
Anyone having trouble targeting Undead Priests in BG's?. Even Manual targeting it jumps to next nearest player

Manual targetting wont work as it wants to target the BotPoi

Here is the healer targeting code:
Code:
(info.Contains("Resto") || info.Contains("Disc") ||
                                                    info.Contains("Holy") ||
                                                    info.Contains("Mist"))

Code:
        private static IEnumerable<WoWPlayer> EnemyHealer()
        {
            Unit.PlayerSpecCheck();
            using (StyxWoW.Memory.AcquireFrame())
            {
                return ObjectManager.GetObjectsOfType<WoWPlayer>(false)
                    .OrderBy(unit => unit.Distance)
                    .Where(
                        unit =>
                            unit.IsAlive &&
                            unit.IsPlayer &&
                            !unit.Mounted &&
                            !unit.IsFriendly &&
                            !unit.IsPet &&
                            !unit.HasAura("Spirit of Redemption") &&
                            !unit.HasAura("Blessing of Protection") &&
                            !unit.HasAura("Divine Shield") &&
                            !unit.HasAura("Ice Block") &&
                            !unit.HasAura("Cyclone") &&
                            Unit.CheckHealerList(unit) &&
                            unit.Distance < UltimatePvPSuite.TargetHealersRange &&
                            Navigator.CanNavigateFully(StyxWoW.Me.Location, unit.Location));
            }
        }
 
Back
Top