mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-31 07:58:22 +01:00
TG: Reverted borg name stuff...because giving people RP choices is a horrible idea,
obviously. Revision: r3129 Author: elly1...@rocketmail.com Date: Feb 14, 2012
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/mob/living/silicon/robot
|
||||
name = "Robot"
|
||||
name = "Cyborg"
|
||||
icon = 'robots.dmi'//
|
||||
icon_state = "robot"
|
||||
health = 300
|
||||
@@ -36,6 +36,7 @@
|
||||
var/wiresexposed = 0
|
||||
var/locked = 1
|
||||
var/list/req_access = list(access_robotics)
|
||||
var/ident = 0
|
||||
//var/list/laws = list()
|
||||
var/alarms = list("Motion"=list(), "Fire"=list(), "Atmosphere"=list(), "Power"=list())
|
||||
var/viewalerts = 0
|
||||
|
||||
@@ -9,8 +9,9 @@
|
||||
if (src.stat == 2)
|
||||
src.verbs += /mob/proc/ghost
|
||||
if(src.real_name == "Cyborg")
|
||||
src.ident = rand(1, 999)
|
||||
src.real_name += " "
|
||||
src.real_name += "-[rand(1, 999)]"
|
||||
src.real_name += "-[ident]"
|
||||
src.name = src.real_name
|
||||
if(!src.connected_ai)
|
||||
for(var/mob/living/silicon/ai/A in world)
|
||||
|
||||
@@ -10,8 +10,10 @@
|
||||
updateicon()
|
||||
// syndicate = syndie
|
||||
if(real_name == "Cyborg")
|
||||
real_name += " [pick(rand(1, 999))]"
|
||||
ident = rand(1, 999)
|
||||
real_name += "-[ident]"
|
||||
name = real_name
|
||||
|
||||
spawn (4)
|
||||
if (client)
|
||||
connected_ai = activeais()
|
||||
|
||||
Reference in New Issue
Block a user