Afk-Bot WG Fishing menu

User Tag List

Page 2 of 2 FirstFirst 12
Results 16 to 27 of 27
  1. #16
    [Sadistic]'s Avatar Member
    Reputation
    42
    Join Date
    Sep 2009
    Posts
    247
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by gippy View Post
    Works perfectly fine for me, took it from page 249 of the thread about a week and a half ago.

    been in wg everynight since, waking up with a full inv.
    all i can say is be careful

    Afk-Bot WG Fishing
  2. #17
    Hijjinx's Avatar Member
    Reputation
    5
    Join Date
    Jun 2008
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can you give us a link to were we can find it???

  3. #18
    Guitars595's Avatar Member
    Reputation
    19
    Join Date
    Mar 2008
    Posts
    62
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I get disconnected a lot when I'm under the ground -.-

  4. #19
    Thatonepaladin's Avatar Corporal
    Reputation
    8
    Join Date
    Dec 2009
    Posts
    30
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by [Sadistic] View Post
    all i can say is be careful
    Yea i red through a few posts and found the one on 249, it works perfectly btw.

    I reuploaded it a while ago for a friend, just the statecast.cs file
    DL at your discretion

    Statecast.cs
    (most rar programs could uncompress that).
    And so, Christ said to his disciples "I shall grant you eternal Salvation". The disciples fell to their knees and replied "Give us Kings and we'll +Rep"!

  5. #20
    jsmb768ypl's Avatar Member
    Reputation
    7
    Join Date
    Dec 2008
    Posts
    17
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Mr Fish It WG State Will Join the battle and leave the group (will leave any and every group no matter what zone)

    You didnt read the whole thread you didnt even go back 15 pages other wise you would have noticed I posted a WG state for the guy that was asking for it.

    http://www.mmowned.com/forums/bots-p...ml#post1762466

    Still if you dont use Mr Fish It I guess this program would have a use for you, Im not trying to bash your program just trying to correct your post saying mr fish it cant fish wintergrasp

    Code:
    using System;
    using System.Diagnostics;
    using System.Linq;
    using System.Threading;
    using Medusa.Finite_State_Machine;
    using Medusa.Helpers;
    using Medusa.Logic.Combat;
    using Medusa.Object_Dumping_Enumeration;
    using Medusa.Memory_Read_Write_Inject.Lua;
    using SmartAssembly.Attributes;
    
    
    namespace MrFishIt.States
    {
        public class StateCast : IState
        {
            #region Implementation of IState
    
            public string StatusText { get { return "Cast"; } }
    
            public int Priority { get { return 4; } }
    
            public bool NeedToRun { get { return !Medusa.Logic.Fishing.Fishing.IsFishing; } }
    
            public void Run()
            {
                Lua.DoString("if GetRealZoneText() == \"Wintergrasp\" then StaticPopup1Button1:Click() StaticPopup2Button1:Click() LeaveParty() end");
                
    
                var spell = (ObjectManager.Me.KnownSpells.Values.Where(
                    b => b.ID == 7620 || b.ID == 7731 || b.ID == 7732 || b.ID == 18248 || b.ID == 33095 || b.ID == 51294 || b.ID == 62734)
                    ).FirstOrDefault();           
    
                if (spell != null)
                {
                    Logging.Write("[Fishing]: Casting");
                    SpellManager.CastSpellById(spell.ID);
    
                    var rand = new Random();
                    int waitTime = rand.Next(500, 1500);
    
                    var watch = new Stopwatch();
                    watch.Start();
    
                    while (ObjectManager.Me.ChanneledCasting == 0 && watch.ElapsedMilliseconds <= waitTime)
                        Thread.Sleep(1);
    
                    watch.Reset();
                }
                else
                    Logging.Write("[Fishing]: Unable to find fishing spell");
            }
    
            #endregion
        }
    }

  6. #21
    [Sadistic]'s Avatar Member
    Reputation
    42
    Join Date
    Sep 2009
    Posts
    247
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by jsmb768ypl View Post
    Mr Fish It WG State Will Join the battle and leave the group (will leave any and every group no matter what zone)

    You didnt read the whole thread you didnt even go back 15 pages other wise you would have noticed I posted a WG state for the guy that was asking for it.

    http://www.mmowned.com/forums/bots-p...ml#post1762466

    Still if you dont use Mr Fish It I guess this program would have a use for you, Im not trying to bash your program just trying to correct your post saying mr fish it cant fish wintergrasp

    Code:
    using System;
    using System.Diagnostics;
    using System.Linq;
    using System.Threading;
    using Medusa.Finite_State_Machine;
    using Medusa.Helpers;
    using Medusa.Logic.Combat;
    using Medusa.Object_Dumping_Enumeration;
    using Medusa.Memory_Read_Write_Inject.Lua;
    using SmartAssembly.Attributes;
    
    
    namespace MrFishIt.States
    {
        public class StateCast : IState
        {
            #region Implementation of IState
    
            public string StatusText { get { return "Cast"; } }
    
            public int Priority { get { return 4; } }
    
            public bool NeedToRun { get { return !Medusa.Logic.Fishing.Fishing.IsFishing; } }
    
            public void Run()
            {
                Lua.DoString("if GetRealZoneText() == \"Wintergrasp\" then StaticPopup1Button1:Click() StaticPopup2Button1:Click() LeaveParty() end");
                
    
                var spell = (ObjectManager.Me.KnownSpells.Values.Where(
                    b => b.ID == 7620 || b.ID == 7731 || b.ID == 7732 || b.ID == 18248 || b.ID == 33095 || b.ID == 51294 || b.ID == 62734)
                    ).FirstOrDefault();           
    
                if (spell != null)
                {
                    Logging.Write("[Fishing]: Casting");
                    SpellManager.CastSpellById(spell.ID);
    
                    var rand = new Random();
                    int waitTime = rand.Next(500, 1500);
    
                    var watch = new Stopwatch();
                    watch.Start();
    
                    while (ObjectManager.Me.ChanneledCasting == 0 && watch.ElapsedMilliseconds <= waitTime)
                        Thread.Sleep(1);
    
                    watch.Reset();
                }
                else
                    Logging.Write("[Fishing]: Unable to find fishing spell");
            }
    
            #endregion
        }
    }
    its all good man

  7. #22
    mascondante's Avatar Member
    Reputation
    4
    Join Date
    Oct 2009
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    cool. if this does what I think it does I'd like to see something like this for herbin.

  8. #23
    WhiteShizzle's Avatar Active Member
    Reputation
    17
    Join Date
    Jun 2008
    Posts
    248
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by jsmb768ypl View Post
    Mr Fish It WG State Will Join the battle and leave the group (will leave any and every group no matter what zone)

    You didnt read the whole thread you didnt even go back 15 pages other wise you would have noticed I posted a WG state for the guy that was asking for it.

    http://www.mmowned.com/forums/bots-p...ml#post1762466

    Still if you dont use Mr Fish It I guess this program would have a use for you, Im not trying to bash your program just trying to correct your post saying mr fish it cant fish wintergrasp

    Code:
    using System;
    using System.Diagnostics;
    using System.Linq;
    using System.Threading;
    using Medusa.Finite_State_Machine;
    using Medusa.Helpers;
    using Medusa.Logic.Combat;
    using Medusa.Object_Dumping_Enumeration;
    using Medusa.Memory_Read_Write_Inject.Lua;
    using SmartAssembly.Attributes;
    
    
    namespace MrFishIt.States
    {
        public class StateCast : IState
        {
            #region Implementation of IState
    
            public string StatusText { get { return "Cast"; } }
    
            public int Priority { get { return 4; } }
    
            public bool NeedToRun { get { return !Medusa.Logic.Fishing.Fishing.IsFishing; } }
    
            public void Run()
            {
                Lua.DoString("if GetRealZoneText() == \"Wintergrasp\" then StaticPopup1Button1:Click() StaticPopup2Button1:Click() LeaveParty() end");
                
    
                var spell = (ObjectManager.Me.KnownSpells.Values.Where(
                    b => b.ID == 7620 || b.ID == 7731 || b.ID == 7732 || b.ID == 18248 || b.ID == 33095 || b.ID == 51294 || b.ID == 62734)
                    ).FirstOrDefault();           
    
                if (spell != null)
                {
                    Logging.Write("[Fishing]: Casting");
                    SpellManager.CastSpellById(spell.ID);
    
                    var rand = new Random();
                    int waitTime = rand.Next(500, 1500);
    
                    var watch = new Stopwatch();
                    watch.Start();
    
                    while (ObjectManager.Me.ChanneledCasting == 0 && watch.ElapsedMilliseconds <= waitTime)
                        Thread.Sleep(1);
    
                    watch.Reset();
                }
                else
                    Logging.Write("[Fishing]: Unable to find fishing spell");
            }
    
            #endregion
        }
    }
    This might be a dumb question, But would if work even if i'm not fishing, But mining?

  9. #24
    GriffinB's Avatar Member
    Reputation
    1
    Join Date
    Aug 2009
    Posts
    21
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    it works for me very cool,thanks

  10. #25
    LockeKAF's Avatar Member
    Reputation
    1
    Join Date
    Sep 2009
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have question about that code. What if i have not EU version of WOW, and wintergrasp zone in my client names differently, and consists 3 words. How to edit zone name, including spaces between words? Just replacing don't work..

    PS sry, english not my native

  11. #26
    Pauma's Avatar Member
    Reputation
    9
    Join Date
    May 2009
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You should add if its active or not! +rep thought!

  12. #27
    frank123321's Avatar Member
    Reputation
    7
    Join Date
    Feb 2009
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    download link seems broken, can't get it to work :/

Page 2 of 2 FirstFirst 12

Similar Threads

  1. [Bot] Anti-AFK Bot (No Injection & Focus not Needed)
    By Cypher in forum World of Warcraft Bots and Programs
    Replies: 12
    Last Post: 09-10-2006, 11:14 AM
  2. Working AFK bot.
    By XxKajxX in forum World of Warcraft Bots and Programs
    Replies: 19
    Last Post: 08-30-2006, 08:00 PM
  3. Step-By-Step Create Your Own AFK Bot! MMOwned Exclusive!
    By =sinister= in forum World of Warcraft Guides
    Replies: 6
    Last Post: 07-26-2006, 09:04 PM
  4. [Program] WoW AV AFK Bot
    By Cypher in forum World of Warcraft Bots and Programs
    Replies: 0
    Last Post: 05-22-2006, 05:04 AM
  5. AutoIt Macro for WoW AFK Bot
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 8
    Last Post: 04-06-2006, 06:01 AM
All times are GMT -5. The time now is 05:22 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search