Post Reply Home » Forums » MMOViper Forums (PUBLIC) » General Discussion Area
  • Scripting Idea - Task Manager : General Discussion Area
User avatar
Site Admin
Posts:20208 Joined:Tue Oct 16, 2007 7:01 am
Here is a sample.. subject to change on a task manager type of plugin. The idea here is you script up a bunch of tasks and let the bot go do them.

In this example, I have the bot run to a NPC, accept the quest, and then run do the quest.

Any suggestions/thoughts on this?

Code: Select all

            TaskManager.Enqueue(BotAction.Path, "Level3-WolvesAfterKingsfoil");
            TaskManager.Enqueue(BotAction.Hail, "Dirk"); //Dirk Mudbrick
            TaskManager.Enqueue(BotAction.Rest, 500);//Rest for 1/2 seconds
            TaskManager.Enqueue(BotAction.Click, (Point)Globals._p.GetPoint("QUEST_LEFT_BUTTON")); //Acce Quest
            TaskManager.Enqueue(BotAction.Rest, 3000);//Rest for 3 seconds
            TaskManager.Enqueue(BotAction.Path, "Level3-DirkToSpyPatrol");

            PatrolArea Patrol = new PatrolArea ();
                Patrol .Path = "Level3-Patrol-BlackwoldSpy";
                Patrol .MobArray = new Hashtable();
                Patrol .MobArray.Add("Blackwold Spy", 1);//1 blackwold spy Required for QUEST stop when done
                Patrol .MobArray.Add("Bristlehide Piglet", 0); //Kill as many as you see
                Patrol .MobArray.Add("Growling Dusk-wolf", 0);//Kill as many as you see

            TaskManager.Enqueue(BotAction.Patrol, Patrol ); // Do the patrol
Posts:54 Joined:Thu Mar 29, 2012 7:37 pm
I thank its a great idea. Also did you get to play Neverwinter?
User avatar
Site Admin
Posts:20208 Joined:Tue Oct 16, 2007 7:01 am
I did. I dont know how much a bot is needed. With the addition of player run dungeons.. can you just make a dungeon that gives you whatever you want?
Posts:54 Joined:Thu Mar 29, 2012 7:37 pm
That's true and not true, they put limitations on how much loot you get. There is still a lot of open instance in the game where people can grind their characters and also grind for money.

And besides all that if you do make a bot for neverwinter people could make Pacific Lee design foundry missions just for MMO Viper.

I know for myself I would really appreciate a bot for neverwinter that way I can just let the Viper I bot do all the grounding for me and then I can come back and blow through my missions and have a lot of fun.

If it is really hard to make a bot for Pacific games I do understand. Because trust me I have no idea how much coding it goes into each game. But if there's any way for you to make a simple bot that can do a little bit grounding and pick up loot I would be very happy and I know others would as well.

I rest my case LOL thanks for reading Viper.
User avatar
Site Admin
Posts:20208 Joined:Tue Oct 16, 2007 7:01 am
OIC, I didnt know that. Makes sense though. I'll see what I can do.
Posts:54 Joined:Thu Mar 29, 2012 7:37 pm
Thank you viper that all I can ask for!!!
User avatar
Site Admin
Posts:20208 Joined:Tue Oct 16, 2007 7:01 am
It should be fairly easy.. its basically the same interaction/style as tera.
Posts:54 Joined:Thu Mar 29, 2012 7:37 pm
Hey that means another bot for mmo viper the more bots the more chance you have to making money!!!

And I for one feel that you deserve it because I love MMO Viper!!!
Post Reply

Return to “General Discussion Area”