mob/var/say_delay = 0
mob/verb/OOC(T as text)
set category = "Commands"
var/list/L
L = list("font size")
if(src.muted == 1)
src << "You have been muted!"
return
if(src.say_delay >= 3)
alert("Flood Supression: You must wait 8 seconds before using OOC again.")
src.muted = 1
return
for(var/X in L)
if(findtext(T,X))
alert("You may not change your font size.")
return
if(!T)
alert("Your message may not be blank.")
return
if(lentext(T) > 750)
spawn() alert("Your message can not exceed 750 characters.")
T = copytext(T,1,750)
world << {"<pre><strong><font color="#000066">{<font color="#FFFFFF"><font face = verdana>[src.title]<font color="#000066">}</font></font></font></strong></pre> [src.name] OOC:<font color = #CCCCCC> [s_smileys(T)]"}
Problem description:
i cant make it correct
That's not a description; you didn't tell us anything about what's going on with your code that shouldn't be. If you want help, you need to provide details.
Lummox JR