mirror of
https://github.com/Aurorastation/Aurora-Old.git
synced 2026-08-24 13:16:18 +01:00
Bluetechs/Spelling
Says in a subdued tone Gravgen spelling of Graviton
This commit is contained in:
@@ -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.
|
||||
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user