Jump to content

te_di

Members
  • Posts

    34
  • Joined

  • Last visited

Posts posted by te_di

  1. 10 hours ago, Weiveismart said:

    It's not report on mywowgold 15 lvl man.

    they are joking. They want you to buy their paid profiles that's why they tell you that wrobot isn't detected and hope you will pay for subscribe and e.t.c. as for me of course.
    I'm botting on warmane since 2018 and have seen when it's detectable or not

  2. On 1/12/2021 at 1:51 AM, c8014752 said:

    what do you the bot do ? I used the bot farming herb and ore , Maybe because of the old Profiles .Maybe it's because of farming too long.The system will mark these .

    Hello, I think warmane has some detection system. My accounts banned too. All was ok till October for me, and after that everytime when I try to bot on wRobot - All my accounts got ban. I use my custom quester profiles, it didn't help ?

  3. 12 hours ago, Wiceradon said:

    Hey, I'm currently testing my custom quester profile on warmane and got banned there already on 2 accounts. I've only been botting for about 3-5 hours a day and got the accounts banned after a while botting with no interaction from anyone or anything. Does anyone know about their "Anticheat" measures? Can they detect the bot or was it just bad luck?

     

     

     

    Hello, I think warmane has some detection system. My accounts banned too. All was ok till October for me, and after that everytime when I try to bot on wRobot - All my accounts got ban. I use my custom quester profiles, it didn't help ?

  4. On 8/9/2020 at 1:25 AM, TheSmokie said:

    Hello, This code works for your quest. Thank you @droidz for the idea of removing u.IsMyPet. (Tested,)

     

    
    public sealed class Abduction : QuestClass
    {
    	public Abduction()
    	{
    		Name = "Abduction";
    		QuestId.Add(11590);
    		Step.AddRange(new[] { 1, 0, 0, 0, 0 });
    	}
    
    	public override bool IsComplete()
    	{
    		if(ObjectManager.GetObjectWoWUnit().Count(u => u.Name == "Captured Beryl Sorcerer") == 1)
            {
    			Conditions.ForceIgnoreIsAttacked = false;
    		}
    		return ObjectManager.GetObjectWoWUnit().Count(u => u.Name == "Captured Beryl Sorcerer") == 1 &&
    					Conditions.ForceIgnoreIsAttacked == false;
    	}
    	public override bool Pulse()
    	{
    		string TarName = "Beryl Sorcerer";
    		var  HostleNpc = ObjectManager.GetNearestWoWUnit(ObjectManager.GetWoWUnitByEntry(25316));
    
    		var hotspots = new List<Vector3>()
    		{
    			new Vector3(3486.18f, 6074.44f, 65.86797f),
    			new Vector3(3362.955f, 6091.348f, 66.686f)
    		};
    		Conditions.ForceIgnoreIsAttacked = true;
    		if (HostleNpc != null && HostleNpc.IsValid && !ObjectManager.Me.InCombat)
    		{
    			GoToTask.ToPositionAndIntecractWithNpc(HostleNpc.Position, HostleNpc.Entry);
    			return true;
    		}
    		if (ObjectManager.Target.Name == TarName)
    		{
    			if (ObjectManager.Me.InCombat)
    			{
    				Lua.LuaDoString("AttackTarget();");
    				if (ObjectManager.Target.HealthPercent <= 55)
    				{
    					Lua.LuaDoString("StopAttack();");
    					ItemsManager.UseItem(34691);
    					return true;
    				}
    			}
    			return true;
    		}
    		GoToTask.ToPositionAndIntecractWithNpc(hotspots[Others.Random(0, hotspots.Count - 1)], 29488, 1);
    		return true;
    	}
    }

     

    Thanks! I will check it!

  5. On 8/3/2020 at 8:24 AM, TheSmokie said:

    If you tell me if he is your pet (use Dev tools, C# and past this code,) i can make you a custom code for this quest like i used for ponys in my death knight profile, i just need to know if he returns as a pet or not and quest info like what item you use on him etc.

    run this code and look at logs to see if he returns as a pet or not after you use pet on him.

    
    if(ObjectManager.GetObjectWoWUnit().Count(u => u.IsMyPet && u.Name == "Put name here"))
    {
    Logging.Write("Yes");
    }
    else
    Logging.Write("no");

     

    Sorry for late response. Hope It's still avaliable.
    I've made what you asked and:

    Cannot run C# code:
    Compilator Error :
    e:\WRobot\Data\temp\am41c1gz.0.cs(22,12) : error CS0029:

    ( robotManager.Helpful.Var.SetVar("dbgOutput", VALUE_HERE); )
    dbgOutput =
    Execute time: 1660

    =[

  6. Hey! Have a problem with quest Abduction on WotLK

    Bot have to use item on weakened NPC and bring him to quest giver.
    I've done with cathing npc, but bot continue taming npcs because quest hasn't have complete condition "Catch the npc"
    So my question is: How can i force bot go to quest giver after cathing npc?

    Sorry if wrote smth incorrect, Hope you can undesrand my exploration

    Thanks!

    1qest.png

    2qest.png

×
×
  • Create New...