Skip to content
MSN

spectator

A TG007 community discussion started by oosho.

Discussion 5 posts
Page 1 of 1
Open
Topic #6594 · 5 published posts · 694 views

how do i devoice som1 and make him spectator (the glasses icon)

most of the scripts i have used have the command -v

but when i type it it only make the host or owner a participant and if normal user it does nothin!!

First, your room has to have mode +m set in the modes. After that if you -v someone they will be a spectator.

 

"Diplomacy is the art of saying 'Nice doggie' until you can find a rock".-Will Rogers

IT WORKS !! :D thanx

And, if you don't know how to set the mode to +m, double click on the script screen and it will be in that dialog. Else, you can use this to help

  Room Modes
 .Invite $iif(i isin $chan($active).mode,-,+) $+ i:{ mode # $iif(i isin $chan($active).mode,-,+) $+ i }
 .Moderated $iif(m isin $chan($active).mode,-,+) $+ m:{ mode # $iif(m isin $chan($active).mode,-,+) $+ m }
 .Knocks $iif(u isin $chan($active).mode,-,+) $+ u:{ mode # $iif(u isin $chan($active).mode,-,+) $+ u }
 .Topic $iif(t isin $chan($active).mode,-,+) $+ t:{ mode # $iif(t isin $chan($active).mode,-,+) $+ t }
 .Room Limit $chan(#).limit :{ mode # +l $$?"Please enter in the room limit" }
 .Whispers/Messaging
 ..Whispers $iif(w isin $chan($active).mode,on,off) :{ mode # $iif(w isin $chan($active).mode,-,+) $+ w }
 ..External Messaging $iif(n isin $chan($active).mode,on,off) :{ mode # $iif(n isin $chan($active).mode,-,+) $+ n }
 .Room Security
 ..Hidden $iif(h isin $chan($active).mode,-,+) $+ h:{ mode # $iif(h isin $chan($active).mode,-,+) $+ h }
 ..Secret $iif(s isin $chan($active).mode,-,+) $+ s:{ mode # $iif(s isin $chan($active).mode,-,+) $+ s }
 ..Private $iif(p isin $chan($active).mode,-,+) $+ p:{ mode # $iif(p isin $chan($active).mode,-,+) $+ p }
 ..Room Key $chan(#).key :{ mode # $iif(k isin $chan(#).mode,-k $chan(#).key,+k $$?"Please enter in the key") }

thanx fusion :D