mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-20 11:31:12 +01:00
Spawns the rescue pods survivors with a GPS
Gives a ID to the pod-smuggler
Removes the prefix/suffix from the entered name if someone accidentally enters it
Makes the appearance changer configurable (so it´s possible to determine by spawnpoint what someone should be able to change about the char)
Makes the first part of the name prompt configurable
Adds species overrides for ghost-spawner equipment.
Fixes a bug with belt items being spawned twice.
27 lines
676 B
Plaintext
27 lines
676 B
Plaintext
/datum/ghostspawner/human/visitorerror
|
|
short_name = "visitorerror"
|
|
name = "Visitor"
|
|
desc = "You are a Visitor, but noone told them."
|
|
tags = list("External")
|
|
|
|
enabled = FALSE
|
|
landmark_name = "JoinLate"
|
|
req_perms = null
|
|
max_count = 1
|
|
|
|
//Vars related to human mobs
|
|
outfit = /datum/outfit/admin/random/visitor
|
|
possible_species = list("Human","Skrell","Tajara","Unathi")
|
|
possible_genders = list(MALE,FEMALE)
|
|
allow_appearance_change = APPEARANCE_PLASTICSURGERY
|
|
|
|
assigned_role = "Visitor"
|
|
special_role = "Visitor"
|
|
respawn_flag = null
|
|
|
|
mob_name = null
|
|
|
|
enable_chance = 10
|
|
|
|
/datum/ghostspawner/human/visitorerror/select_spawnpoint(var/use=TRUE)
|
|
return pick(latejoin) |