forked from Blackstone-SS13/BLACKSTONE
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lots of changes from working hard at the mines
- Loading branch information
1 parent
8d0930b
commit 3c91713
Showing
21 changed files
with
124 additions
and
33 deletions.
There are no files selected for viewing
Binary file renamed
BIN
+3.01 MB
...bc0249a-abcd-46f0-9644-43bb4f43db24.vsidx → ...560c191-2fd5-49c3-8e13-7e6ad4db8486.vsidx
Binary file not shown.
Binary file added
BIN
+2.65 MB
.vs/Rouge-Survival/FileContentIndex/646fd8a8-e55c-4eca-b3b0-91b938b30822.vsidx
Binary file not shown.
Binary file renamed
BIN
+4.71 MB
...420aa49-9421-48aa-82c6-a8a60f2ed206.vsidx → ...58e0c16-be7a-429d-b684-fcfb6dd7bc97.vsidx
Binary file not shown.
Binary file removed
BIN
-2.65 MB
.vs/Rouge-Survival/FileContentIndex/8d0120c1-121d-4246-8b97-7524757a9b6b.vsidx
Binary file not shown.
Binary file renamed
BIN
+4.28 MB
...d180b49-6a24-4280-af92-7165e9606269.vsidx → ...6328870-1614-475f-84d7-5998f8618497.vsidx
Binary file not shown.
Binary file renamed
BIN
+3.41 MB
...41db5c0-6eb1-48b2-8d61-8a291d6b7f4e.vsidx → ...d06d2ee-2200-428e-8bf5-a8ea4f5253ba.vsidx
Binary file not shown.
Binary file renamed
BIN
+3.09 MB
...74b4799-28e8-47be-ac61-2c0222109133.vsidx → ...1d936e0-0570-4b87-b4ef-467a46299463.vsidx
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
{ | ||
"ExpandedNodes": [ | ||
"", | ||
"\\rougesurvivalfiles", | ||
"\\rougesurvivalfiles\\rougebackgrounds" | ||
"\\rougesurvivalfiles" | ||
], | ||
"SelectedNode": "\\rougesurvivalfiles\\rougeplants.dm", | ||
"PreviewInSolutionExplorer": false | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/mob/living/carbon/human/proc/friend_seeker() | ||
set name = "Seek Friends" | ||
set category = "MONUMENT SYSTEM" | ||
|
||
if(!mind.has_antag_datum(/datum/antagonist/zombie)) | ||
return FALSE | ||
if(stat >= UNCONSCIOUS) | ||
return FALSE | ||
var/closest_dist | ||
var/the_dir | ||
for(var/mob/living/carbon/human/humie as anything in GLOB.human_list) | ||
if(humie == src) | ||
continue | ||
if(humie.mob_biotypes & MOB_UNDEAD) | ||
continue | ||
if(humie.stat >= DEAD) | ||
continue | ||
var/total_distance = get_dist(src, humie) | ||
if(!closest_dist) | ||
closest_dist = total_distance | ||
the_dir = get_dir(src, humie) | ||
else | ||
if(total_distance < closest_dist) | ||
closest_dist = total_distance | ||
the_dir = get_dir(src, humie) | ||
if(!closest_dist) | ||
to_chat(src, span_warning("I failed to smell anything...")) | ||
return FALSE | ||
to_chat(src, span_warning("[closest_dist] meters away, [dir2text(the_dir)]...")) | ||
return TRUE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters