├── .github ├── FUNDING.yml └── workflows │ └── devskim.yml ├── .gitignore ├── .gitmodules ├── .vscode ├── NQTR-Action.code-snippets ├── NQTR-Navigation.code-snippets ├── NQTR-Quest.code-snippets ├── NQTR-Routine.code-snippets ├── NQTR-Talk.code-snippets ├── NQTR-TimeHandler.code-snippets ├── extensions.json ├── launch.json └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── SECURITY.md ├── bin └── renpy.ps1 ├── console └── debug.rpy ├── game ├── core.rpy ├── flags_value.rpy ├── gui.rpy ├── gui │ ├── bar │ │ ├── bottom.png │ │ ├── left.png │ │ ├── right.png │ │ └── top.png │ ├── button │ │ ├── check_foreground.png │ │ ├── check_selected_foreground.png │ │ ├── choice_hover_background.png │ │ ├── choice_idle_background.png │ │ ├── hover_background.png │ │ ├── idle_background.png │ │ ├── quick_hover_background.png │ │ ├── quick_idle_background.png │ │ ├── radio_foreground.png │ │ ├── radio_selected_foreground.png │ │ ├── slot_hover_background.png │ │ └── slot_idle_background.png │ ├── frame.png │ ├── game_menu.png │ ├── main_menu.png │ ├── namebox.png │ ├── notify.png │ ├── nvl.png │ ├── overlay │ │ ├── confirm.png │ │ ├── game_menu.png │ │ └── main_menu.png │ ├── phone │ │ ├── bar │ │ │ ├── bottom.png │ │ │ ├── left.png │ │ │ ├── right.png │ │ │ └── top.png │ │ ├── button │ │ │ ├── check_foreground.png │ │ │ ├── check_selected_foreground.png │ │ │ ├── choice_hover_background.png │ │ │ ├── choice_idle_background.png │ │ │ ├── hover_background.png │ │ │ ├── idle_background.png │ │ │ ├── radio_foreground.png │ │ │ ├── radio_selected_foreground.png │ │ │ ├── slot_hover_background.png │ │ │ └── slot_idle_background.png │ │ ├── nvl.png │ │ ├── overlay │ │ │ ├── game_menu.png │ │ │ └── main_menu.png │ │ ├── scrollbar │ │ │ ├── horizontal_hover_bar.png │ │ │ ├── horizontal_hover_thumb.png │ │ │ ├── horizontal_idle_bar.png │ │ │ ├── horizontal_idle_thumb.png │ │ │ ├── vertical_hover_bar.png │ │ │ ├── vertical_hover_thumb.png │ │ │ ├── vertical_idle_bar.png │ │ │ └── vertical_idle_thumb.png │ │ ├── slider │ │ │ ├── horizontal_hover_bar.png │ │ │ ├── horizontal_hover_thumb.png │ │ │ ├── horizontal_idle_bar.png │ │ │ ├── horizontal_idle_thumb.png │ │ │ ├── vertical_hover_bar.png │ │ │ ├── vertical_hover_thumb.png │ │ │ ├── vertical_idle_bar.png │ │ │ └── vertical_idle_thumb.png │ │ └── textbox.png │ ├── scrollbar │ │ ├── horizontal_hover_bar.png │ │ ├── horizontal_hover_thumb.png │ │ ├── horizontal_idle_bar.png │ │ ├── horizontal_idle_thumb.png │ │ ├── vertical_hover_bar.png │ │ ├── vertical_hover_thumb.png │ │ ├── vertical_idle_bar.png │ │ └── vertical_idle_thumb.png │ ├── skip.png │ ├── slider │ │ ├── horizontal_hover_bar.png │ │ ├── horizontal_hover_thumb.png │ │ ├── horizontal_idle_bar.png │ │ ├── horizontal_idle_thumb.png │ │ ├── vertical_hover_bar.png │ │ ├── vertical_hover_thumb.png │ │ ├── vertical_idle_bar.png │ │ └── vertical_idle_thumb.png │ ├── textbox.png │ └── window_icon.png ├── images.rpy ├── images │ ├── Alice │ │ ├── roomsleep0A.webp │ │ ├── terrace0A.webp │ │ └── terrace0At.webp │ ├── action-key.webp │ ├── icon │ │ ├── Alice.webp │ │ └── Ann.webp │ └── location │ │ ├── aliceroom-0.webp │ │ ├── aliceroom-1.webp │ │ ├── aliceroom-2.webp │ │ ├── aliceroom-3.webp │ │ ├── annroom-0.webp │ │ ├── annroom-1.webp │ │ ├── annroom-2.webp │ │ ├── annroom-3.webp │ │ ├── bathroom.webp │ │ ├── gym.webp │ │ ├── loc-0.webp │ │ ├── loc-1.webp │ │ ├── loc-2.webp │ │ ├── loc-3.webp │ │ ├── lounge-0.webp │ │ ├── lounge-1.webp │ │ ├── lounge-2.webp │ │ ├── lounge-3.webp │ │ ├── map-0.webp │ │ ├── map-1.webp │ │ ├── map-2.webp │ │ ├── map-3.webp │ │ ├── myroom-0.webp │ │ ├── myroom-1.webp │ │ ├── myroom-2.webp │ │ ├── myroom-3.webp │ │ ├── nightcity.webp │ │ ├── terrace-0.webp │ │ ├── terrace-1.webp │ │ ├── terrace-2.webp │ │ └── terrace-3.webp ├── nqtr_interface │ ├── alarm.psd │ ├── alarm.webp │ ├── alarmmodern.psd │ ├── alarmmodern.webp │ ├── box.webp │ ├── coffe.webp │ ├── college.webp │ ├── gym.webp │ ├── help.webp │ ├── home-00.webp │ ├── home-01.webp │ ├── home-02.webp │ ├── home-03.webp │ ├── home-04.webp │ ├── home-05.webp │ ├── home-06.webp │ ├── home-07.webp │ ├── home-08.webp │ ├── home-09.webp │ ├── home-10.webp │ ├── home-11.webp │ ├── hotel.webp │ ├── inventory.webp │ ├── laptop.webp │ ├── map.webp │ ├── memo.webp │ ├── options.webp │ ├── pc.webp │ ├── phone.webp │ ├── shopping.webp │ ├── sleep.webp │ ├── spa.webp │ ├── talk.webp │ ├── user.webp │ └── wait.webp ├── nqtr_screens │ ├── screens_memo.rpy │ ├── screens_nqtr.rpy │ ├── screens_nqtr_component.rpy │ ├── screens_value.rpy │ └── screens_value_fix.rpy ├── nqtr_tool │ ├── action_value_fix.rpy │ ├── conversation_fun.rpy │ ├── conversation_label_fun.rpy │ ├── conversation_value.rpy │ ├── conversation_value_fix.rpy │ ├── nav_label_fun.rpy │ ├── nav_value_fix.rpy │ ├── nav_value_fun.rpy │ ├── quest_fun.rpy │ ├── quest_value_fix.rpy │ ├── quest_value_fun.rpy │ ├── routine_label_fun.rpy │ ├── routine_value_fix.rpy │ ├── routine_value_fun.rpy │ ├── time_fun.rpy │ ├── time_label_fun.rpy │ └── time_value_fix.rpy ├── nqtr_values │ ├── action_label.rpy │ ├── action_talk_label.rpy │ ├── action_value.rpy │ ├── event_label.rpy │ ├── nav_value.rpy │ ├── quest_value.rpy │ ├── routine_value.rpy │ └── time_value.rpy ├── options.rpy ├── screens.rpy └── script.rpy └── pythonpackages ├── __init__.py └── nqtr ├── __init__.py ├── action.py ├── button.py ├── conversation.py ├── conversation_fun.py ├── disabled_solution.py ├── locals.py ├── navigation.py ├── quest.py ├── routine.py └── time.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/devskim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/.github/workflows/devskim.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/NQTR-Action.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/.vscode/NQTR-Action.code-snippets -------------------------------------------------------------------------------- /.vscode/NQTR-Navigation.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/.vscode/NQTR-Navigation.code-snippets -------------------------------------------------------------------------------- /.vscode/NQTR-Quest.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/.vscode/NQTR-Quest.code-snippets -------------------------------------------------------------------------------- /.vscode/NQTR-Routine.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/.vscode/NQTR-Routine.code-snippets -------------------------------------------------------------------------------- /.vscode/NQTR-Talk.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/.vscode/NQTR-Talk.code-snippets -------------------------------------------------------------------------------- /.vscode/NQTR-TimeHandler.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/.vscode/NQTR-TimeHandler.code-snippets -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bin/renpy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/bin/renpy.ps1 -------------------------------------------------------------------------------- /console/debug.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/console/debug.rpy -------------------------------------------------------------------------------- /game/core.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/core.rpy -------------------------------------------------------------------------------- /game/flags_value.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/flags_value.rpy -------------------------------------------------------------------------------- /game/gui.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui.rpy -------------------------------------------------------------------------------- /game/gui/bar/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/bar/bottom.png -------------------------------------------------------------------------------- /game/gui/bar/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/bar/left.png -------------------------------------------------------------------------------- /game/gui/bar/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/bar/right.png -------------------------------------------------------------------------------- /game/gui/bar/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/bar/top.png -------------------------------------------------------------------------------- /game/gui/button/check_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/button/check_foreground.png -------------------------------------------------------------------------------- /game/gui/button/check_selected_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/button/check_selected_foreground.png -------------------------------------------------------------------------------- /game/gui/button/choice_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/button/choice_hover_background.png -------------------------------------------------------------------------------- /game/gui/button/choice_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/button/choice_idle_background.png -------------------------------------------------------------------------------- /game/gui/button/hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/button/hover_background.png -------------------------------------------------------------------------------- /game/gui/button/idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/button/idle_background.png -------------------------------------------------------------------------------- /game/gui/button/quick_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/button/quick_hover_background.png -------------------------------------------------------------------------------- /game/gui/button/quick_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/button/quick_idle_background.png -------------------------------------------------------------------------------- /game/gui/button/radio_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/button/radio_foreground.png -------------------------------------------------------------------------------- /game/gui/button/radio_selected_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/button/radio_selected_foreground.png -------------------------------------------------------------------------------- /game/gui/button/slot_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/button/slot_hover_background.png -------------------------------------------------------------------------------- /game/gui/button/slot_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/button/slot_idle_background.png -------------------------------------------------------------------------------- /game/gui/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/frame.png -------------------------------------------------------------------------------- /game/gui/game_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/game_menu.png -------------------------------------------------------------------------------- /game/gui/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/main_menu.png -------------------------------------------------------------------------------- /game/gui/namebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/namebox.png -------------------------------------------------------------------------------- /game/gui/notify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/notify.png -------------------------------------------------------------------------------- /game/gui/nvl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/nvl.png -------------------------------------------------------------------------------- /game/gui/overlay/confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/overlay/confirm.png -------------------------------------------------------------------------------- /game/gui/overlay/game_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/overlay/game_menu.png -------------------------------------------------------------------------------- /game/gui/overlay/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/overlay/main_menu.png -------------------------------------------------------------------------------- /game/gui/phone/bar/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/bar/bottom.png -------------------------------------------------------------------------------- /game/gui/phone/bar/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/bar/left.png -------------------------------------------------------------------------------- /game/gui/phone/bar/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/bar/right.png -------------------------------------------------------------------------------- /game/gui/phone/bar/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/bar/top.png -------------------------------------------------------------------------------- /game/gui/phone/button/check_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/button/check_foreground.png -------------------------------------------------------------------------------- /game/gui/phone/button/check_selected_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/button/check_selected_foreground.png -------------------------------------------------------------------------------- /game/gui/phone/button/choice_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/button/choice_hover_background.png -------------------------------------------------------------------------------- /game/gui/phone/button/choice_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/button/choice_idle_background.png -------------------------------------------------------------------------------- /game/gui/phone/button/hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/button/hover_background.png -------------------------------------------------------------------------------- /game/gui/phone/button/idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/button/idle_background.png -------------------------------------------------------------------------------- /game/gui/phone/button/radio_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/button/radio_foreground.png -------------------------------------------------------------------------------- /game/gui/phone/button/radio_selected_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/button/radio_selected_foreground.png -------------------------------------------------------------------------------- /game/gui/phone/button/slot_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/button/slot_hover_background.png -------------------------------------------------------------------------------- /game/gui/phone/button/slot_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/button/slot_idle_background.png -------------------------------------------------------------------------------- /game/gui/phone/nvl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/nvl.png -------------------------------------------------------------------------------- /game/gui/phone/overlay/game_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/overlay/game_menu.png -------------------------------------------------------------------------------- /game/gui/phone/overlay/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/overlay/main_menu.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/horizontal_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/scrollbar/horizontal_hover_bar.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/horizontal_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/scrollbar/horizontal_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/horizontal_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/scrollbar/horizontal_idle_bar.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/horizontal_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/scrollbar/horizontal_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/vertical_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/scrollbar/vertical_hover_bar.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/vertical_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/scrollbar/vertical_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/vertical_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/scrollbar/vertical_idle_bar.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/vertical_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/scrollbar/vertical_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/slider/horizontal_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/slider/horizontal_hover_bar.png -------------------------------------------------------------------------------- /game/gui/phone/slider/horizontal_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/slider/horizontal_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/slider/horizontal_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/slider/horizontal_idle_bar.png -------------------------------------------------------------------------------- /game/gui/phone/slider/horizontal_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/slider/horizontal_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/slider/vertical_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/slider/vertical_hover_bar.png -------------------------------------------------------------------------------- /game/gui/phone/slider/vertical_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/slider/vertical_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/slider/vertical_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/slider/vertical_idle_bar.png -------------------------------------------------------------------------------- /game/gui/phone/slider/vertical_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/slider/vertical_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/textbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/phone/textbox.png -------------------------------------------------------------------------------- /game/gui/scrollbar/horizontal_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/scrollbar/horizontal_hover_bar.png -------------------------------------------------------------------------------- /game/gui/scrollbar/horizontal_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/scrollbar/horizontal_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/scrollbar/horizontal_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/scrollbar/horizontal_idle_bar.png -------------------------------------------------------------------------------- /game/gui/scrollbar/horizontal_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/scrollbar/horizontal_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/scrollbar/vertical_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/scrollbar/vertical_hover_bar.png -------------------------------------------------------------------------------- /game/gui/scrollbar/vertical_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/scrollbar/vertical_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/scrollbar/vertical_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/scrollbar/vertical_idle_bar.png -------------------------------------------------------------------------------- /game/gui/scrollbar/vertical_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/scrollbar/vertical_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/skip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/skip.png -------------------------------------------------------------------------------- /game/gui/slider/horizontal_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/slider/horizontal_hover_bar.png -------------------------------------------------------------------------------- /game/gui/slider/horizontal_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/slider/horizontal_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/slider/horizontal_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/slider/horizontal_idle_bar.png -------------------------------------------------------------------------------- /game/gui/slider/horizontal_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/slider/horizontal_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/slider/vertical_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/slider/vertical_hover_bar.png -------------------------------------------------------------------------------- /game/gui/slider/vertical_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/slider/vertical_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/slider/vertical_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/slider/vertical_idle_bar.png -------------------------------------------------------------------------------- /game/gui/slider/vertical_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/slider/vertical_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/textbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/textbox.png -------------------------------------------------------------------------------- /game/gui/window_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/gui/window_icon.png -------------------------------------------------------------------------------- /game/images.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images.rpy -------------------------------------------------------------------------------- /game/images/Alice/roomsleep0A.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/Alice/roomsleep0A.webp -------------------------------------------------------------------------------- /game/images/Alice/terrace0A.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/Alice/terrace0A.webp -------------------------------------------------------------------------------- /game/images/Alice/terrace0At.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/Alice/terrace0At.webp -------------------------------------------------------------------------------- /game/images/action-key.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/action-key.webp -------------------------------------------------------------------------------- /game/images/icon/Alice.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/icon/Alice.webp -------------------------------------------------------------------------------- /game/images/icon/Ann.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/icon/Ann.webp -------------------------------------------------------------------------------- /game/images/location/aliceroom-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/location/aliceroom-0.webp -------------------------------------------------------------------------------- /game/images/location/aliceroom-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/location/aliceroom-1.webp -------------------------------------------------------------------------------- /game/images/location/aliceroom-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/location/aliceroom-2.webp -------------------------------------------------------------------------------- /game/images/location/aliceroom-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/location/aliceroom-3.webp -------------------------------------------------------------------------------- /game/images/location/annroom-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/location/annroom-0.webp -------------------------------------------------------------------------------- /game/images/location/annroom-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/location/annroom-1.webp -------------------------------------------------------------------------------- /game/images/location/annroom-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/location/annroom-2.webp -------------------------------------------------------------------------------- /game/images/location/annroom-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/location/annroom-3.webp -------------------------------------------------------------------------------- /game/images/location/bathroom.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/location/bathroom.webp -------------------------------------------------------------------------------- /game/images/location/gym.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/location/gym.webp -------------------------------------------------------------------------------- /game/images/location/loc-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/location/loc-0.webp -------------------------------------------------------------------------------- /game/images/location/loc-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/location/loc-1.webp -------------------------------------------------------------------------------- /game/images/location/loc-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/location/loc-2.webp -------------------------------------------------------------------------------- /game/images/location/loc-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/location/loc-3.webp -------------------------------------------------------------------------------- /game/images/location/lounge-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/location/lounge-0.webp -------------------------------------------------------------------------------- /game/images/location/lounge-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/location/lounge-1.webp -------------------------------------------------------------------------------- /game/images/location/lounge-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/location/lounge-2.webp -------------------------------------------------------------------------------- /game/images/location/lounge-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/location/lounge-3.webp -------------------------------------------------------------------------------- /game/images/location/map-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/location/map-0.webp -------------------------------------------------------------------------------- /game/images/location/map-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/location/map-1.webp -------------------------------------------------------------------------------- /game/images/location/map-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/location/map-2.webp -------------------------------------------------------------------------------- /game/images/location/map-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/location/map-3.webp -------------------------------------------------------------------------------- /game/images/location/myroom-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/location/myroom-0.webp -------------------------------------------------------------------------------- /game/images/location/myroom-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/location/myroom-1.webp -------------------------------------------------------------------------------- /game/images/location/myroom-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/location/myroom-2.webp -------------------------------------------------------------------------------- /game/images/location/myroom-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/location/myroom-3.webp -------------------------------------------------------------------------------- /game/images/location/nightcity.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/location/nightcity.webp -------------------------------------------------------------------------------- /game/images/location/terrace-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/location/terrace-0.webp -------------------------------------------------------------------------------- /game/images/location/terrace-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/location/terrace-1.webp -------------------------------------------------------------------------------- /game/images/location/terrace-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/location/terrace-2.webp -------------------------------------------------------------------------------- /game/images/location/terrace-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/images/location/terrace-3.webp -------------------------------------------------------------------------------- /game/nqtr_interface/alarm.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/alarm.psd -------------------------------------------------------------------------------- /game/nqtr_interface/alarm.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/alarm.webp -------------------------------------------------------------------------------- /game/nqtr_interface/alarmmodern.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/alarmmodern.psd -------------------------------------------------------------------------------- /game/nqtr_interface/alarmmodern.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/alarmmodern.webp -------------------------------------------------------------------------------- /game/nqtr_interface/box.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/box.webp -------------------------------------------------------------------------------- /game/nqtr_interface/coffe.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/coffe.webp -------------------------------------------------------------------------------- /game/nqtr_interface/college.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/college.webp -------------------------------------------------------------------------------- /game/nqtr_interface/gym.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/gym.webp -------------------------------------------------------------------------------- /game/nqtr_interface/help.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/help.webp -------------------------------------------------------------------------------- /game/nqtr_interface/home-00.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/home-00.webp -------------------------------------------------------------------------------- /game/nqtr_interface/home-01.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/home-01.webp -------------------------------------------------------------------------------- /game/nqtr_interface/home-02.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/home-02.webp -------------------------------------------------------------------------------- /game/nqtr_interface/home-03.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/home-03.webp -------------------------------------------------------------------------------- /game/nqtr_interface/home-04.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/home-04.webp -------------------------------------------------------------------------------- /game/nqtr_interface/home-05.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/home-05.webp -------------------------------------------------------------------------------- /game/nqtr_interface/home-06.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/home-06.webp -------------------------------------------------------------------------------- /game/nqtr_interface/home-07.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/home-07.webp -------------------------------------------------------------------------------- /game/nqtr_interface/home-08.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/home-08.webp -------------------------------------------------------------------------------- /game/nqtr_interface/home-09.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/home-09.webp -------------------------------------------------------------------------------- /game/nqtr_interface/home-10.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/home-10.webp -------------------------------------------------------------------------------- /game/nqtr_interface/home-11.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/home-11.webp -------------------------------------------------------------------------------- /game/nqtr_interface/hotel.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/hotel.webp -------------------------------------------------------------------------------- /game/nqtr_interface/inventory.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/inventory.webp -------------------------------------------------------------------------------- /game/nqtr_interface/laptop.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/laptop.webp -------------------------------------------------------------------------------- /game/nqtr_interface/map.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/map.webp -------------------------------------------------------------------------------- /game/nqtr_interface/memo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/memo.webp -------------------------------------------------------------------------------- /game/nqtr_interface/options.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/options.webp -------------------------------------------------------------------------------- /game/nqtr_interface/pc.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/pc.webp -------------------------------------------------------------------------------- /game/nqtr_interface/phone.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/phone.webp -------------------------------------------------------------------------------- /game/nqtr_interface/shopping.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/shopping.webp -------------------------------------------------------------------------------- /game/nqtr_interface/sleep.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/sleep.webp -------------------------------------------------------------------------------- /game/nqtr_interface/spa.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/spa.webp -------------------------------------------------------------------------------- /game/nqtr_interface/talk.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/talk.webp -------------------------------------------------------------------------------- /game/nqtr_interface/user.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/user.webp -------------------------------------------------------------------------------- /game/nqtr_interface/wait.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_interface/wait.webp -------------------------------------------------------------------------------- /game/nqtr_screens/screens_memo.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_screens/screens_memo.rpy -------------------------------------------------------------------------------- /game/nqtr_screens/screens_nqtr.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_screens/screens_nqtr.rpy -------------------------------------------------------------------------------- /game/nqtr_screens/screens_nqtr_component.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_screens/screens_nqtr_component.rpy -------------------------------------------------------------------------------- /game/nqtr_screens/screens_value.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_screens/screens_value.rpy -------------------------------------------------------------------------------- /game/nqtr_screens/screens_value_fix.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_screens/screens_value_fix.rpy -------------------------------------------------------------------------------- /game/nqtr_tool/action_value_fix.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_tool/action_value_fix.rpy -------------------------------------------------------------------------------- /game/nqtr_tool/conversation_fun.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_tool/conversation_fun.rpy -------------------------------------------------------------------------------- /game/nqtr_tool/conversation_label_fun.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_tool/conversation_label_fun.rpy -------------------------------------------------------------------------------- /game/nqtr_tool/conversation_value.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_tool/conversation_value.rpy -------------------------------------------------------------------------------- /game/nqtr_tool/conversation_value_fix.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_tool/conversation_value_fix.rpy -------------------------------------------------------------------------------- /game/nqtr_tool/nav_label_fun.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_tool/nav_label_fun.rpy -------------------------------------------------------------------------------- /game/nqtr_tool/nav_value_fix.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_tool/nav_value_fix.rpy -------------------------------------------------------------------------------- /game/nqtr_tool/nav_value_fun.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_tool/nav_value_fun.rpy -------------------------------------------------------------------------------- /game/nqtr_tool/quest_fun.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_tool/quest_fun.rpy -------------------------------------------------------------------------------- /game/nqtr_tool/quest_value_fix.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_tool/quest_value_fix.rpy -------------------------------------------------------------------------------- /game/nqtr_tool/quest_value_fun.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_tool/quest_value_fun.rpy -------------------------------------------------------------------------------- /game/nqtr_tool/routine_label_fun.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_tool/routine_label_fun.rpy -------------------------------------------------------------------------------- /game/nqtr_tool/routine_value_fix.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_tool/routine_value_fix.rpy -------------------------------------------------------------------------------- /game/nqtr_tool/routine_value_fun.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_tool/routine_value_fun.rpy -------------------------------------------------------------------------------- /game/nqtr_tool/time_fun.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_tool/time_fun.rpy -------------------------------------------------------------------------------- /game/nqtr_tool/time_label_fun.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_tool/time_label_fun.rpy -------------------------------------------------------------------------------- /game/nqtr_tool/time_value_fix.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_tool/time_value_fix.rpy -------------------------------------------------------------------------------- /game/nqtr_values/action_label.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_values/action_label.rpy -------------------------------------------------------------------------------- /game/nqtr_values/action_talk_label.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_values/action_talk_label.rpy -------------------------------------------------------------------------------- /game/nqtr_values/action_value.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_values/action_value.rpy -------------------------------------------------------------------------------- /game/nqtr_values/event_label.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_values/event_label.rpy -------------------------------------------------------------------------------- /game/nqtr_values/nav_value.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_values/nav_value.rpy -------------------------------------------------------------------------------- /game/nqtr_values/quest_value.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_values/quest_value.rpy -------------------------------------------------------------------------------- /game/nqtr_values/routine_value.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_values/routine_value.rpy -------------------------------------------------------------------------------- /game/nqtr_values/time_value.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/nqtr_values/time_value.rpy -------------------------------------------------------------------------------- /game/options.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/options.rpy -------------------------------------------------------------------------------- /game/screens.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/screens.rpy -------------------------------------------------------------------------------- /game/script.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/game/script.rpy -------------------------------------------------------------------------------- /pythonpackages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pythonpackages/nqtr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pythonpackages/nqtr/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/pythonpackages/nqtr/action.py -------------------------------------------------------------------------------- /pythonpackages/nqtr/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/pythonpackages/nqtr/button.py -------------------------------------------------------------------------------- /pythonpackages/nqtr/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/pythonpackages/nqtr/conversation.py -------------------------------------------------------------------------------- /pythonpackages/nqtr/conversation_fun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/pythonpackages/nqtr/conversation_fun.py -------------------------------------------------------------------------------- /pythonpackages/nqtr/disabled_solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/pythonpackages/nqtr/disabled_solution.py -------------------------------------------------------------------------------- /pythonpackages/nqtr/locals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/pythonpackages/nqtr/locals.py -------------------------------------------------------------------------------- /pythonpackages/nqtr/navigation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/pythonpackages/nqtr/navigation.py -------------------------------------------------------------------------------- /pythonpackages/nqtr/quest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/pythonpackages/nqtr/quest.py -------------------------------------------------------------------------------- /pythonpackages/nqtr/routine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/pythonpackages/nqtr/routine.py -------------------------------------------------------------------------------- /pythonpackages/nqtr/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/NQTR-System/HEAD/pythonpackages/nqtr/time.py --------------------------------------------------------------------------------