Merge branch 'master' of git://github.com/Baystation12/Baystation12 into TGUpdates

This commit is contained in:
Ren Erthilo
2012-05-01 13:28:22 +01:00
9 changed files with 39 additions and 6 deletions

View File

@@ -82,7 +82,7 @@
desc = "It's a cool looking pen. Lots of colors!"
/obj/item/weapon/pen/fluff/fancypen
name = "multicolor pen"
name = "fancy pen"
desc = "A fancy metal pen. It uses blue ink. An inscription on one side reads,\"L.L. - L.R.\""
icon = 'custom_items.dmi'
icon_state = "fancypen"

View File

@@ -454,14 +454,35 @@
set category = "OOC"
if (!( abandon_allowed ))
usr << "\blue Respawn is disabled."
return
if ((stat != 2 || !( ticker )))
usr << "\blue <B>You must be dead to use this!</B>"
return
if (ticker.mode.name == ("meteor" || "epidemic"))
usr << "\blue Respawn is disabled."
return
else
var/deathtime = world.time - src.timeofdeath
var/deathtimeminutes = round(deathtime / 600)
var/pluralcheck = "minute"
if(deathtimeminutes == 0)
pluralcheck = ""
else if(deathtimeminutes == 1)
pluralcheck = " [deathtimeminutes] minute and"
else if(deathtimeminutes > 1)
pluralcheck = " [deathtimeminutes] minutes and"
var/deathtimeseconds = round((deathtime - deathtimeminutes * 600) / 10,1)
usr << "You have been dead for[pluralcheck] [deathtimeseconds] seconds."
if (deathtime < 18000)
usr << "You must wait 30 minutes to respawn!"
return
else
usr << "You can respawn now, enjoy your new life!"
log_game("[usr.name]/[usr.key] used abandon mob.")
usr << "\blue <B>Please roleplay correctly!</B>"
usr << "\blue <B>Make sure to play a different character, and please roleplay correctly!</B>"
if(!client)
log_game("[usr.key] AM failed due to disconnect.")

View File

@@ -1,5 +1,6 @@
/obj/item/weapon/gun/energy/gun
icon_state = "energystun100"
item_state = "energystun100"
name = "energy gun"
desc = "A basic energy-based gun with two settings: Stun and kill."
fire_sound = 'Taser.ogg'

View File

@@ -3,6 +3,7 @@
name = "taser gun"
desc = "A small, low capacity gun used for non-lethal takedowns."
icon_state = "taser"
item_state = "taser100"
fire_sound = 'Taser.ogg'
charge_cost = 100
projectile_type = "/obj/item/projectile/energy/electrode"

View File

@@ -1,12 +1,13 @@
abi79 - Game Master
abi79 - Retired Admin
arcalane - Game Admin
bobbehluvspropane - Game Admin
cacophony - Game Admin
cajoes - Game Admin
cib - Game Master
compactninja - Game Master
desiderium - Game Admin
dysthymia - Retired Admin
doughnuts - Trial Admin
doughnuts - Game Admin
erthilo - Game Admin
hawkv3 - Game Master
headswe - Game Master
@@ -16,7 +17,7 @@ megacaesar - Game Admin
miniature - Game Master
misterfox - Game Admin
mloc - Game Master
ridley4 - Trial Admin
ridley4 - Game Admin
skymarshal - Game Master
spaceman96 - Game Admin
strumpetplaya - Retired Admin

View File

@@ -103,7 +103,7 @@ ALLOW_AI
## disable abandon mob
NORESPAWN
# NORESPAWN
## disables calling del(src) on newmobs if they logout before spawnin in
# DONT_DEL_NEWMOB

View File

@@ -65,6 +65,15 @@ should be listed in the changelog upon commit though. Thanks. -->
</ul>
</div>
<div class="commit sansserif">
<h2 class="date">1st May 2012</h2>
<h3 class="author">Erthilo updated:</h3>
<ul class="changes bgimages16">
<li class="rscadd">You can now respawn after 30 minutes in any mode where the win/loss condition is not all crew dead.</li>
<li class="imageadd">New in-hand sprites for energy and taser guns courtesy of Flashkirby99.</li>
</ul>
</div>
<div class="commit sansserif">
<h2 class="date">30th April 2012</h2>
<h3 class="author">Erthilo updated:</h3>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 114 KiB

After

Width:  |  Height:  |  Size: 119 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 115 KiB

After

Width:  |  Height:  |  Size: 120 KiB