mob
DblClick()
if(src == usr||get_dist(src,usr) >= 10)return
for(var/image/x in usr.client.images)
if(x.icon=='flash.dmi')
del(x)
var/image/I = image('flash.dmi',src)
usr<<I
usr.target2=src
mob
verb
Dagger_Throw(mob/M as mob)
if(usr.doing==0)
if(usr.Daggers>=1)
usr.doing=1
missile(/obj/magic/overlays/SwordMissile1,usr,M.loc)
var/hitrmiss=rand(1,10)
2. How do I color text? [font color=red] doesn't work(can't use html arrows on this page or it will work >.>).
For the second question, you have to add the quotes, but you have to escape them, e.g.:
world << "<font color=\"red\">If you want blood -- You've got it!</font>
Would show <font color="red">If you want blood -- you've got it!</font>