Removed files that were 0 bytes in size.

Made sure every verb now has a name which starts with a capital letter and makes sense, because OCD.
Changed the categories of verbs a lot, now they are in much more sensible tabs.
Added a couple of admin verbs:
 - Right click monkeyize
 - Call Shuttle
 - Recall Shuttle
Removed some goon verbs.
Gave "Coder" admin group a little more admin verbs:
 - Monkeyize, Cultistize, Abominationize, Call Shuttle, Recall Shuttle, Make Sound
Added mobs a "say_message" variable. Now admin-created mobs can "scree", "squeak" etc. instead of just "chimper" or "hiss".

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@138 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
Skiedrake
2010-09-22 00:41:07 +00:00
parent 3848f0f0ce
commit cbec1b6f3d
59 changed files with 374 additions and 274 deletions
View File
@@ -607,7 +607,7 @@ to clean it up, or just beat the shit out of it (which takes ages).
if (src.stunned >= 3) src.stunned -= 3
if (src.weakened >= 3) src.weakened -= 3
for(var/mob/O in viewers(src, null))
O.show_message(text("\blue The monkey shakes [src] trying to wake him up!", ), 1)
O.show_message(text("\blue [M.name] shakes [src] trying to wake him up!", ), 1)
else
if (istype(src.wear_mask, /obj/item/clothing/mask/muzzle))
return
@@ -389,7 +389,7 @@ to clean it up, or just beat the shit out of it (which takes ages).
if (src.stunned >= 3) src.stunned -= 3
if (src.weakened >= 3) src.weakened -= 3
for(var/mob/O in viewers(src, null))
O.show_message(text("\blue The monkey shakes [src] trying to wake him up!", ), 1)
O.show_message(text("\blue [M.name] shakes [src] trying to wake him up!", ), 1)
else
if (istype(src.wear_mask, /obj/item/clothing/mask/muzzle))
return
+1 -1
View File
@@ -18,7 +18,7 @@
/mob/living/carbon/alien/say_quote(var/text)
// var/ending = copytext(text, length(text))
return "hisses, \"[text]\"";
return "[src.say_message], \"[text]\"";
/mob/living/proc/alien_talk(var/message)
@@ -1179,7 +1179,7 @@
if (src.stunned >= 3) src.stunned -= 3
if (src.weakened >= 3) src.weakened -= 3
for(var/mob/O in viewers(src, null))
O.show_message(text("\blue The monkey shakes [] trying to wake him up!", src), 1)
O.show_message(text("\blue [M.name] shakes [] trying to wake him up!", src), 1)
else
if (istype(src.wear_mask, /obj/item/clothing/mask/muzzle))
return
+1 -1
View File
@@ -1,2 +1,2 @@
/mob/living/carbon/monkey/say_quote(var/text)
return "chimpers, \"[text]\"";
return "[src.say_message], \"[text]\"";
View File
+3
View File
@@ -1277,6 +1277,7 @@
src.client.changes = 1
/mob/verb/succumb()
set name = "Succumb"
set hidden = 1
if ((src.health < 0 && src.health > -95.0))
@@ -1525,6 +1526,7 @@
return
/atom/movable/verb/pull()
set name = "Pull"
set src in oview(1)
if (!( usr ))
@@ -1534,6 +1536,7 @@
return
/atom/verb/examine()
set name = "Examine"
set src in oview(12) //make it work from farther away
if (!( usr ))
+2 -1
View File
@@ -2,10 +2,11 @@
return
/mob/verb/whisper()
set name = "Whisper"
return
/mob/verb/say_verb(message as text)
set name = "say"
set name = "Say"
usr.say(message)
/mob/proc/say_dead(var/message)
+1 -6
View File
@@ -37,12 +37,7 @@
O.loc = src.loc
O.a_intent = "hurt"
O << "<B>You are now a monkey.</B>"
/*
if (ticker.mode.name == "monkey")
O << "<B>Don't be angry at the source as now you are just like him so deal with it.</B>"
O << "<B>Follow your objective.</B>"
//SN src = null
*/
del(src)
return