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.

Search found 7 matches

by Bondie
Mon Dec 18, 2006 3:24 pm
Forum: Script Requests
Topic: /msg nick join and part
Replies: 20
Views: 10535

Hmm isnt this part of the Forum called request ?! Sometimes its easier just to write down how it worx then "quizzing" around bind MSG - "join" join bind MSG - "part" part proc join { nickname hostname handle channel } { channel add $channel } } proc part { nickname host...
by Bondie
Mon Dec 18, 2006 9:52 am
Forum: Script Requests
Topic: /msg nick join and part
Replies: 20
Views: 10535

well if i knew how to i wouldnt post it in request.
by Bondie
Mon Dec 18, 2006 9:29 am
Forum: Script Requests
Topic: /msg nick join and part
Replies: 20
Views: 10535

well, the script is also a bit "to" much. i just need the msg bind without any flags. and just that the bot acts on a command that i give in Mirc via /msg <nick - who has this script> join <#channel>. also no output if it parts or joined the chan. very plain just. The error is Tcl error [j...
by Bondie
Mon Dec 18, 2006 9:13 am
Forum: Script Requests
Topic: /msg nick join and part
Replies: 20
Views: 10535

thx very much but its not working.
by Bondie
Mon Dec 18, 2006 8:22 am
Forum: Script Requests
Topic: /msg nick join and part
Replies: 20
Views: 10535

/msg nick join and part

Hiya again can somebody pls code me that in tcl

Code: Select all

on *:TEXT:join*:?:{ 
  if ($nick == bondie) { 
    join $2  
  } 
}
on *:TEXT:part*:?:{ 
  if ($nick == bondie) { 
    part $2 Error
  } 
}
when i enter /msg nick join #chan or /msg nick part #chan the bot joins or part a channel.
by Bondie
Sun Dec 17, 2006 3:37 pm
Forum: Script Requests
Topic: help with an automated join script
Replies: 3
Views: 2627

metroid wrote:You are using the wrong arguments for MSG. Read the tcl-commands.doc.
edit: i have tried that.... but still not working. Really need support. Please

Code: Select all

bind msg - join msg:join
proc msg:join { nickname hostname handle channel arguments } {
 channel add $arguments 
}
by Bondie
Sun Dec 17, 2006 2:06 pm
Forum: Script Requests
Topic: help with an automated join script
Replies: 3
Views: 2627

help with an automated join script

Hello. I have a a request script that tells the bot (wich can be requested) to join a channel. The request Script works with a msg (its written in msl) like.... a user requests a bot < !request #channel > my msl Bot goes to check the chan and if all requirements meet the bot joins the channel after ...