[PQR] Cokx - PVP Profiles menu

Trade Details

Free

How does it work? (Learn more about CoreCoins here)

User Tag List

Page 73 of 115 FirstFirst ... 23697071727374757677 ... LastLast
Results 1,081 to 1,095 of 1722
  1. #1081
    cahe's Avatar Member
    Reputation
    3
    Join Date
    Aug 2012
    Posts
    88
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Status: Trade
    Cokx still bug with shrooms bloom, rotation spam as before.

    [PQR] Cokx - PVP Profiles
  2. #1082
    Noiselol's Avatar Member
    Reputation
    1
    Join Date
    Aug 2013
    Posts
    59
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Status: Trade
    Hey Cokx,
    I would like an Keybind like LShift for Fake Trap on Hunter Profile.
    Like Scatter -> Ice Trap.
    Useful against Warriors and Rogues.
    Oh and for everyone who have an Honorbuddy.
    Try it for more easy Trapping:
    [Bot Base] Hunter - TrapBuddy

    Oh @Cokx
    You got into HonorBuddy so i would like if you can help me out here:
    Code:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using Styx;
    using Styx.Common;
    using Styx.CommonBot;
    using Styx.CommonBot.POI;
    using Styx.CommonBot.Profiles;
    using Styx.CommonBot.Routines;
    using Styx.Helpers;
    using Styx.Pathing;
    using Styx.WoWInternals.WoWObjects;
    using Styx.TreeSharp;
    using Action = Styx.TreeSharp.Action;
    using Sequence = Styx.TreeSharp.Sequence;
    using Styx.WoWInternals;
    using Styx.WoWInternals.WoWObjects;
    namespace TrapBuddy
    {
        class TrapBuddy : BotBase
        {
            static int trapType = 0;
            WoWPoint target;
    
            public override string Name
            {
                get { return "TrapBuddy"; }
            }
            public override PulseFlags PulseFlags
            {
                get { return PulseFlags.All; }
            }
            public override void Pulse()
            {
                if (Me.FocusedUnit == null){
    					Lua.DoString("trapNum = 0;");
    					trapType = 0;
    					
    					return;
    				}
    
                if (trapType == 1)
                {
                    target = getPoint();
                    SpellManager.Cast("Freezing Trap");
                    SpellManager.ClickRemoteLocation(target);
                    Lua.DoString("trapNum = 0;");
                    trapType = 0;
                }
                else
                    if (trapType == 2)
                    {
                        target = getPoint();
                        SpellManager.Cast("Explosive Trap");
                        SpellManager.ClickRemoteLocation(target);
                        Lua.DoString("trapNum = 0;");
                        trapType = 0;
                    }
                else
                    if (trapType == 3)
                    {
                        target = getPoint();
                        SpellManager.Cast("Ice Trap");
                        SpellManager.ClickRemoteLocation(target);
                        Lua.DoString("trapNum = 0;");
                        trapType = 0;
                    }
            }
    		
            private Composite _root;
            public override Composite Root
            {
                get
                {
                    return _root ?? (_root = 
                        new PrioritySelector(
                            logic()
                            )
                        );
                }
            }
            public override void Start()
            {
                    ProfileManager.LoadEmpty();
            }
    
            private static LocalPlayer Me { get { return StyxWoW.Me; } } 
       
    		private static Composite logic()
            {
                return new Action(delegate { trapType = Lua.GetReturnVal<int>("return trapNum", 0); });
            }
    		
    		static WoWPoint getPoint()
            {
                WoWUnit focus = Me.FocusedUnit;
                return focus.Location;
            }
        }
    }
    @Freezing Trap, i want to add a Scatter on Focus Unit if i press the Macro.
    Code:
                {
                    target = getPoint();
                    SpellManager.Cast("Freezing Trap");
                    SpellManager.ClickRemoteLocation(target);
                    Lua.DoString("trapNum = 0;");
                    trapType = 0;
                }
    I tried the following Code, but after editing the BotBase didnt showed up :/
    Code:
                {
                    target = getPoint();
                    SpellManager.Cast("Scatter Shot", ret => Me.FocusedUnit, ret => true, "Scatter Shot");
                    SpellManager.Cast("Freezing Trap");
                    SpellManager.ClickRemoteLocation(target);
                    Lua.DoString("trapNum = 0;");
                    trapType = 0;
                }
    Last edited by Noiselol; 10-23-2013 at 12:56 AM.

  3. #1083
    Noiselol's Avatar Member
    Reputation
    1
    Join Date
    Aug 2013
    Posts
    59
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Status: Trade
    Well i got it ..
    For everyone who wants the code;
    Code:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using Styx;
    using Styx.Common;
    using Styx.CommonBot;
    using Styx.CommonBot.POI;
    using Styx.CommonBot.Profiles;
    using Styx.CommonBot.Routines;
    using Styx.Helpers;
    using Styx.Pathing;
    using Styx.WoWInternals.WoWObjects;
    using Styx.TreeSharp;
    using Action = Styx.TreeSharp.Action;
    using Sequence = Styx.TreeSharp.Sequence;
    using Styx.WoWInternals;
    using Styx.WoWInternals.WoWObjects;
    namespace TrapBuddy
    {
        class TrapBuddy : BotBase
        {
            static int trapType = 0;
            WoWPoint target;
    
            public override string Name
            {
                get { return "TrapBuddy"; }
            }
            public override PulseFlags PulseFlags
            {
                get { return PulseFlags.All; }
            }
            public override void Pulse()
            {
                if (Me.FocusedUnit == null){
    					Lua.DoString("trapNum = 0;");
    					trapType = 0;
    					
    					return;
    				}
    
                if (trapType == 1)
                {
                    target = getPoint();
    		SpellManager.Cast("Scatter Shot", StyxWoW.Me.FocusedUnit);
                    SpellManager.Cast("Freezing Trap");
                    SpellManager.ClickRemoteLocation(target);
                    Lua.DoString("trapNum = 0;");
                    trapType = 0;
                }
                else
                    if (trapType == 2)
                    {
                        target = getPoint();
                        SpellManager.Cast("Explosive Trap");
                        SpellManager.ClickRemoteLocation(target);
                        Lua.DoString("trapNum = 0;");
                        trapType = 0;
                    }
                else
                    if (trapType == 3)
                    {
                        target = getPoint();
                        SpellManager.Cast("Ice Trap");
                        SpellManager.ClickRemoteLocation(target);
                        Lua.DoString("trapNum = 0;");
                        trapType = 0;
                    }
            }
    		
            private Composite _root;
            public override Composite Root
            {
                get
                {
                    return _root ?? (_root = 
                        new PrioritySelector(
                            logic()
                            )
                        );
                }
            }
            public override void Start()
            {
                    ProfileManager.LoadEmpty();
            }
    
            private static LocalPlayer Me { get { return StyxWoW.Me; } } 
       
    		private static Composite logic()
            {
                return new Action(delegate { trapType = Lua.GetReturnVal<int>("return trapNum", 0); });
            }
    		
    		static WoWPoint getPoint()
            {
                WoWUnit focus = Me.FocusedUnit;
                return focus.Location;
            }
        }
    }

  4. #1084
    xLegendx's Avatar Member
    Reputation
    14
    Join Date
    Sep 2011
    Posts
    827
    Thanks G/R
    3/3
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Status: Trade
    Warrior profile is still kicking ass as always.

    Got a whisper from the opposites teams hunter wanting to play with me:



    Owned Fuzionn & Beanslayer on his Rogue:

    Last edited by xLegendx; 10-23-2013 at 02:32 AM.

  5. #1085
    jshookz's Avatar Member
    Reputation
    1
    Join Date
    Aug 2013
    Posts
    203
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Status: Trade
    Originally Posted by xLegendx View Post
    Warrior profile is still kicking ass as always.

    Got a whisper from the opposites teams hunter wanting to play with me:



    Owned Fuzionn & Beanslayer on his Rogue:


    HAHA fuzion!! I was watching him stream earlier! Nice job legend!

  6. #1086
    cokx's Avatar Banned
    Reputation
    92
    Join Date
    Dec 2008
    Posts
    896
    Thanks G/R
    0/0
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cahe View Post
    Cokx still bug with shrooms bloom, rotation spam as before.
    Are you 100% sure that you have the latest version?
    I've tested it 3 BGs and didnt went into any bug

  7. #1087
    cahe's Avatar Member
    Reputation
    3
    Join Date
    Aug 2012
    Posts
    88
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Status: Trade
    Cokx yes i test new rev. still problem with shrooms when i delete it from rotation work perfect And i think shrooms lag rotations aswell. btw. i can use shrooms manual it no problem for me

  8. #1088
    GoodVodka's Avatar Member
    Reputation
    1
    Join Date
    Oct 2012
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Status: Trade
    Сokx, Check your bill PayPal.
    I'm Waiting for a letter by e-mail
    Last edited by GoodVodka; 10-23-2013 at 09:27 AM.

  9. #1089
    warzoner99's Avatar Member
    Reputation
    1
    Join Date
    Dec 2007
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Status: Trade
    Hey Cokx,

    For the Mistweaver profile, could you add the following (like I said, I have no problem donating):

    1. Zen Sphere. Should be roughly the same logic as Chi-Wave Heal. This is great for dot cleave, and high dispel teams
    2. Chi Brew. Could just set something up to use it when you are less than 1 chi.

  10. #1090
    jphill3426's Avatar Member
    Reputation
    1
    Join Date
    Apr 2008
    Posts
    40
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Status: Trade
    Cokx is there anyway you can shorten the range it tries to use mage table or soulwell? I'll notice I'm 15-20 yards away and it will spam I can't use that item over and over again until I cross half the continent to get away from it.

  11. #1091
    Noiselol's Avatar Member
    Reputation
    1
    Join Date
    Aug 2013
    Posts
    59
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Status: Trade
    Done some 1v2 Matches on my Monk with these Profiles .
    Album here

    Cokx Rokx

  12. #1092
    cokx's Avatar Banned
    Reputation
    92
    Join Date
    Dec 2008
    Posts
    896
    Thanks G/R
    0/0
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by jphill3426 View Post
    Cokx is there anyway you can shorten the range it tries to use mage table or soulwell? I'll notice I'm 15-20 yards away and it will spam I can't use that item over and over again until I cross half the continent to get away from it.

    No, but I will add a timer for that so that it will only pulse once every 2 seconds

  13. #1093
    kene23's Avatar Member
    Reputation
    1
    Join Date
    Jul 2013
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Status: Trade
    Hey man! good work, this profile is awesome but...i have some issues i use the monk wind walker.

    1) Para healer and focus don't work all the time
    2) When burst is "on" it take so looooong to invoque Xuen! The profile use all brew whenever he want...even if the option is off.
    3)Same for SEF...
    4)Your profile support Chi Brew talent? because it never use it...
    5) Is there any solution to hide "the macro menu" ?

    Waiting for your return,

  14. #1094
    cokx's Avatar Banned
    Reputation
    92
    Join Date
    Dec 2008
    Posts
    896
    Thanks G/R
    0/0
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Fixed the spam

    added Chi Brew and Zen Sphere for monk


    Originally Posted by kene23 View Post
    Hey man! good work, this profile is awesome but...i have some issues i use the monk wind walker.

    1) Para healer and focus don't work all the time
    2) When burst is "on" it take so looooong to invoque Xuen! The profile use all brew whenever he want...even if the option is off.
    3)Same for SEF...
    4)Your profile support Chi Brew talent? because it never use it...
    5) Is there any solution to hide "the macro menu" ?

    Waiting for your return,

    1) Maybe because he is DR'ed?
    2) There is no option for Brew. BurstTarget is only there to set a target for tigersbrew. Invoke should allways be used when tigers brew is up, I dont know why but its sometimes delayed.
    3) SEF is not a toggle to enable or disable SEF, its there to automatically search for an SEF target. But I will add a toggle to disable SEF completly
    4) MW -> yes
    5) Create a new Chat window, its only displayed in the General chat window

  15. #1095
    oswalt0's Avatar Corporal
    Reputation
    12
    Join Date
    Nov 2009
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Status: Trade
    I am having an issue changing the Modifier Keys, I am changing them in the PVP_Settings file under the Warlock part, every time I change them it seems to break the file, am I doing something wrong?


All times are GMT -5. The time now is 08:00 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search