Bluetechs/Spelling

Says in a subdued tone

Gravgen spelling of Graviton
This commit is contained in:
SoundScopes
2014-07-26 18:23:56 +01:00
parent ee9ae1f46b
commit 2c1e25ef61
3 changed files with 16 additions and 7 deletions
+4
View File
@@ -119,6 +119,10 @@
s.start()
del(src)
say(var/message)
var/verb = "says in a subdued tone"
..(message, verb)
//Equipment. All should have canremove set to 0
//All items with a /bst need the attack_hand() proc overrided to stop people getting overpowered items.
+11 -6
View File
@@ -1,5 +1,4 @@
/mob/living/carbon/human/say(var/message)
var/verb = "says"
/mob/living/carbon/human/say(var/message, var/verb = "says")
var/alt_name = ""
var/message_range = world.view
var/italics = 0
@@ -48,10 +47,16 @@
return
var/ending = copytext(message, length(message))
if(ending=="!")
verb=pick("exclaims","shouts","yells")
if(ending=="?")
verb="asks"
if(verb == "says")
if(ending == "!")
verb = pick("exclaims","shouts","yells")
if(ending == "?")
verb = "asks"
else
if(ending == "!")
verb = "orders"
if(ending == "?")
verb = "requests"
if(speaking) //speaking = null if used through say without a language
if(!speaking.vocal)