* Maps and things no code/icons * helpers defines globalvars * Onclick world.dm orphaned_procs * subsystems Round vote and shuttle autocall done here too * datums * Game folder * Admin - chatter modules * clothing - mining * modular computers - zambies * client * mob level 1 * mob stage 2 + simple_animal * silicons n brains * mob stage 3 + Alien/Monkey * human mobs * icons updated * some sounds * emitter y u no commit * update tgstation.dme * compile fixes * travis fixes Also removes Fast digest mode, because reasons. * tweaks for travis Mentors are broke again Also fixes Sizeray guns * oxygen loss fix for vore code. * removes unused code * some code updates * bulk fixes * further fixes * outside things * whoops. * Maint bar ported * GLOBs.
51 lines
1.4 KiB
Plaintext
51 lines
1.4 KiB
Plaintext
/client/proc/mentor_follow(var/mob/living/M)
|
|
if(!check_mentor())
|
|
return
|
|
|
|
if(isnull(M))
|
|
return
|
|
|
|
if(!istype(usr, /mob))
|
|
return
|
|
|
|
if(!holder)
|
|
var/datum/mentors/mentor = GLOB.mentor_datums[usr.client.ckey]
|
|
mentor.following = M
|
|
/* else
|
|
holder.following = M*/
|
|
|
|
usr.reset_perspective(M)
|
|
src.verbs += /client/proc/mentor_unfollow
|
|
|
|
to_chat(GLOB.admins, "<span class='mentor'><span class='prefix'>MENTOR:</span> <EM>[key_name(usr)]</EM> is now following <EM>[key_name(M)]</span>")
|
|
to_chat(usr, "<span class='info'>You are now following [M]. Click the \"Stop Following\" button in the Mentor tab to stop.</span>")
|
|
log_mentor("[key_name(usr)] began following [key_name(M)]")
|
|
|
|
|
|
|
|
/client/proc/mentor_unfollow()
|
|
set category = "Mentor"
|
|
set name = "Stop Following"
|
|
set desc = "Stop following the followed."
|
|
|
|
if(!check_mentor())
|
|
return
|
|
|
|
usr.reset_perspective(null)
|
|
src.verbs -= /client/proc/mentor_unfollow
|
|
|
|
var/following = null
|
|
if(!holder)
|
|
var/datum/mentors/mentor = GLOB.mentor_datums[usr.client.ckey]
|
|
following = mentor.following
|
|
/*else
|
|
following = holder.following*/
|
|
|
|
|
|
to_chat(GLOB.admins, "<span class='mentor'><span class='prefix'>MENTOR:</span> <EM>[key_name(usr)]</EM> is no longer following <EM>[key_name(following)]</span>")
|
|
to_chat(usr, "<span class='info'>You are no longer following [following].</span>")
|
|
log_mentor("[key_name(usr)] stopped following [key_name(following)]")
|
|
|
|
following = null
|
|
|