wannaknow Posted August 23, 2008 Share Posted August 23, 2008 How can i get whit my kick scritp from IRC When i do !kick oooooooooooooooooooooooooooooooo it returns: Error: ooooooooooooooooooooooooooo is not online! Link to comment
[UVA]Bart Posted August 25, 2008 Share Posted August 25, 2008 if ur after kicking a person from irc use $nick Link to comment
wannaknow Posted August 25, 2008 Author Share Posted August 25, 2008 O rly?? I mean When i use !kick fo kicking someone ingame ( Echo cmd ) Link to comment
Wrieh Posted October 1, 2008 Share Posted October 1, 2008 maybe: on *:text:!kick*:#: { if ( $nick isop %echochan ) { /mta.kick 1 $2 } elseif ( $2 != $mta.nick($1,$2) ) Msg %echochan $2 isnt online! } Link to comment
wannaknow Posted October 1, 2008 Author Share Posted October 1, 2008 on *:text:!kick*:#: { if ( $nick isop %echochan ) { /mta.kick 1 $2 } elseif ( $2 != $mta.nick($1,$2) ) Msg %echochan $2 isnt online! } No it must be on *:text:!kick*:#: { if ( $nick isop %echochan ) { /mta.kick 1 $getid(1,$2) } elseif ( $mta.nick(1,$getid(1,$2)) != $null ) Msg %echochan $2 isnt online! } alias getid { var %a = 0, %b = $mta.server($1).cmax while (%a <= %b) { if ($2 isin $mta.nick($1,%a)) !return $mta.nick($1,%a) inc %a } } Link to comment
Recommended Posts