User Control Panel
Advertisements

HELP US, HELP YOU!

MayaBot v4.0
Goto page Previous  1, 2, 3, 4, 5  Next
 
Post new topic   Reply to topic    Bot Depot Forum Index -> Templates
View unanswered posts
Author Message
Dazzy
Agent
Agent


Joined: 09 Jan 2004
Posts: 1731

Reputation: 72.3

PostPosted: Sun Jan 23, 2005 12:35 am    Post subject: Reply with quote

QUOTE(Donut @ Jan 22 2005, 11:58 PM)
i only wish i could use this bot but i dont know programming  Sad  :unsure:

You dont need to...you can run it and then learn from how it works and use you're experience to customize it....thats the whole point of templates...to help people get started...
Back to top
JTW
God Like
God Like


Joined: 07 Mar 2004
Posts: 579
Location: Maidstone
Reputation: 67.1
votes: 4

PostPosted: Fri Feb 04, 2005 7:39 am    Post subject: Reply with quote

Have you put your self as the bots owner/mod/admin?
_________________
"Help us, Help you" - BotDepot
Back to top
purcelly
God Like
God Like


Joined: 10 Jun 2004
Posts: 560
Location: North West, England
Reputation: 35.1Reputation: 35.1Reputation: 35.1Reputation: 35.1

PostPosted: Fri Feb 04, 2005 6:51 pm    Post subject: Reply with quote

Quote:
When i first ran the program it asked me to add a username(email) for the admin i typed my email and continuted filling out the questions.


Cody

P.S. if that is not the way to add meself to admin, mod then please tell me how i can add myself becuase im stuck. 


No that is the way to add yourself to admin

make sure you typed it right (inc. caps)

-----------------------------------------

link to msn 2 is here
http://www.bot-depot.com/forums/index.php?showtopic=5493
Back to top
purcelly
God Like
God Like


Joined: 10 Jun 2004
Posts: 560
Location: North West, England
Reputation: 35.1Reputation: 35.1Reputation: 35.1Reputation: 35.1

PostPosted: Fri Feb 04, 2005 8:24 pm    Post subject: Reply with quote

sorry i cant suggest anything i haven't encountered that problem before

try re-setting up the bot
Back to top
cornetto soft
Member
Member


Joined: 19 Feb 2004
Posts: 103
Location: Ille et Vilaine - Bretagne - FRANCE
Reputation: 29Reputation: 29Reputation: 29

PostPosted: Tue Feb 15, 2005 10:45 pm    Post subject: Reply with quote

Great great great !! I love it so Razz

Oh, just a f**k : i can't send a nudge Sad

I use :
Code:
$self->sendNudge();
in nudge.maya

I wrote
Code:
sub sendNudge<br />{<br />   my $self = shift;<br />   my $nudge = "MIME-Version: 1.0\*lazy*\n".<br />              "Content-Type: text/x-msnmsgr-datacast\*lazy*\n".<br />              "\*lazy*\n".<br />              "ID: 1\*lazy*\n".<br />              "\*lazy*\n";<br />   $self->sendraw("MSG", "N ".length($nudge)."\*lazy*\n$nudge");<br />}
in msn.pm

But it doesn't work when i write !nudge Sad
Can you help me ?? :unsure:
Back to top
Cer
Upgraded Agent
Upgraded Agent


Joined: 03 Feb 2004
Posts: 3776
Location: Michigan
Reputation: 146.9
votes: 4

PostPosted: Tue Feb 15, 2005 10:47 pm    Post subject: Reply with quote

QUOTE(cornetto soft @ Feb 15 2005, 05:45 PM)
Great great great !! I love it so  Razz

Oh, just a f**k : i can't send a nudge Sad

I use :
Code:
$self->sendNudge();
in nudge.maya

I wrote
Code:
sub sendNudge<br />{<br />   my $self = shift;<br />   my $nudge = "MIME-Version: 1.0\*lazy*\n".<br />              "Content-Type: text/x-msnmsgr-datacast\*lazy*\n".<br />              "\*lazy*\n".<br />              "ID: 1\*lazy*\n".<br />              "\*lazy*\n";<br />   $self->sendraw("MSG", "N ".length($nudge)."\*lazy*\n$nudge");<br />}
in msn.pm

But it doesn't work when i write !nudge  Sad
Can you help me ??  :unsure:

What do you mean it doesn't work? Does your bot crash? Does it spit out any errors? Or does it just sit there and not send a nudge? We need info!

_________________
Current Site (2008) http://www.cuvou.com/
Back to top
cornetto soft
Member
Member


Joined: 19 Feb 2004
Posts: 103
Location: Ille et Vilaine - Bretagne - FRANCE
Reputation: 29Reputation: 29Reputation: 29

PostPosted: Tue Feb 15, 2005 10:48 pm    Post subject: Reply with quote

Oh yeah ! sorry

It doesn't send a nudge

Only this in the console :
Quote:
[23:40:21] [me]@hotmail.com: !nudge
Executing nudge command
Back to top
sillyJ
Newbie
Newbie


Joined: 07 Mar 2005
Posts: 11

Reputation: 14.4

PostPosted: Wed Mar 09, 2005 9:23 pm    Post subject: Reply with quote

hello
can i please use the AI code that you made for maya, and could you please send me all of the coded needed to make it work.
thanks
Back to top
darkmonkey
The Merovingian
The Merovingian


Joined: 18 Apr 2004
Posts: 2557
Location: London, England
Reputation: 39.3Reputation: 39.3Reputation: 39.3Reputation: 39.3
votes: 7

PostPosted: Wed Mar 09, 2005 9:58 pm    Post subject: Reply with quote

As far as I know, Eric made it. Everything is in reply.pl (I think..can't look, at school), and you need to filter() it, and then find the reply(), using those subs.
_________________
~ Josh
[ Need bot hosting on a dedicated server? PM me. ]
Back to top
M4RTIN
Member
Member


Joined: 31 Dec 2004
Posts: 134

Reputation: 19.2Reputation: 19.2

PostPosted: Thu Mar 10, 2005 7:18 am    Post subject: Reply with quote

For a nudge you need this:

Add this to switchboard.pm
Code:
<br />sub nudge{<br />my $self = shift;<br />my $nudge = "MIME-Version: 1.0\r\n".<br />           "Content-Type: text/x-msnmsgr-datacast\r\n".<br />           "\r\n".<br />           "ID: 1\r\n".<br />           "\r\n";<br />$self->sendraw("MSG", "N ".length($nudge)."\r\n$nudge");<br />}<br />

Save and close switchboard.pm

-----------+

Then just add this to a nudge command:

Code:
<br />$self->nudge();<br />


Done, Smile
Back to top
squip
Newbie
Newbie


Joined: 22 Nov 2004
Posts: 17

Reputation: 18.1Reputation: 18.1

PostPosted: Fri Mar 11, 2005 5:16 am    Post subject: Reply with quote

Would it be possibler to see a full nuge command that i put into a comands directory?
Back to top
M4RTIN
Member
Member


Joined: 31 Dec 2004
Posts: 134

Reputation: 19.2Reputation: 19.2

PostPosted: Fri Mar 11, 2005 7:15 am    Post subject: Reply with quote

Code:
<br />if ($msg eq "Nudge")<br />{<br />$self->nudge();<br />&send($self, "Haha, Take that!");<br />}<br />
Back to top
Cer
Upgraded Agent
Upgraded Agent


Joined: 03 Feb 2004
Posts: 3776
Location: Michigan
Reputation: 146.9
votes: 4

PostPosted: Sun Mar 27, 2005 9:55 pm    Post subject: Reply with quote

QUOTE(Wayne @ Mar 27 2005, 04:35 PM)
All he pm files do not open for me, what do I do?
[right][snapback]47282[/snapback][/right]


You don't need to open PM files. PM files aren't meant to be standalone executable code, they're meant to be included in other Perl codes (with the PL extension).

_________________
Current Site (2008) http://www.cuvou.com/
Back to top
draget
Not Yet a God
Not Yet a God


Joined: 29 Dec 2004
Posts: 367
Location: Australia
Reputation: 32.2Reputation: 32.2Reputation: 32.2

PostPosted: Tue Mar 29, 2005 2:36 am    Post subject: Reply with quote

bot.pl is the main file you need to run.
Back to top
Pepper
Senior Member
Senior Member


Joined: 30 Jul 2004
Posts: 178
Location: Auckland, New Zealand
Reputation: 9.1Reputation: 9.1Reputation: 9.1Reputation: 9.1Reputation: 9.1Reputation: 9.1Reputation: 9.1Reputation: 9.1Reputation: 9.1

PostPosted: Tue Mar 29, 2005 2:43 am    Post subject: Reply with quote

http://www.activestate.com/Products/ActivePerl/ Smile
Back to top
Display posts from previous:   
Post new topic   Reply to topic    Bot Depot Forum Index -> Templates All times are GMT
Goto page Previous  1, 2, 3, 4, 5  Next
Page 3 of 5

 



Protected by phpBB Security phpBB-TweakS
phpBB Security Has Blocked 9 Exploit Attempts.
Antispam Captcha Mod by phpbb-security.com
Powered by phpBB © 2001, 2005 phpBB Group