mob/verb/Say(T as text)
set category = "Canales"
if(Channel_Mute && !src.GMLevel)
src << "Todos los canales de chat son Silenciados!"
return
if(src.muted)
src << "Usted ha sido silenciado"
return
if(src.say_delay >= 3)
spawn() alert("Supresión de inundación: Usted debe esperar 5 segundos antes de usar Dilo de nuevo.")
src.muted = 1
sleep(50)
src.muted = 0
return
if(!T)
spawn() alert("Su mensaje no puede estar en blanco.")
return
T = html_encode(T)
if(lentext(T) > 750)
spawn() alert("Su mensaje no puede superar los 750 caracteres.")
T = copytext(T,1,750)
ChatLog(src,"SAY: [T]")
src << "You Say:<font color = #CCCCCC> [T]"
for(var/mob/M in oview())if(!M.Ignored.Find(usr))M<< "[src.name] Says:<font color = white> [T]"
src.say_delay += 1
sleep(50)
src.say_delay = 0
Ignorance:
I would like to know how to add windows in tab?
And how can I get some information as to whisper out another output
A tab takes panes. Here are instructions on manipulation at run-time.
tabs
"[tab names, comma-separated]" or "+[new tab name]" or "-[tab to remove]"
The names of the panes that will appear as tabs, in order, separated by commas. Precede with "+" to add tabs to the current list without removing any, or "-" to remove only the tabs you specify.