mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-27 14:07:51 +01:00
pete is a feygoat
-snappops in arcades git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2082 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
+63
-1
@@ -250,4 +250,66 @@ obj/item/toy/blink
|
||||
var/shadeColour = "#220000" //RGB
|
||||
var/uses = 30 //0 for unlimited uses
|
||||
var/instant = 0
|
||||
var/colourName = "red" //for updateIcon purposes
|
||||
var/colourName = "red" //for updateIcon purposes
|
||||
|
||||
/obj/item/toy/snappop
|
||||
name = "snap pop"
|
||||
desc = "Wow!"
|
||||
icon = 'toy.dmi'
|
||||
icon_state = "snappop"
|
||||
|
||||
throw_impact(atom/hit_atom)
|
||||
..()
|
||||
var/datum/effects/system/spark_spread/s = new /datum/effects/system/spark_spread
|
||||
s.set_up(3, 1, src)
|
||||
s.start()
|
||||
new /obj/decal/ash(src.loc)
|
||||
src.visible_message("\red The [src.name] explodes!","\red You hear a snap!")
|
||||
playsound(src, 'snap.ogg', 50, 1)
|
||||
del(src)
|
||||
|
||||
/obj/item/toy/snappop/HasEntered(H as mob|obj)
|
||||
if((ishuman(H))) //i guess carp and shit shouldn't set them off
|
||||
var/mob/living/carbon/M = H
|
||||
if(M.m_intent == "run")
|
||||
M << "\red You step on the snap pop!"
|
||||
|
||||
var/datum/effects/system/spark_spread/s = new /datum/effects/system/spark_spread
|
||||
s.set_up(2, 0, src)
|
||||
s.start()
|
||||
new /obj/decal/ash(src.loc)
|
||||
src.visible_message("\red The [src.name] explodes!","\red You hear a snap!")
|
||||
playsound(src, 'snap.ogg', 50, 1)
|
||||
del(src)
|
||||
|
||||
/obj/item/toy/snappopbox
|
||||
name = "snap pop box"
|
||||
desc = "Eight wrappers of fun! Ages 8 and up. Not suitable for children."
|
||||
icon = 'toy.dmi'
|
||||
icon_state = "spbox"
|
||||
var/amount = 8
|
||||
|
||||
attack_hand(mob/user as mob, unused, flag)
|
||||
add_fingerprint(user)
|
||||
|
||||
if(user.r_hand == src || user.l_hand == src)
|
||||
if(amount)
|
||||
var/obj/item/toy/snappop/M = new /obj/item/toy/snappop(src)
|
||||
if (user.hand)
|
||||
user.l_hand = M
|
||||
else
|
||||
user.r_hand = M
|
||||
M.loc = user
|
||||
M.layer = 20
|
||||
user.update_clothing()
|
||||
user << "You take a snap pop out of the box."
|
||||
amount--
|
||||
else
|
||||
user << "There are no snap pops left in the box."
|
||||
else
|
||||
..()
|
||||
|
||||
return
|
||||
|
||||
attack_paw(mob/user as mob)
|
||||
return attack_hand(user)
|
||||
@@ -101,29 +101,26 @@
|
||||
if ((src.enemy_mp <= 0) || (src.enemy_hp <= 0))
|
||||
src.gameover = 1
|
||||
src.temp = "[src.enemy_name] has fallen! Rejoice!"
|
||||
var/obj/item/prize
|
||||
var/prizeselect = pick(1,2,3,4,5,6,7,8)
|
||||
switch(prizeselect)
|
||||
if(1)
|
||||
prize = new /obj/item/weapon/spacecash(src.loc)
|
||||
prize.name = "space ticket"
|
||||
prize.desc = "It's almost like actual currency!"
|
||||
new /obj/item/toy/snappopbox(src.loc)
|
||||
if(2)
|
||||
prize = new /obj/item/toy/blink(src.loc)
|
||||
new /obj/item/toy/blink(src.loc)
|
||||
if(3)
|
||||
prize = new /obj/item/clothing/under/syndicate/tacticool(src.loc)
|
||||
new /obj/item/clothing/under/syndicate/tacticool(src.loc)
|
||||
if(4)
|
||||
prize = new /obj/item/toy/sword(src.loc)
|
||||
new /obj/item/toy/sword(src.loc)
|
||||
if(5)
|
||||
prize = new /obj/item/toy/ammo/gun(src.loc)
|
||||
prize = new /obj/item/toy/gun(src.loc)
|
||||
new /obj/item/toy/ammo/gun(src.loc)
|
||||
new /obj/item/toy/gun(src.loc)
|
||||
if(6)
|
||||
prize = new /obj/item/toy/crossbow(src.loc)
|
||||
new /obj/item/toy/crossbow(src.loc)
|
||||
if(7)
|
||||
prize = new /obj/item/clothing/suit/syndicatefake(src.loc)
|
||||
prize = new /obj/item/clothing/head/syndicatefake(src.loc)
|
||||
new /obj/item/clothing/suit/syndicatefake(src.loc)
|
||||
new /obj/item/clothing/head/syndicatefake(src.loc)
|
||||
if(8)
|
||||
prize = new /obj/item/toy/crayonbox(loc)
|
||||
new /obj/item/toy/crayonbox(loc)
|
||||
|
||||
|
||||
else if ((src.enemy_mp <= 5) && (prob(70)))
|
||||
|
||||
+159
-152
@@ -23,17 +23,17 @@ w\:* {behavior:url(#default#VML);}
|
||||
<o:DocumentProperties>
|
||||
<o:Author>Young Michael</o:Author>
|
||||
<o:LastAuthor>Young Michael</o:LastAuthor>
|
||||
<o:Revision>3</o:Revision>
|
||||
<o:TotalTime>15</o:TotalTime>
|
||||
<o:Revision>4</o:Revision>
|
||||
<o:TotalTime>16</o:TotalTime>
|
||||
<o:Created>2011-08-31T19:33:00Z</o:Created>
|
||||
<o:LastSaved>2011-08-31T20:15:00Z</o:LastSaved>
|
||||
<o:LastSaved>2011-08-31T20:31:00Z</o:LastSaved>
|
||||
<o:Pages>21</o:Pages>
|
||||
<o:Words>14444</o:Words>
|
||||
<o:Characters>82335</o:Characters>
|
||||
<o:Words>14458</o:Words>
|
||||
<o:Characters>82416</o:Characters>
|
||||
<o:Company>Brosoft</o:Company>
|
||||
<o:Lines>686</o:Lines>
|
||||
<o:Paragraphs>164</o:Paragraphs>
|
||||
<o:CharactersWithSpaces>101113</o:CharactersWithSpaces>
|
||||
<o:CharactersWithSpaces>101212</o:CharactersWithSpaces>
|
||||
<o:Version>9.2720</o:Version>
|
||||
</o:DocumentProperties>
|
||||
</xml><![endif]-->
|
||||
@@ -2269,6 +2269,14 @@ should be listed in the changelog upon commit tho. Thanks. --><span
|
||||
auto;mso-list:l122 level2 lfo3;tab-stops:list 1.0in'><b><!-- NOTE TO UPDATERS!! Please only list things which are important to players.
|
||||
Stuff which is in development and not yet visible to players or just code related
|
||||
(is. code improvements for expandability, etc.) should not be listed here. They
|
||||
should be listed in the changelog upon commit tho. Thanks. --><span
|
||||
style='font-family:"Times New Roman"'>Snappops can now be acquired from
|
||||
the arcade machines. Amaze your friends! (credit to Petethegoat)</span></b><span
|
||||
style='font-family:"Times New Roman"'><o:p></o:p></span></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l122 level2 lfo3;tab-stops:list 1.0in'><b><!-- NOTE TO UPDATERS!! Please only list things which are important to players.
|
||||
Stuff which is in development and not yet visible to players or just code related
|
||||
(is. code improvements for expandability, etc.) should not be listed here. They
|
||||
should be listed in the changelog upon commit tho. Thanks. --><span
|
||||
style='font-family:"Times New Roman"'>Bangindonk.ogg added to random
|
||||
end sounds list.</span></b><span style='font-family:"Times New Roman"'><o:p></o:p></span></li>
|
||||
@@ -2368,8 +2376,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
leave z1 will count as dead so long as they are off of the z level.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l42 level2 lfo7;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>Once a player has been
|
||||
unconverted they may not be reconverted.<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Once a player has been unconverted
|
||||
they may not be reconverted.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l42 level2 lfo7;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>Cult:<o:p></o:p></span></b></li>
|
||||
@@ -2517,9 +2525,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
<ul type=circle>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l90 level2 lfo28;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>Virology Airlock changed to no
|
||||
longer cycle air. Should work faster and prevent virologists from
|
||||
suffocating.<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Virology Airlock changed to no longer
|
||||
cycle air. Should work faster and prevent virologists from suffocating.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l90 level2 lfo28;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>Server Room APC is now connected
|
||||
@@ -2629,9 +2636,9 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
auto;mso-list:l51 level2 lfo40;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>The Cargo computers now have the
|
||||
ability to cancel pending orders to refund credits. This was put in
|
||||
place so that idiots couldn't waste all the cargo points and run off.
|
||||
However, if the shuttle is en route to the station you won't be able to
|
||||
cancel orders.<o:p></o:p></span></b></li>
|
||||
place so that idiots couldn't waste all the cargo points and run off. However,
|
||||
if the shuttle is en route to the station you won't be able to cancel
|
||||
orders.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l51 level2 lfo40;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman";color:blue'>Bugfix: the manifest
|
||||
@@ -2660,10 +2667,10 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
store any kind of spacesuit in a clean and sterile environment.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l51 level2 lfo40;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>The user can interact with the
|
||||
unit in various ways. You can start a UV cauterisation cycle to
|
||||
disinfect its contents, effectively sterilising and cleaning eveyrthing
|
||||
from the suits/helmets stored inside.<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>The user can interact with the unit
|
||||
in various ways. You can start a UV cauterisation cycle to disinfect
|
||||
its contents, effectively sterilising and cleaning eveyrthing from the
|
||||
suits/helmets stored inside.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l51 level2 lfo40;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>A sneaky yordle can also hide in
|
||||
@@ -2802,10 +2809,10 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
<ul type=circle>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l43 level2 lfo43;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>Traitors can now purchase syndicate
|
||||
balloons, which serve no purpose other than to blow your cover. For a
|
||||
limited time only, you can get them at a bargain price - just 10
|
||||
telecrystals!<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Traitors can now purchase
|
||||
syndicate balloons, which serve no purpose other than to blow your
|
||||
cover. For a limited time only, you can get them at a bargain price -
|
||||
just 10 telecrystals!<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l43 level2 lfo43;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>Removed security shotguns from
|
||||
@@ -2832,8 +2839,9 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
the cargo bay. They contain monkey boxes.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l43 level2 lfo43;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>Changed the amount of labels labelers
|
||||
have to 30. 10 was too low and 30 should not be <i>too</i> griefy.<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Changed the amount of labels
|
||||
labelers have to 30. 10 was too low and 30 should not be <i>too</i>
|
||||
griefy.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l43 level2 lfo43;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>Maximum label text length
|
||||
@@ -2881,10 +2889,10 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
a factor of 1.5.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l43 level2 lfo43;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>Made firesuits a lot more
|
||||
resistant to heat. Previously, they stopped protecting at around 4,500
|
||||
degrees. They now go up to around 10,000 (which is also the temperature
|
||||
which the floor starts melting)<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Made firesuits a lot more resistant
|
||||
to heat. Previously, they stopped protecting at around 4,500 degrees.
|
||||
They now go up to around 10,000 (which is also the temperature which
|
||||
the floor starts melting)<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l43 level2 lfo43;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>Edited the quartermaster's office
|
||||
@@ -3080,8 +3088,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
chemistry.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l6 level2 lfo50;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>Bugfixes: Pill bottles and
|
||||
clipboards can now be removed from the pockets once placed there.<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Bugfixes: Pill bottles and clipboards
|
||||
can now be removed from the pockets once placed there.<o:p></o:p></span></b></li>
|
||||
</ul>
|
||||
</ul>
|
||||
<p class=MsoNormal><b><span style='font-family:"Times New Roman"'><br>
|
||||
@@ -3464,10 +3472,10 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
presence of an element, while not directly consuming it.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l106 level2 lfo62;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>Reactions changed to use
|
||||
catalysts: all recipes that require Universal Enzyme now require 5
|
||||
units of the enzyme but the enzyme isn't consumed (So Tofu, Cheese,
|
||||
Moonshine, Wine, Vodka, and Kahlua recipes). <o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Reactions changed to use catalysts:
|
||||
all recipes that require Universal Enzyme now require 5 units of the
|
||||
enzyme but the enzyme isn't consumed (So Tofu, Cheese, Moonshine, Wine,
|
||||
Vodka, and Kahlua recipes). <o:p></o:p></span></b></li>
|
||||
</ul>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l106 level1 lfo62;tab-stops:list .5in'><b><span
|
||||
@@ -3476,9 +3484,9 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l106 level2 lfo62;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman";color:red'>Smooth tables</span></b><b><span
|
||||
style='font-family:"Times New Roman"'>: Tables now automatically determine
|
||||
which direction and sprite they'll use. They will connect to any
|
||||
adjacent table unless there is a window between them (regular,
|
||||
style='font-family:"Times New Roman"'>: Tables now automatically
|
||||
determine which direction and sprite they'll use. They will connect to
|
||||
any adjacent table unless there is a window between them (regular,
|
||||
reinforced, tinted, whichever)<o:p></o:p></span></b></li>
|
||||
</ul>
|
||||
</ul>
|
||||
@@ -3555,16 +3563,16 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
for that.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l47 level2 lfo68;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>Because of Nanotransen being
|
||||
Nanotransen, the fire cabinets are electrically operated. AIs can lock
|
||||
them and you can hack them if you want the precious axe inside and it's
|
||||
locked. The axe itself uses an experimental two-handed system, so while
|
||||
it's <u><span style='color:red'>FUCKING ROBUST</span></u> you need to
|
||||
wield it to fully unlock its capabilities. Pick up axe and click it in
|
||||
your hand to wield it, click it again or drop to unwield and carry
|
||||
it.You can also use it as a crowbar for cranking doors and firedoors
|
||||
open when wielded, utilising the lever on the back of the blade. And I
|
||||
didn't lie to you. It's fucking robust.<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Because of Nanotransen being Nanotransen,
|
||||
the fire cabinets are electrically operated. AIs can lock them and you
|
||||
can hack them if you want the precious axe inside and it's locked. The
|
||||
axe itself uses an experimental two-handed system, so while it's <u><span
|
||||
style='color:red'>FUCKING ROBUST</span></u> you need to wield it to
|
||||
fully unlock its capabilities. Pick up axe and click it in your hand to
|
||||
wield it, click it again or drop to unwield and carry it.You can also
|
||||
use it as a crowbar for cranking doors and firedoors open when wielded,
|
||||
utilising the lever on the back of the blade. And I didn't lie to you.
|
||||
It's fucking robust.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l47 level2 lfo68;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>Fireaxe, when wielded, fully
|
||||
@@ -3685,8 +3693,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
understandable!<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l128 level2 lfo71;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>Brobot merged with Service Borg
|
||||
with a Rapid Service Fabricator.<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Brobot merged with Service Borg with
|
||||
a Rapid Service Fabricator.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l128 level2 lfo71;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>Arcade machine prizes look and
|
||||
@@ -3779,9 +3787,9 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
access level. (Also fixed xeno pen access and blast doors)<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l128 level2 lfo71;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>You might soon start to see
|
||||
different airlocks and airlock assemblies around the station. (Sprites
|
||||
donated by Baystation 12)<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>You might soon start to see different
|
||||
airlocks and airlock assemblies around the station. (Sprites donated by
|
||||
Baystation 12)<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l128 level2 lfo71;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>Chemical storage added,
|
||||
@@ -3863,8 +3871,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
through r-walls, walls take 7 seconds to cut through.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l128 level2 lfo71;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>Turrets are now destructible. Bash
|
||||
them with stuff when they pop out or (more likely) die trying.<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Turrets are now destructible.
|
||||
Bash them with stuff when they pop out or (more likely) die trying.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l128 level2 lfo71;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>Updated Ripley Mech sprite.<o:p></o:p></span></b></li>
|
||||
@@ -4260,8 +4268,7 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
<ul type=circle>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l0 level2 lfo80;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>New look for the Request
|
||||
consoles.<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>New look for the Request consoles.<o:p></o:p></span></b></li>
|
||||
</ul>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l0 level1 lfo80;tab-stops:list .5in'><b><span
|
||||
@@ -4326,8 +4333,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
into money bags, also fixed money bag interaction window formatting.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l0 level2 lfo80;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>QM no longer has access to the entire
|
||||
mining station to stop him from stealing supplies.<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>QM no longer has access to the
|
||||
entire mining station to stop him from stealing supplies.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l0 level2 lfo80;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>New machine loading sprite for
|
||||
@@ -4453,9 +4460,9 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l101 level2 lfo83;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>Service Cyborgs can be picked!
|
||||
Shaker, dropper, tray, pen, paper, and DOSH to show their class off.
|
||||
When emagged, the friendly butler-borg is able to serve up a deadly
|
||||
last meal. <o:p></o:p></span></b></li>
|
||||
Shaker, dropper, tray, pen, paper, and DOSH to show their class off. When
|
||||
emagged, the friendly butler-borg is able to serve up a deadly last
|
||||
meal. <o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l101 level2 lfo83;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>It should now be possible to
|
||||
@@ -4618,8 +4625,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
windows bug where they weren't properly unfastened and unscrewed.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l119 level2 lfo89;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>Examination room has a few
|
||||
windows now.<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Examination room has a few windows
|
||||
now.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l119 level2 lfo89;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>Can you tell I reinstalled
|
||||
@@ -4651,9 +4658,9 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
<ul type=circle>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l98 level2 lfo92;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>Mapping updates including
|
||||
Atmospherics department map fixes, CE's office and some lights being
|
||||
added here and there.<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Mapping updates including Atmospherics
|
||||
department map fixes, CE's office and some lights being added here and
|
||||
there.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l98 level2 lfo92;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman";color:red'>Mining once again given
|
||||
@@ -5006,8 +5013,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
chemicals in it. Low reliability devices may yield false information.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l131 level2 lfo101;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>Not all devices have a 100%
|
||||
reliability now.<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Not all devices have a 100% reliability
|
||||
now.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l131 level2 lfo101;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>Miners now have access to mint
|
||||
@@ -5075,8 +5082,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
style='font-family:"Times New Roman"'><o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l102 level2 lfo104;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman";color:red'>Disposal system redone
|
||||
to allow for package transfers. Packages are routed to mail sorter room
|
||||
style='font-family:"Times New Roman";color:red'>Disposal system redone to
|
||||
allow for package transfers. Packages are routed to mail sorter room
|
||||
and then routed to the rest of the station</span></b><b><span
|
||||
style='font-family:"Times New Roman"'><o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
@@ -5106,8 +5113,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
<ul type=circle>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l102 level2 lfo104;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman";color:red'>Research and Development
|
||||
system is LIVE.</span></b><b><span style='font-family:"Times New Roman"'>
|
||||
style='font-family:"Times New Roman";color:red'>Research and
|
||||
Development system is LIVE.</span></b><b><span style='font-family:"Times New Roman"'>
|
||||
Scientists can now research new advancements in technology. Not much
|
||||
can be made, right now, but the system is there. Technologies are
|
||||
researched by shoving items into the destructive analyzer. Circuit
|
||||
@@ -5323,8 +5330,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l117 level1 lfo119;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>It might need a better name/sprite
|
||||
but when put together properly and turned on it will shoot Accelerated
|
||||
Particles. <o:p></o:p></span></b></li>
|
||||
but when put together properly and turned on it will shoot Accelerated Particles.
|
||||
<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l117 level1 lfo119;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>The particles irradiate mobs who
|
||||
@@ -5352,8 +5359,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l88 level1 lfo122;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Just kidding, it's only minor
|
||||
changes to
|
||||
medbay/mechbay/cybernetics/R&D/toxins/robotics/chapel/theatre <o:p></o:p></span></b></li>
|
||||
changes to medbay/mechbay/cybernetics/R&D/toxins/robotics/chapel/theatre
|
||||
<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l88 level1 lfo122;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Okay so there's too many changes
|
||||
@@ -5372,10 +5379,10 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
south through medbay to get there. <o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l88 level1 lfo122;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Medbay has been re-arranged slightly.
|
||||
Honestly, it's nothing, I bet you won't even notice anything different.
|
||||
There's also a new surgery suite, complete with pre-op and post-op
|
||||
rooms. <o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Medbay has been re-arranged
|
||||
slightly. Honestly, it's nothing, I bet you won't even notice anything
|
||||
different. There's also a new surgery suite, complete with pre-op and
|
||||
post-op rooms. <o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l88 level1 lfo122;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Virology's been rearranged, but it
|
||||
@@ -5430,9 +5437,9 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
style='font-family:"Times New Roman"'>Mining system nearing completion. <o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l20 level1 lfo125;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Massive overhaul to the electricity
|
||||
systems, the way singularity makes power, and various related functions.
|
||||
<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Massive overhaul to the
|
||||
electricity systems, the way singularity makes power, and various
|
||||
related functions. <o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l20 level1 lfo125;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Mime spawns with White Gloves
|
||||
@@ -5517,8 +5524,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
user friendly. <o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l71 level1 lfo128;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Mech building is rapidly on its way!
|
||||
Ripleys can be built, consult your quartermasters. <o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Mech building is rapidly on its
|
||||
way! Ripleys can be built, consult your quartermasters. <o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l71 level1 lfo128;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Traitors now have several new
|
||||
@@ -5544,8 +5551,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
re-attached by wrenching them. <o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l65 level1 lfo131;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Mining system continues to
|
||||
develop. Still unaccessible to players. <o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Mining system continues to develop.
|
||||
Still unaccessible to players. <o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l65 level1 lfo131;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Various map changes. Some minor
|
||||
@@ -5695,8 +5702,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l33 level1 lfo134;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>New Recipies: Clown Burger (1
|
||||
Clown wig, 5 flour), Mime Burger (1 beret, 5 flour), Cuban Carp (1 carp
|
||||
fillet, 1 chili, 5 flour). <o:p></o:p></span></b></li>
|
||||
Clown wig, 5 flour), Mime Burger (1 beret, 5 flour), Cuban Carp (1 carp fillet,
|
||||
1 chili, 5 flour). <o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l33 level1 lfo134;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Napalm nerfed a bit. Produces ~25%
|
||||
@@ -5729,9 +5736,9 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
Additionally, turrets won't target people laying down. <o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l52 level1 lfo137;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Cultists now automatically start known
|
||||
words for add cultist ritual. Also, converted cultists start knowning a
|
||||
word. <o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Cultists now automatically start
|
||||
known words for add cultist ritual. Also, converted cultists start
|
||||
knowning a word. <o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l52 level1 lfo137;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Supply ship no longer can
|
||||
@@ -5750,8 +5757,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
easier to notice then the radio). <o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l52 level1 lfo137;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Centcom reoragnized a fair bit.
|
||||
Not that players care but admins might enjoy it. <o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Centcom reoragnized a fair bit. Not
|
||||
that players care but admins might enjoy it. <o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l52 level1 lfo137;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>There is now a toggable verb that
|
||||
@@ -5938,9 +5945,9 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
style='font-family:"Times New Roman"'>APCs added and moved<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l24 level1 lfo143;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Cola machine added. Contains
|
||||
various flavours of soda. Also added new snacks to the now named snack
|
||||
machine. Water cooler added, just apply an empty glass to it<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Cola machine added. Contains various
|
||||
flavours of soda. Also added new snacks to the now named snack machine.
|
||||
Water cooler added, just apply an empty glass to it<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l24 level1 lfo143;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Salt & Pepper have been added,
|
||||
@@ -5973,14 +5980,13 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
so please report any bugs or suggestions you have to the forums.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l94 level1 lfo147;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>AI Liquid Dispensers, Codename SLIPPER,
|
||||
have been added to the AI core. They dispense cleaning foam twenty times
|
||||
each with a cooldown of ten seconds between uses. Mounted flashes have
|
||||
also been included.<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>AI Liquid Dispensers, Codename
|
||||
SLIPPER, have been added to the AI core. They dispense cleaning foam
|
||||
twenty times each with a cooldown of ten seconds between uses. Mounted
|
||||
flashes have also been included.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l94 level1 lfo147;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Clown stamp added to clown's
|
||||
backpack.<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Clown stamp added to clown's backpack.<o:p></o:p></span></b></li>
|
||||
</ul>
|
||||
<h5><span style='font-family:"Times New Roman"'>Sunday, November 14, 18:05<o:p></o:p></span></h5>
|
||||
<ul type=disc>
|
||||
@@ -6033,9 +6039,9 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
disassembled unless powered down and unbolted.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l12 level1 lfo150;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>New Job: Chief Medical Officer.
|
||||
Counts as a head of staff and is in charge of medbay. Has his/her own
|
||||
office and coat.<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>New Job: Chief Medical Officer. Counts
|
||||
as a head of staff and is in charge of medbay. Has his/her own office
|
||||
and coat.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l12 level1 lfo150;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Wizarditis Bottle no longer in
|
||||
@@ -6303,9 +6309,9 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
<ul type=circle>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l35 level2 lfo165;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>- Some reagents were not
|
||||
metabolized, remaining in mob indefinitely (this includes Space Cola,
|
||||
Cryoxadone and cocktails Kahlua, Irish Cream and The Manly Dorf).<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>- Some reagents were not metabolized,
|
||||
remaining in mob indefinitely (this includes Space Cola, Cryoxadone and
|
||||
cocktails Kahlua, Irish Cream and The Manly Dorf).<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l35 level2 lfo165;tab-stops:list 1.0in'><b><span
|
||||
style='font-family:"Times New Roman"'>- Fixed placement bug with
|
||||
@@ -6313,8 +6319,7 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
obscure view.<o:p></o:p></span></b></li>
|
||||
</ul>
|
||||
</ul>
|
||||
<h5><span style='font-family:"Times New Roman"'>Sunday, October 10,
|
||||
14:25(GMT)<o:p></o:p></span></h5>
|
||||
<h5><span style='font-family:"Times New Roman"'>Sunday, October 10, 14:25(GMT)<o:p></o:p></span></h5>
|
||||
<ul type=disc>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l1 level1 lfo168;tab-stops:list .5in'><b><span
|
||||
@@ -6584,8 +6589,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
fixed.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l17 level1 lfo177;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Nuke rounds will now end properly on
|
||||
a station or neutral victory.<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Nuke rounds will now end properly
|
||||
on a station or neutral victory.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l17 level1 lfo177;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Riot shields have been nerfed and
|
||||
@@ -6695,8 +6700,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l92 level1 lfo187;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Robotics, the captain's quarters,
|
||||
the cargo lobby and the staff heads office now have APCs and can lose
|
||||
power like the rest of the station.<o:p></o:p></span></b></li>
|
||||
the cargo lobby and the staff heads office now have APCs and can lose power
|
||||
like the rest of the station.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l92 level1 lfo187;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Toxins mixing room is now a
|
||||
@@ -6726,8 +6731,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
added<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l50 level1 lfo193;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Minor lag fix implementation in
|
||||
the pipe system<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Minor lag fix implementation in the
|
||||
pipe system<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l50 level1 lfo193;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>You can now hear ghosts...
|
||||
@@ -6817,7 +6822,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l54 level1 lfo199;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Aliens now have a hivemind
|
||||
channel, accessed like departmental radio channels or robot talk with ':a'.<o:p></o:p></span></b></li>
|
||||
channel, accessed like departmental radio channels or robot talk with
|
||||
':a'.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l54 level1 lfo199;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Full donut boxes no longer eat
|
||||
@@ -6879,8 +6885,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
autolathes.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l97 level1 lfo205;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Four generic remote signaller PDA
|
||||
cartridges are now stocked in the Tool Storage vending machine.<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Four generic remote signaller PDA cartridges
|
||||
are now stocked in the Tool Storage vending machine.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l97 level1 lfo205;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>AI status display density
|
||||
@@ -6982,9 +6988,9 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
only item<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l85 level1 lfo214;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Cyborgs now spawn with a power
|
||||
cell. Should prevent stupid cyborg deaths (and also pave the way for
|
||||
starting as a cyborg once more bugs are fixed)<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Cyborgs now spawn with a power cell.
|
||||
Should prevent stupid cyborg deaths (and also pave the way for starting
|
||||
as a cyborg once more bugs are fixed)<o:p></o:p></span></b></li>
|
||||
</ul>
|
||||
<h5><span style='font-family:"Times New Roman"'>Saturday, July 10, 15:10<o:p></o:p></span></h5>
|
||||
<ul type=disc>
|
||||
@@ -7072,9 +7078,9 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l77 level2 lfo229;tab-stops:list 1.0in'><strong><span
|
||||
style='font-family:"Times New Roman"'>Disposal System:</span></strong><b><span
|
||||
style='font-family:"Times New Roman"'> The station now has a fully
|
||||
functional disposal system for throwing away nuclear authentication
|
||||
disks and old, dirty clowns. <o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'> The station now has a fully functional
|
||||
disposal system for throwing away nuclear authentication disks and old,
|
||||
dirty clowns. <o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l77 level2 lfo229;tab-stops:list 1.0in'><strong><span
|
||||
style='font-family:"Times New Roman"'>Breakable Windows:</span></strong><b><span
|
||||
@@ -7424,8 +7430,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
auto;mso-list:l91 level1 lfo265;tab-stops:list .5in'><strong><span
|
||||
style='font-family:"Times New Roman"'>Station shields:</span></strong><b><span
|
||||
style='font-family:"Times New Roman"'> The station now has a toggleable
|
||||
forcefield that can only be destroyed by meteors or bombs. Takes a lot
|
||||
of station power to use. <o:p></o:p></span></b></li>
|
||||
forcefield that can only be destroyed by meteors or bombs. Takes a lot of
|
||||
station power to use. <o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l91 level1 lfo265;tab-stops:list .5in'><strong><span
|
||||
style='font-family:"Times New Roman"'>Traitor scaling:</span></strong><b><span
|
||||
@@ -7584,8 +7590,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l83 level1 lfo289;tab-stops:list .5in'><strong><span
|
||||
style='font-family:"Times New Roman"'>AI laws update:</span></strong><b><span
|
||||
style='font-family:"Times New Roman"'> Nanotrasen has updated its AI
|
||||
laws to better reflect how they wish AIs to operate their stations. <o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'> Nanotrasen has updated its AI laws
|
||||
to better reflect how they wish AIs to operate their stations. <o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l83 level1 lfo289;tab-stops:list .5in'><strong><span
|
||||
style='font-family:"Times New Roman"'>Traitor item change:</span></strong><b><span
|
||||
@@ -7600,8 +7606,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
HAD to add a gib all verb.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l26 level1 lfo292;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Decided to add the creation of
|
||||
bombs to bombers list<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Decided to add the creation of bombs
|
||||
to bombers list<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l26 level1 lfo292;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Made the new bombing list EVEN
|
||||
@@ -7751,8 +7757,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
r-wall-welder-message-thing.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l16 level1 lfo295;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Change to the CTF code, flag
|
||||
captures can now only happen if your team has their flag in the starting
|
||||
style='font-family:"Times New Roman"'>Change to the CTF code, flag captures
|
||||
can now only happen if your team has their flag in the starting
|
||||
position.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l16 level1 lfo295;tab-stops:list .5in'><b><span
|
||||
@@ -7773,8 +7779,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
are a faggot and should read code before you modify it<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l16 level1 lfo295;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Fixed a bug that gave everyone
|
||||
modify ticker variables you silly sausage.<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Fixed a bug that gave everyone modify
|
||||
ticker variables you silly sausage.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l16 level1 lfo295;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Sorted the AIs track list.<o:p></o:p></span></b></li>
|
||||
@@ -7795,8 +7801,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
<ul type=disc>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l74 level1 lfo298;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Pipe construction now works completely.
|
||||
//Nannek<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Pipe construction now works
|
||||
completely. //Nannek<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l74 level1 lfo298;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Many many other things that never
|
||||
@@ -7830,8 +7836,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
disassembled //Pantaloons<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l73 level1 lfo301;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>OBJECTION! Added suits and briefcases
|
||||
//stuntwaffle<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>OBJECTION! Added suits and
|
||||
briefcases //stuntwaffle<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l73 level1 lfo301;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Added automatic brig lockers
|
||||
@@ -8115,8 +8121,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
restabalization.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l82 level1 lfo355;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Fixed the 'Ow My Balls!' medal to
|
||||
only apply from brute damage rather than both brute and burn damage.<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Fixed the 'Ow My Balls!' medal to only
|
||||
apply from brute damage rather than both brute and burn damage.<o:p></o:p></span></b></li>
|
||||
</ul>
|
||||
<h5><span style='font-family:"Times New Roman"'>Thursday, March 19, 2009<o:p></o:p></span></h5>
|
||||
<ul type=disc>
|
||||
@@ -8341,8 +8347,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l124 level1 lfo382;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Batons can now be turned on and
|
||||
off for different effects. They also now have 10 uses before they need
|
||||
to be recharged.<o:p></o:p></span></b></li>
|
||||
off for different effects. They also now have 10 uses before they need to
|
||||
be recharged.<o:p></o:p></span></b></li>
|
||||
</ul>
|
||||
<h5><span style='font-family:"Times New Roman"'>Tuesday, February 10, 2009<o:p></o:p></span></h5>
|
||||
<ul type=disc>
|
||||
@@ -8377,7 +8383,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
style='font-family:"Times New Roman"'>Fixed some airlock autoclose bugs<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l67 level1 lfo388;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Changed some doors to not autoclose.<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Changed some doors to not
|
||||
autoclose.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l67 level1 lfo388;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Nerfed the toolbox down.<o:p></o:p></span></b></li>
|
||||
@@ -8423,8 +8430,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
style='font-family:"Times New Roman"'>Added 'Make AI' Option for Admins<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l15 level1 lfo397;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Added dissolving pills in beer
|
||||
(cyanide and sleeping pills)<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Added dissolving pills in beer (cyanide
|
||||
and sleeping pills)<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l15 level1 lfo397;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Modified engine AGAIN, but
|
||||
@@ -8491,9 +8498,9 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
<ul type=disc>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l108 level1 lfo406;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Added traitor menu for admins -
|
||||
The ability to turn people into "traitors" as well as keep
|
||||
track of their objectives.<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Added traitor menu for admins - The
|
||||
ability to turn people into "traitors" as well as keep track
|
||||
of their objectives.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l108 level1 lfo406;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Implemented Keelins revive system
|
||||
@@ -8549,8 +8556,8 @@ should be listed in the changelog upon commit tho. Thanks. -->
|
||||
Nuclear Emergency should now properly end the game.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l8 level1 lfo409;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Spacesuits now cause you to move slower
|
||||
when not in space.<o:p></o:p></span></b></li>
|
||||
style='font-family:"Times New Roman"'>Spacesuits now cause you to move
|
||||
slower when not in space.<o:p></o:p></span></b></li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:
|
||||
auto;mso-list:l8 level1 lfo409;tab-stops:list .5in'><b><span
|
||||
style='font-family:"Times New Roman"'>Syndicate in Nuclear Emergency now
|
||||
|
||||
Reference in New Issue
Block a user