Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
# # magic8ball.pl # # GAIM script that delivers "usefull" # answers to questions. # # Usage: # !8ball <question> # my @ball_messages= ( "yes", "definitely", "the answer is yes", "positively sure", "no", "definitely not", "no way", "answer isn't clear", "there's no way to be sure" ); sub description { my($a, $b, $c, $d, $e, $f) = @_; ("Magic 8 Ball", "0.1", "Answers all of your questions", "Incl +ude &lt;include\@riotmod.com>", "http://linux.riotmod.com", "/dev/nul +l"); } $handle = GAIM::register("Magic 8 Ball", "0.1", "", ""); GAIM::add_event_handler($handle, "event_im_recv", "shake_the_ball"); sub shake_the_ball { my($eb_connection,$eb_sender,$eb_message,$eb_flags)=@_; my @tokmess=split(" ",$eb_message); if($eb_message=~/!8ball/) { if($#tokmess > 0) { # shake the ball my $sm = $ball_messages[ rand scalar @ball_messages ]; my $eb_message=~s/!8ball//g; my $answer_message="The magic 8 ball says...$ball_messages[$sm]. +"; GAIM::serv_send_im($eb_connection, $eb_sender, $answer_message, +1); return 1; } else { GAIM::serv_send_im($eb_connection, $eb_sender, "You need to ask +a question!", 1); return 1; } } }

In reply to Gaim Magic 8 Ball by #include

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (6)
As of 2024-04-25 18:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found