Server Help Forum Index Server Help
Community forums for Subgame, ASSS, and bots
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   StatisticsStatistics   RegisterRegister 
 ProfileProfile   Login to check your private messagesLogin to check your private messages   LoginLogin (SSL) 

Server Help | ASSS Wiki (0) | Shanky.com
Making a bot....

 
Post new topic   Reply to topic Printable version
 View previous topic  Mambo Post :: Post Staying out of that thread...  View next topic  
Author Message
Assassin2684
Server Help Squatter


Age:34
Gender:Not sure
Joined: Jul 27 2004
Posts: 990
Location: Florida
Offline

PostPosted: Thu Oct 13, 2005 10:09 pm   Post maybe stupid    Post subject: Making a bot.... Reply to topic Reply with quote

Well I think its about time I get off my lazy ass and start to do some more programming stuff. I have decided to make a bot, not plugin just bot so I can add features built in then just add plugins if I wish. Ok so first things first, what gave me the idea was here: http://d1st0rt.sscentral.com/content/view/24/43/ .

I like it because it gives all these features I can add into my bot. Problem is the code snippets it gives I dont know where to put it. I could use as much help as possible, also I dont know if I need an updated version of this stuff because this page was made for a different version of merv. If anyone could help me, give different sites, ideas. Would all be greatful. Thanks in advance.
Back to top
View users profile Send private message Add User to Ignore List AIM Address
Purge
Episode I > Eposide III
Jar-Jar is kool


Age:35
Gender:Gender:Male
Joined: Sep 08 2004
Posts: 2019
Offline

PostPosted: Thu Oct 13, 2005 11:29 pm   Post maybe stupid    Post subject: Reply to topic Reply with quote

That link was a tutorial for making a MERVBot plugin, not a bot. sa_tongue.gif
Back to top
View users profile Send private message Add User to Ignore List
D1st0rt
Miss Directed Wannabe


Age:37
Gender:Gender:Male
Joined: Aug 31 2003
Posts: 2247
Location: Blacksburg, VA
Offline

PostPosted: Fri Oct 14, 2005 1:29 am   Post maybe stupid    Post subject: Reply to topic Reply with quote

If you want merv, check out the wiki

http://wiki.minegoboom.com/MERVBot_Tutorial

I have some tutorials for TWCore (which in my opinion is easier to deal with and actually promotes less script-kiddying) on that same site
_________________

Back to top
View users profile Send private message Add User to Ignore List Visit posters website
Assassin2684
Server Help Squatter


Age:34
Gender:Not sure
Joined: Jul 27 2004
Posts: 990
Location: Florida
Offline

PostPosted: Fri Oct 14, 2005 8:24 am   Post maybe stupid    Post subject: Reply to topic Reply with quote

Ok well mabye it dident show me how to set up a bot but it did give code snippets for plugins i think. I checked out the site and saw twcore stuff. But I would rather not get into that sence im fimilar with merv. I guess there really is no way to make your own bot so I guess I will make plugins.

Also, I use dev c++, when I open a new DLL project it looks like this:

Code: Show/Hide
#ifndef _DLL_H_
#define _DLL_H_

#if BUILDING_DLL
# define DLLIMPORT __declspec (dllexport)
#else /* Not BUILDING_DLL */
# define DLLIMPORT __declspec (dllimport)
#endif /* Not BUILDING_DLL */


class DLLIMPORT DllClass
{
  public:
    DllClass();
    virtual ~DllClass(void);

  private:

};


#endif /* _DLL_H_ */


Now when I go to make the plugin I have no idea where to put the stuff. Anyone give me some tips on how to do this?
Back to top
View users profile Send private message Add User to Ignore List AIM Address
Cyan~Fire
I'll count you!
I'll count you!


Age:37
Gender:Gender:Male
Joined: Jul 14 2003
Posts: 4608
Location: A Dream
Offline

PostPosted: Fri Oct 14, 2005 10:07 am   Post maybe stupid    Post subject: Reply to topic Reply with quote

No, No, No, No, No. Do not use any kind of pre-made setup provided by any IDE. It is evil.

Now, answer this: Do you actually want to make a standalone bot, or do you want to make a plugin?
_________________
This help is informational only. No representation is made or warranty given as to its content. User assumes all risk of use. Cyan~Fire assumes no responsibility for any loss or delay resulting from such use.
Wise men STILL seek Him.
Back to top
View users profile Send private message Add User to Ignore List Visit posters website
Assassin2684
Server Help Squatter


Age:34
Gender:Not sure
Joined: Jul 27 2004
Posts: 990
Location: Florida
Offline

PostPosted: Fri Oct 14, 2005 10:14 am   Post maybe stupid    Post subject: Reply to topic Reply with quote

Ok, What I really want to do is make my own bot that I can add my very own things to it. It would be like my bot and mine only unless someone wanted to use it kinda thing. Then If I wanted to add things I could make my own custom plugins for it.

Now if you think that would be a bit to hard for me and think I need more experience then I would go with plugins. But I really wanted a bot.
Back to top
View users profile Send private message Add User to Ignore List AIM Address
Solo Ace
Yeah, I'm in touch with reality...we correspond from time to time.


Age:37
Gender:Gender:Male
Joined: Feb 06 2004
Posts: 2583
Location: The Netherlands
Offline

PostPosted: Fri Oct 14, 2005 10:17 am   Post maybe stupid    Post subject: Reply to topic Reply with quote

Not trying to offend, but I think it'd be too hard for you, simply because you're not experienced enough.
But, if you'd really want to... it's never wrong to try.
Back to top
View users profile Send private message Add User to Ignore List
Assassin2684
Server Help Squatter


Age:34
Gender:Not sure
Joined: Jul 27 2004
Posts: 990
Location: Florida
Offline

PostPosted: Fri Oct 14, 2005 10:58 am   Post maybe stupid    Post subject: Reply to topic Reply with quote

Well if you think it would be to hard then it probably is. Mabye I should start off with some simple plugins and work my way up to a bot.
Back to top
View users profile Send private message Add User to Ignore List AIM Address
Quan Chi2
Member of "Sexy Teenagers that Code" Group
Member of


Age:34
Gender:Gender:Male
Joined: Mar 25 2005
Posts: 860
Location: NYC
Offline

PostPosted: Fri Oct 14, 2005 6:13 pm   Post maybe stupid    Post subject: Reply to topic Reply with quote

Yep. Or start reading books about programming in C, Java, or C++. I don't plan on making a bot core myself for a long time but mabye you should look at the source files that come with merv. Check them out and look for what a bot core contains.
Back to top
View users profile Send private message Add User to Ignore List Send email Visit posters website AIM Address Yahoo Messenger MSN Messenger
Cyan~Fire
I'll count you!
I'll count you!


Age:37
Gender:Gender:Male
Joined: Jul 14 2003
Posts: 4608
Location: A Dream
Offline

PostPosted: Fri Oct 14, 2005 11:26 pm   Post maybe stupid    Post subject: Reply to topic Reply with quote

I wouldn't really listen to Quan, he's just bluffing.

But yes, do start writing plugins for MERV. And do use the MERVBot Tutorial.
Back to top
View users profile Send private message Add User to Ignore List Visit posters website
Assassin2684
Server Help Squatter


Age:34
Gender:Not sure
Joined: Jul 27 2004
Posts: 990
Location: Florida
Offline

PostPosted: Fri Oct 14, 2005 11:57 pm   Post maybe stupid    Post subject: Reply to topic Reply with quote

Ok will do. Of course I will start out small and work my way up. Thanks guys for your help.
Back to top
View users profile Send private message Add User to Ignore List AIM Address
Quan Chi2
Member of "Sexy Teenagers that Code" Group
Member of


Age:34
Gender:Gender:Male
Joined: Mar 25 2005
Posts: 860
Location: NYC
Offline

PostPosted: Sat Oct 15, 2005 9:28 am   Post maybe stupid    Post subject: Reply to topic Reply with quote

LOL Cyan you would probably fall for the "bluff" if you were Assassin haha. But I don't think that there is anything wrong with looking through a bot core source to see what you're up against before starting your own bot core. Thats what I'm going to do anyway.

*Note to self*
---------------
Cyan thinks I'm bluffing.
Back to top
View users profile Send private message Add User to Ignore List Send email Visit posters website AIM Address Yahoo Messenger MSN Messenger
Cyan~Fire
I'll count you!
I'll count you!


Age:37
Gender:Gender:Male
Joined: Jul 14 2003
Posts: 4608
Location: A Dream
Offline

PostPosted: Sat Oct 15, 2005 9:57 am   Post maybe stupid    Post subject: Reply to topic Reply with quote

I meant that you were bluffing about knowing what to do, not that you would actually do it. I don't doubt that you will try to look through MERV's source; what I do is that you'll learn anything from it.
Back to top
View users profile Send private message Add User to Ignore List Visit posters website
Quan Chi2
Member of "Sexy Teenagers that Code" Group
Member of


Age:34
Gender:Gender:Male
Joined: Mar 25 2005
Posts: 860
Location: NYC
Offline

PostPosted: Sat Oct 15, 2005 11:21 am   Post maybe stupid    Post subject: Reply to topic Reply with quote

Looking through any bot cores source is what I would do.. Just to see what a basic bot core needs to work.. As for knowing WHAT to do.. I figure that its best to learn from experience and asking some questions along the way.
Back to top
View users profile Send private message Add User to Ignore List Send email Visit posters website AIM Address Yahoo Messenger MSN Messenger
Display posts from previous:   
Post new topic   Reply to topic    Server Help Forum Index -> Trash Talk All times are GMT - 5 Hours
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum
View online users | View Statistics | View Ignored List


Software by php BB © php BB Group
Server Load: 20 page(s) served in previous 5 minutes.

phpBB Created this page in 0.696607 seconds : 39 queries executed (80.4%): GZIP compression disabled