mIRC Home    About    Download    Register    News    Help

Print Thread
#127538 14/08/05 03:29 PM
Joined: Mar 2005
Posts: 4
S
Self-satisified door
OP Offline
Self-satisified door
S
Joined: Mar 2005
Posts: 4
i want make a warning which will then devoice the person
i have this but it isnt working

.language:/say $1 your language is not acceptable /mode - v $1

and also how can i make the popup below into a ban
.Gameover:/kick # $$1 Game Over

#127539 14/08/05 03:38 PM
Joined: Aug 2005
Posts: 1,052
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Aug 2005
Posts: 1,052
Quote:
i want make a warning which will then devoice the person
i have this but it isnt working

.language:/say $1 your language is not acceptable /mode - v $1

and also how can i make the popup below into a ban
.Gameover:/kick # $$1 Game Over


heres something quick for example if a language a certain thing it will do an operation


***************************************************************************
****THIS IS REMOTE))) we are gonna use the ISIN command so what i want to do here is if crap is anywhere in the text $1-... it will make the operation

I appoligize, of course if anyone says crap in this script it will attempt to do the events anyways however i will show you in blue a version of this script that only works if the person is Voiced

on *:TEXT:*:*:{
if (crap isin $1-) { msg $active $nick your language is not acceptable | mode $chan -v $nick | notice $nick You've been devoiced. }
}


on *:TEXT:*:*:{
if ($nick isvoice $chan) {
if (crap isin $1-) { msg $active $nick your language is not acceptable | mode $chan -v $nick | notice $nick You've been devoiced. }
}
}


***************************
****THIS IS IN NICKLIST

.Gameover:/kick # $$1 Game Over! << if you want to ban with this put

.Gameover:/ban $$1 3 | /kick # $$1 Game Over!


thats a simple version of script

Last edited by Lpfix5; 14/08/05 05:00 PM.

Code:
if $reality > $fiction { set %sanity Sane }
Else { echo -a *voices* }

Link Copied to Clipboard