Guest User

client defines.dm for anonymous Ckey

a guest
Jan 22nd, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.93 KB | None | 0 0
  1. /client
  2. ////////////////
  3. //ADMIN THINGS//
  4. ////////////////
  5. var/datum/admins/holder = null
  6. var/buildmode = 0
  7. var/list/buildmode_objs = list()
  8.  
  9. var/last_message = "" //Contains the last message sent by this client - used to protect against copy-paste spamming.
  10. var/last_message_count = 0 //contins a number of how many times a message identical to last_message was sent.
  11.  
  12. var/teleport_here_pref = "Flashy" //Flashy, teleports instantly; Stealthy, teleports with a discret fade-in
  13. var/flashy_level = 1 //0 = no additional effect, 1 = visual effect and sound, 2 = shake the fucking screen!, 3 = [atom] HAS RISEN!
  14. var/stealthy_level = 20 //how many tenth of seconds seconds do you want the fade-in to last?
  15.  
  16. /////////
  17. //OTHER//
  18. /////////
  19. var/datum/preferences/prefs = null
  20. var/moving = null
  21. var/adminobs = null
  22. var/area = null
  23. var/time_died_as_mouse = null //when the client last died as a mouse
  24. var/datum/tooltip/tooltips //datum that controls the displaying and hiding of tooltips
  25.  
  26. var/anonymous_key = "" //A key given to everyone for anonymous OOC
  27.  
  28. ///////////////
  29. //SOUND STUFF//
  30. ///////////////
  31. var/ambience_playing= null
  32. var/played = 0
  33.  
  34. ////////////
  35. //SECURITY//
  36. ////////////
  37. var/next_allowed_topic_time = 10
  38. // comment out the line below when debugging locally to enable the options & messages menu
  39. //control_freak = 1
  40.  
  41.  
  42. ////////////////////////////////////
  43. //things that require the database//
  44. ////////////////////////////////////
  45. var/player_age = "Requires database" //So admins know why it isn't working - Used to determine how old the account is - in days.
  46. var/related_accounts_ip = "Requires database" //So admins know why it isn't working - Used to determine what other accounts previously logged in from this ip
  47. var/related_accounts_cid = "Requires database" //So admins know why it isn't working - Used to determine what other accounts previously logged in from this computer id
  48.  
  49. //This breaks a lot of shit. - N3X
  50. preload_rsc = 1 // This is 0 so we can set it to an URL once the player logs in and have them download the resources from a different server.
  51.  
  52. // Used by html_interface module.
  53. var/hi_last_pos
  54.  
  55. /////////////////////////////////////////////
  56. // /vg/: MEDIAAAAAAAA
  57. // Set on login.
  58. var/datum/media_manager/media = null
  59.  
  60. var/filling = 0 //SOME STUPID SHIT POMF IS DOING
  61. var/haszoomed = 0
  62. var/updating_colour = 0
  63.  
  64. // Their chat window, sort of important.
  65. // See /goon/code/datums/browserOutput.dm
  66. var/datum/chatOutput/chatOutput
  67.  
  68. ////////////
  69. //PARALLAX//
  70. ////////////
  71. var/list/parallax = list()
  72. var/list/parallax_movable = list()
  73. var/list/parallax_offset = list()
  74. var/turf/previous_turf = null
  75. var/obj/screen/plane_master/parallax_master/parallax_master = null
  76. var/obj/screen/plane_master/parallax_dustmaster/parallax_dustmaster = null
  77. var/obj/screen/plane_master/parallax_spacemaster/parallax_spacemaster = null
Add Comment
Please, Sign In to add comment