01/06/2010, 07:04
(Modification du message : 01/06/2010, 07:05 par Babytigrou16.)
Hello tout le monde, écoutais j'ai coder un pti code ^^ et malheuresement je ne voie pas où est l'erreur :/ et disont que j'ai casiment finie le TCL que je vais mêtre en publication ^^ alors merci de m'aider sur ce pti projet :)
Voici l'erreur que j'ai en CTCP
[01:04:26] <YoShi> [07:04] Tcl error [restart]: wrong # args: should be "restart nick host hand chan"
[01:04:28] <YoShi> [07:04] Tcl error [rehash]: wrong # args: should be "rehash nick uhost hand chan"
Encore merci de m'aider :/
tcl
bind pub - !rehash rehash
proc rehash {nick host hand chan} {
global vhost3
foreach vhost $vhost3 {
if {[string match -nocase $vhost $uhost]} {
rehash
putquick "PRIVMSG #Admin \00307$nick \00312à utiliser la commande \00306!rehash"
}
}
}
bind pub - !restart restart
proc restart {nick host hand chan} {
global vhost3
foreach vhost $vhost3 {
if {[string match -nocase $vhost $host]} {
restart
putquick "PRIVMSG #Admin \00307$nick \00312à utiliser la commande \00306!restart"
}
}
}
Voici l'erreur que j'ai en CTCP
[01:04:26] <YoShi> [07:04] Tcl error [restart]: wrong # args: should be "restart nick host hand chan"
[01:04:28] <YoShi> [07:04] Tcl error [rehash]: wrong # args: should be "rehash nick uhost hand chan"
Encore merci de m'aider :/