Jump to content

Possible to search for object?


KnightRyder

Recommended Posts

Is there a way to setup something in a profile (or maybe fight class?) to routinely check to see if a clickable in game object is nearby? 

I had this old profile when I used Cybot a couple years ago where it would fly around dread wastes looking for certain items. I could set it to look for ID 213964 which is Malik's Stalwart Spear http://www.wowhead.com/object=213964 and if it found it I could set it to preform certain functions, like to loot it, whisper someone, or my personal favorite, play a sound file.

I don;t personally see how to add something like this to a profile, so I was thinking fightclass, but I am not good with the programming and such to thought I would ask here. Any suggestions on how to do this?

Link to comment
Share on other sites

Hello,

You can add custom objects to harvest in advanced general settings tab "Farming..." (or in profile/product settings if you use product gatherer/quester/automaton/custom).

You can also use tab "Map" and search the object by name (use radar 3d to show it in game).

It is possible to create an plugin that stop bot/play soung/... when the object is near.

Link to comment
Share on other sites

You can found some others source code here: http://wrobot.eu/files/category/26-plugins/

I have write sample code (no tested):

using System.Collections.Generic;
using System.Threading;
using System.Windows.Forms;
using robotManager.Helpful;
using robotManager.Products;
using wManager.Plugin;
using wManager.Wow.Helpers;
using Timer = robotManager.Helpful.Timer;

public class Main : IPlugin
{
    private List<string> Names = new List<string>
    {
        "ObjNpc Name 1",
        "ObjNpc Name 2",
        "ObjNpc Name ...",
    };

    private bool _isLaunched;

    public void Initialize()
    {
        _isLaunched = true;
        var timer = new Timer(1500);
        timer.ForceReady();
        Logging.Write("[Search Objects] Loadded.");
        while (_isLaunched && Products.IsStarted)
        {
            try
            {
                if (timer.IsReady && Conditions.ProductIsStartedNotInPause)
                {
                    foreach (var o in wManager.Wow.ObjectManager.ObjectManager.GetObjectWoWUnit())
                    {
                        try
                        {
                            if (o.IsValid && !string.IsNullOrEmpty(o.Name) && Names.Contains(o.Name))
                            {
                                // Code here where NPC found:
                                MessageBox.Show("Npc found: " + o.Name);
                            }
                        }
                        catch {}
                    }

                    foreach (var o in wManager.Wow.ObjectManager.ObjectManager.GetObjectWoWGameObject())
                    {
                        try
                        {
                            if (o.IsValid && !string.IsNullOrEmpty(o.Name) && Names.Contains(o.Name))
                            {
                                // Code here where object found:
                                MessageBox.Show("Object found: " + o.Name);
                            }
                        }
                        catch { }
                    }

                    timer.Reset();
                }
            }
            catch { }

            Thread.Sleep(300);
        }
    }

    public void Dispose()
    {
        _isLaunched = false;

        Logging.Write("[Search Objects] Disposed.");
    }

    public void Settings()
    {
        MessageBox.Show("[Search Objects] No settings for this plugin.");
    }
}

(replace "ObjNpc Name ..." line 15 by object or npc name (case sensitivity))

Link to comment
Share on other sites

Ok, thanks for this, I got it working almost perfectly. How can I get it to make noise, play a sound file, or play in game sound file? Like sending macro/text in game like:

/console Sound_EnableSFX 1

/script PlaySoundFile("Sound\\Creature\\Rotface\\IC_Rotface_Aggro01.ogg")


I would imagine I would put it in the line where it says "code here where object/npc found?"

Link to comment
Share on other sites

To run lua code:

 Lua.LuaDoString("PlaySoundFile('Sound\\Creature\\Rotface\\IC_Rotface_Aggro01.ogg')");

To run lua macro:

Lua.RunMacroText("/console Sound_EnableSFX 1");

To run lua code and get value:

var luaValue = Lua.LuaDoString<string>("return GetUnitName('target');");

To play sound with WRobot (in c#):

                            var myPlayer = new System.Media.SoundPlayer
                            {
                                SoundLocation = Application.StartupPath + "\\Data\\newWhisper.wav"
                            };
                            var tPlay = new robotManager.Helpful.Timer(1000 * 5); // 5 sec = 5000 ms
                            while (!tPlay.IsReady)
                            {
                                myPlayer.PlaySync();
                            }
                            myPlayer.Stop();

 

Link to comment
Share on other sites

I still can't get it to make any sounds. I've tried: 

Lua.LuaDoString("PlaySoundFile('Sound\\Creature\\Rotface\\IC_Rotface_Aggro01.ogg')");

Lua.LuaDoString("PlaySoundFile('Sound\\Creature\\Rotface\\IC_Rotface_Aggro01.ogg'");

Lua.LuaDoString("PlaySoundKitID(16986)");

Lua.RunMacroText("/script PlaySoundKitID(16986)");

and a couple more variations. If i type the /script i have from a macro, sound files do play and work.

 

I even tried to add in the code to play sound in WRobot. I didn't have a newWhisper.wav file, so I went and made one. Doesn't seem to play it. Any more suggestions?

Link to comment
Share on other sites

Wow seem play game sound only when window is on foreground.

 

If you want use default wrobot alarm sound use:

                            var myPlayer = new System.Media.SoundPlayer(wResources.Resource.NewWhisper);
                            var tPlay = new robotManager.Helpful.Timer(1000 * 5); // 5 sec = 5000 ms
                            while (!tPlay.IsReady)
                            {
                                myPlayer.PlaySync();
                            }
                            myPlayer.Stop();

 

Link to comment
Share on other sites

That sound isn't working either. I've attached the plugin if you want to take a look to see if there is something i'm missing. I've stolen some code from the Wait Party plugin to try and get it to pause when it gets near, it kinda works. I'm just trying to get the sound thing to work first.

 

Also attached a simple profile that flies outside the horde garrison as a test profile to get the plugin to detect the Frozen Fury npc.

Search.cs

test.xml

Link to comment
Share on other sites

Try it:

using System.Collections.Generic;
using System.Threading;
using System.Windows.Forms;
using robotManager.Helpful;
using robotManager.Products;
using wManager.Plugin;
using wManager.Wow.Helpers;
using Timer = robotManager.Helpful.Timer;

public class Main : IPlugin
{
    private List<string> Names = new List<string>
    {
        "Frozen Fury",
        "Warsong Initiate",
        "",
    };

    private bool _isLaunched;

    public void Initialize()
    {
        _isLaunched = true;
        var timer = new Timer(1500);
        timer.ForceReady();
        Logging.Write("[Search Objects] Loaded.");
        while (_isLaunched && Products.IsStarted)
        {
            try
            {
                if (timer.IsReady && Conditions.ProductIsStartedNotInPause)
                {
                    foreach (var o in wManager.Wow.ObjectManager.ObjectManager.GetObjectWoWUnit())
                    {
                        try
                        {
                            if (o.IsValid && !string.IsNullOrEmpty(o.Name) && Names.Contains(o.Name))
                            {
                                Logging.Write("NPC found: " + o.Name);
                                ObjectFound();
                            }
                        }
                        catch { }
                    }

                    foreach (var o in wManager.Wow.ObjectManager.ObjectManager.GetObjectWoWGameObject())
                    {
                        try
                        {
                            if (o.IsValid && !string.IsNullOrEmpty(o.Name) && Names.Contains(o.Name))
                            {
                                Logging.Write("Object found: " + o.Name);
                                ObjectFound();
                            }
                        }
                        catch { }
                    }

                    timer.Reset();
                }
            }
            catch { }

            Thread.Sleep(300);
        }
    }

    public void ObjectFound()
    {
        // Pause bot:
        Products.InPause = true;
        Fight.StopFight();
        MovementManager.StopMove();
        LongMove.StopLongMove();

        // Play sound In Game
        //Lua.RunMacroText("/console Sound_EnableSFX 1");
        Lua.LuaDoString(@"PlaySoundFile('Sound\\Creature\\Rotface\\IC_Rotface_Aggro01.ogg')");

        // Play sound from WRobot
        var myPlayer = new System.Media.SoundPlayer(wResources.Resource.NewWhisper);
        var tPlay = new Timer(1000 * 5); // 5 sec = 5000 ms
        while (!tPlay.IsReady)
        {
            myPlayer.PlaySync();
        }
        myPlayer.Stop();

        // Wait during bot in pause
        while (_isLaunched && Products.InPause && Products.IsStarted)
        {
            Thread.Sleep(10);
        }
    }

    public void Dispose()
    {
        _isLaunched = false;

        Logging.Write("[Search Objects] Disposed.");
    }

    public void Settings()
    {
        MessageBox.Show("[Search Objects] No settings for this plugin.");
    }
}

(Sound is played in method(function) ObjectFound())

Link to comment
Share on other sites

Yes, replace

        // Wait during bot in pause
        while (_isLaunched && Products.InPause && Products.IsStarted)
        {
            Thread.Sleep(10);
        }

By:

        // Wait during bot in pause
        var pauseTime = new Timer(1000 * 5); // 5 sec = 5000 ms
        while (!pauseTime.IsReady && _isLaunched && Products.InPause && Products.IsStarted)
        {
            Thread.Sleep(10);
        }
        Products.InPause = false;

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...