Scripting Idea - Task Manager

Anything related to MMOViper that doesn't fit in a better forum. All are welcome to participate. Also use this area for pre-sale members to ask questions.

Moderator: ScreamingEagle

Post Reply
Message
Author
PitViper
Site Admin
Posts: 20741
Joined: Tue Oct 16, 2007 7:01 am

Scripting Idea - Task Manager

#1 Post by PitViper »

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

caden83
Posts: 60
Joined: Thu Mar 29, 2012 7:37 pm

Re: Scripting Idea - Task Manager

#2 Post by caden83 »

I thank its a great idea. Also did you get to play Neverwinter?

PitViper
Site Admin
Posts: 20741
Joined: Tue Oct 16, 2007 7:01 am

Re: Scripting Idea - Task Manager

#3 Post by PitViper »

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?

caden83
Posts: 60
Joined: Thu Mar 29, 2012 7:37 pm

Re: Scripting Idea - Task Manager

#4 Post by caden83 »

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.

PitViper
Site Admin
Posts: 20741
Joined: Tue Oct 16, 2007 7:01 am

Re: Scripting Idea - Task Manager

#5 Post by PitViper »

OIC, I didnt know that. Makes sense though. I'll see what I can do.

caden83
Posts: 60
Joined: Thu Mar 29, 2012 7:37 pm

Re: Scripting Idea - Task Manager

#6 Post by caden83 »

Thank you viper that all I can ask for!!!

PitViper
Site Admin
Posts: 20741
Joined: Tue Oct 16, 2007 7:01 am

Re: Scripting Idea - Task Manager

#7 Post by PitViper »

It should be fairly easy.. its basically the same interaction/style as tera.

caden83
Posts: 60
Joined: Thu Mar 29, 2012 7:37 pm

Re: Scripting Idea - Task Manager

#8 Post by caden83 »

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”