bothelp.pro 818 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. irc_bot_helpmsg(A) :-
  2. A = [
  3. "-Izbot-0001 Help:",
  4. "-----------------------",
  5. "- ",
  6. "- Display this help: /msg Izbot-0001 izbot help",
  7. "-",
  8. "-** Kudos System **",
  9. "- Give Kudos:",
  10. "- /notice Izbot-0001 kudos <number> <nick>",
  11. "- ",
  12. "- Display current Kudos total:",
  13. "- /notice Izbot-0001 kudos? <nick>",
  14. "- ",
  15. "-** Commands **",
  16. "- Say something:",
  17. "- /notice Izbot-0001 say <message>",
  18. "- ",
  19. "-** Auto-response Triggers **",
  20. "- what does <nick> want?",
  21. "- "],
  22. !.
  23. irc_send_help(To) :-
  24. write('--printing help--'),nl,
  25. irc_bot_helpmsg(M),
  26. irc_send_help(To, M),!.
  27. irc_send_help(To, [H|T]) :-
  28. irc_privmsg(To, H),
  29. irc_send_help(To, T),!.
  30. irc_send_help(To, [H]) :-
  31. irc_privmsg(To, H),!.