Guest User

Untitled

a guest
Feb 11th, 2021
164,354
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1. // commands are listed with their maximum values
  2. // going over these values may or may not break the game
  3. // use at your own risk and save often
  4.  
  5. // commands are case sensetive and only work for lowercase
  6. // uppercase in this document means that its an argument that you need to change
  7.  
  8. // press shift+o to open console.
  9.  
  10.  
  11. // change player name
  12. player.fname = "FIRSTNAME"
  13. player.lname = "LASTNAME"
  14.  
  15. // player stats:
  16. player.looks=5
  17. player.charm=5
  18. player.strength=10
  19. player.hacking=5
  20. player.endurance_max=100
  21. player.endurance=100
  22. player.lust=100
  23. player.company_favor=500
  24.  
  25. // player inventory:
  26. player.add_item("ITEM", QUANTITY)
  27. player.rem_item("ITEM", QUANTITY)
  28.  
  29. // most used inventory commands:
  30. player.add_item("blue pill", 10)
  31. player.add_item("sperm(eh) vial", 10)
  32.  
  33. //player effects:
  34. player.add_effect("EFFECT")
  35. player.rem_effect("EFFECT")
  36.  
  37. // most used effects commands:
  38. player.add_effect("erection")
  39. player.add_effect("blue pill")
  40. player.rem_effect("erection")
  41. player.rem_effect("tired")
  42. player.rem_effect("hungry")
  43.  
  44. // girl stats:
  45. NAME.rsm[0].favor=200
  46. NAME.rsm[0].affection_max=100
  47. NAME.rsm[0].affection=100
  48. NAME.rsm[0].love_max=100
  49. NAME.rsm[0].love=100
  50. NAME.lust=100
  51. NAME.rsm[0].anger=0
  52.  
  53. // girl clothes:
  54. // some girls have option 3, but most have 0, 1, 2.
  55. NAME.swimwear=2
  56. NAME.nightwear=2
  57. NAME.receptionwear=1
  58. NAME.sleepwear=2
  59.  
  60. // girl phone data:
  61. NAME.body_type_known=1
  62. NAME.breast_type_known=1
  63. NAME.bra_size_known=1
  64. NAME.waist_size_known=1
  65. NAME.hips_size_known=1
  66. NAME.body_height_known=1
  67. NAME.weight_known=1
  68. NAME.age_known=1
  69. NAME.room_number_known=1
  70.  
  71. // girl subdermal implant data:
  72. NAME.monitoring_sub_dermal=3
  73. NAME.monitoring_sub_dermal_hacked=1
  74.  
  75. // unlock events in the phone:
  76. NAME.add_event_seen("EVENT")
  77. NAME.add_appointment_seen("APPOINTMENT")
  78. NAME.add_scene_seen("SCENE")
  79. NAME.add_dream_image("DREAM")
  80.  
  81. // usefull for events missable events like
  82. aly.add_event_seen("Arrival_planegirl)
  83. aly.add_dream_image("plane")
  84. amy.add_dream_image("plane")
  85. brenda.add_dream_image("plane")
  86. lacey.add_dream_image("plane")
  87.  
  88. // mini games:
  89. g_poker_game.winner=0
  90. g_hotshots.heat=100
Add Comment
Please, Sign In to add comment