This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

!help script?

Old posts that have not been replied to for several years.
Locked
G
Guest

Post by Guest »

how can i a make a help script it should be very simple with only a view of few commands
can everybody help me i have no plan form TCL :eek:
r
rmm

Post by rmm »

To add extra help for users on the partyline, I use this:

bind dcc -|- helpx helpx

proc helpx {hand idx arg} {
putdcc $idx "Put your extra help and"
putdcc $idx "instructions in a pattern"
putdcc $idx "like this."
return 1
}

Make sure each line starts with putdcc $idx, and that the text starts and ends with ".

To access the extra help, the partyline user types .helpx

You can also add extra help to the original eggdrop help files by adding text in the same pattern as what is already there, but then you'd have to redo your work every time you updated your bots.

Good luck.

<font size=-1>[ This Message was edited by: rmm on 2001-10-07 02:13 ]</font>
Locked