/mob/proc/on_mob_jump() return /mob/abstract/ghost/on_mob_jump() QDEL_NULL(orbiting) /client/proc/Jump(var/area/A in get_sorted_areas()) set name = "Jump to Area" set desc = "Area to jump to" set category = "Admin" if(!check_rights(R_ADMIN|R_MOD|R_DEBUG|R_DEV)) return if(istype(usr, /mob/abstract/new_player)) return if(GLOB.config.allow_admin_jump) usr.on_mob_jump() usr.forceMove(pick(get_area_turfs(A))) log_admin("[key_name(usr)] jumped to [A]") message_admins("[key_name_admin(usr)] jumped to [A]", 1) feedback_add_details("admin_verb","JA") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! else alert("Admin jumping disabled") /client/proc/jumptoturf(var/turf/T in world) set name = "Jump to Turf" set category = "Admin" if(!check_rights(R_ADMIN|R_MOD|R_DEBUG|R_DEV)) return if(isnewplayer(usr)) return if(GLOB.config.allow_admin_jump) log_admin("[key_name(usr)] jumped to [T.x],[T.y],[T.z] in [T.loc]") message_admins("[key_name_admin(usr)] jumped to [T.x],[T.y],[T.z] in [T.loc]", 1) usr.on_mob_jump() usr.forceMove(T) feedback_add_details("admin_verb","JT") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! else alert("Admin jumping disabled") return /client/proc/jumptomob(var/mob/M in GLOB.mob_list) set category = "Admin" set name = "Jump to Mob Admin" if(!check_rights(R_ADMIN|R_MOD|R_DEBUG|R_DEV)) return if(isnewplayer(usr)) return if(GLOB.config.allow_admin_jump) log_admin("[key_name(usr)] jumped to [key_name(M)]") message_admins("[key_name_admin(usr)] jumped to [key_name_admin(M)]", 1) if(src.mob) var/mob/A = src.mob var/turf/T = get_turf(M) if(isturf(T)) feedback_add_details("admin_verb","JM") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! A.on_mob_jump() A.forceMove(T) else to_chat(A, "This mob is not located in the game world.") else alert("Admin jumping disabled") /client/proc/jumptocoord(tx as num, ty as num, tz as num) set category = "Admin" set name = "Jump to Coordinate" if(!check_rights(R_ADMIN|R_MOD|R_DEBUG|R_DEV)) return if (GLOB.config.allow_admin_jump) if(src.mob) var/mob/A = src.mob A.on_mob_jump() A.x = tx A.y = ty A.z = tz feedback_add_details("admin_verb","JC") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! message_admins("[key_name_admin(usr)] jumped to coordinates [tx], [ty], [tz]") else alert("Admin jumping disabled") /client/proc/jumptozlevel() set category = "Admin" set name = "Jump to Z-Level" if(!check_rights(R_ADMIN|R_MOD|R_DEBUG|R_DEV)) return if(GLOB.config.allow_admin_jump) var/list/zlevels = list() for(var/z=0, z