├── LICENSE ├── README.md ├── bot.py ├── bot0.py ├── discord.sql ├── files ├── .gitignore ├── FreeMonoBold.ttf ├── b1.png ├── big_eye.png ├── bloodshot_eye.png ├── cour.ttf ├── courier.ttf ├── eye.png ├── eye_flipped.png ├── eyes.svg ├── eyes_wc.png ├── googly_eye.png ├── illuminati_eye.png ├── impact.ttf ├── money_eye.png ├── monocle_eye.png ├── red_eye.png ├── small_eye.png ├── spongebob_eye.png └── triggered.png ├── message_queue_api.py ├── message_queue_bot.py ├── mods ├── AI.py ├── Afk.py ├── Chan.py ├── Changes.py ├── Commands.py ├── Fun.py ├── Info.py ├── JoinLeave.py ├── Logging.py ├── Logs.py ├── Markov.py ├── Moderation.py ├── Nsfw.py ├── Reminders.py ├── Repl.py ├── Stats.py ├── Tags.py ├── Utils.py ├── Verification.py ├── Wc.py └── cog.py ├── pixelsort ├── constants.py ├── interval.py ├── sorter.py ├── sorting.py └── util.py ├── requirements.txt ├── resources ├── msgothic.ttc ├── msjhbd.ttc └── msjhl.ttc ├── steam ├── __init__.py ├── steamaccounttype.py ├── steamaccountuniverse.py ├── steamid.py └── steamprofile.py ├── templates └── index.html ├── utils ├── .gitignore ├── checks.py ├── funcs.py └── keys.txt └── vw ├── img └── png │ ├── background │ └── geometric.jpg │ ├── bubbles │ ├── JavaUpdateAvailable.png │ ├── Windows Connection with Little connectivity.png │ ├── a screaming comes across the sky.png │ ├── faster.png │ ├── out of a fantasy.png │ ├── pluggeddeviceintoaudiojack.png │ ├── project a world.png │ └── stupid_bubble_by_Baka_Sora_Club.png │ ├── greek │ ├── greek1.png │ ├── greek2.png │ ├── greek3.png │ ├── greek4.png │ └── siddhartha.png │ ├── pics │ ├── ak47.png │ ├── blindblake.png │ ├── dolphin.png │ ├── drip.png │ ├── fiji.png │ ├── gun.png │ ├── knife.png │ └── knuckle.png │ └── windows │ ├── 98-problem.jpg │ ├── 9x-wu4.png │ ├── C2FAT32.gif │ ├── IPC_MPI_CP5611_1.gif │ ├── Windows_98_-_Critical_Update_Notification.png │ ├── au_15.gif │ ├── au_16.gif │ ├── au_20.gif │ ├── create_disk_image.gif │ ├── ht1338-alert-001-en.png │ ├── regedit.gif │ ├── screenshot.png │ ├── sysinfo.gif │ ├── update.gif │ ├── win98.png │ └── winnt31.png └── macintoshplus.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/README.md -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/bot.py -------------------------------------------------------------------------------- /bot0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/bot0.py -------------------------------------------------------------------------------- /discord.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/discord.sql -------------------------------------------------------------------------------- /files/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/files/.gitignore -------------------------------------------------------------------------------- /files/FreeMonoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/files/FreeMonoBold.ttf -------------------------------------------------------------------------------- /files/b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/files/b1.png -------------------------------------------------------------------------------- /files/big_eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/files/big_eye.png -------------------------------------------------------------------------------- /files/bloodshot_eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/files/bloodshot_eye.png -------------------------------------------------------------------------------- /files/cour.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/files/cour.ttf -------------------------------------------------------------------------------- /files/courier.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/files/courier.ttf -------------------------------------------------------------------------------- /files/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/files/eye.png -------------------------------------------------------------------------------- /files/eye_flipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/files/eye_flipped.png -------------------------------------------------------------------------------- /files/eyes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/files/eyes.svg -------------------------------------------------------------------------------- /files/eyes_wc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/files/eyes_wc.png -------------------------------------------------------------------------------- /files/googly_eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/files/googly_eye.png -------------------------------------------------------------------------------- /files/illuminati_eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/files/illuminati_eye.png -------------------------------------------------------------------------------- /files/impact.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/files/impact.ttf -------------------------------------------------------------------------------- /files/money_eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/files/money_eye.png -------------------------------------------------------------------------------- /files/monocle_eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/files/monocle_eye.png -------------------------------------------------------------------------------- /files/red_eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/files/red_eye.png -------------------------------------------------------------------------------- /files/small_eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/files/small_eye.png -------------------------------------------------------------------------------- /files/spongebob_eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/files/spongebob_eye.png -------------------------------------------------------------------------------- /files/triggered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/files/triggered.png -------------------------------------------------------------------------------- /message_queue_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/message_queue_api.py -------------------------------------------------------------------------------- /message_queue_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/message_queue_bot.py -------------------------------------------------------------------------------- /mods/AI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/mods/AI.py -------------------------------------------------------------------------------- /mods/Afk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/mods/Afk.py -------------------------------------------------------------------------------- /mods/Chan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/mods/Chan.py -------------------------------------------------------------------------------- /mods/Changes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/mods/Changes.py -------------------------------------------------------------------------------- /mods/Commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/mods/Commands.py -------------------------------------------------------------------------------- /mods/Fun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/mods/Fun.py -------------------------------------------------------------------------------- /mods/Info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/mods/Info.py -------------------------------------------------------------------------------- /mods/JoinLeave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/mods/JoinLeave.py -------------------------------------------------------------------------------- /mods/Logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/mods/Logging.py -------------------------------------------------------------------------------- /mods/Logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/mods/Logs.py -------------------------------------------------------------------------------- /mods/Markov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/mods/Markov.py -------------------------------------------------------------------------------- /mods/Moderation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/mods/Moderation.py -------------------------------------------------------------------------------- /mods/Nsfw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/mods/Nsfw.py -------------------------------------------------------------------------------- /mods/Reminders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/mods/Reminders.py -------------------------------------------------------------------------------- /mods/Repl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/mods/Repl.py -------------------------------------------------------------------------------- /mods/Stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/mods/Stats.py -------------------------------------------------------------------------------- /mods/Tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/mods/Tags.py -------------------------------------------------------------------------------- /mods/Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/mods/Utils.py -------------------------------------------------------------------------------- /mods/Verification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/mods/Verification.py -------------------------------------------------------------------------------- /mods/Wc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/mods/Wc.py -------------------------------------------------------------------------------- /mods/cog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/mods/cog.py -------------------------------------------------------------------------------- /pixelsort/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/pixelsort/constants.py -------------------------------------------------------------------------------- /pixelsort/interval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/pixelsort/interval.py -------------------------------------------------------------------------------- /pixelsort/sorter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/pixelsort/sorter.py -------------------------------------------------------------------------------- /pixelsort/sorting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/pixelsort/sorting.py -------------------------------------------------------------------------------- /pixelsort/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/pixelsort/util.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/msgothic.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/resources/msgothic.ttc -------------------------------------------------------------------------------- /resources/msjhbd.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/resources/msjhbd.ttc -------------------------------------------------------------------------------- /resources/msjhl.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/resources/msjhl.ttc -------------------------------------------------------------------------------- /steam/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/steam/__init__.py -------------------------------------------------------------------------------- /steam/steamaccounttype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/steam/steamaccounttype.py -------------------------------------------------------------------------------- /steam/steamaccountuniverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/steam/steamaccountuniverse.py -------------------------------------------------------------------------------- /steam/steamid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/steam/steamid.py -------------------------------------------------------------------------------- /steam/steamprofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/steam/steamprofile.py -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/templates/index.html -------------------------------------------------------------------------------- /utils/.gitignore: -------------------------------------------------------------------------------- 1 | /phantomjs -------------------------------------------------------------------------------- /utils/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/utils/checks.py -------------------------------------------------------------------------------- /utils/funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/utils/funcs.py -------------------------------------------------------------------------------- /utils/keys.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vw/img/png/background/geometric.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/background/geometric.jpg -------------------------------------------------------------------------------- /vw/img/png/bubbles/JavaUpdateAvailable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/bubbles/JavaUpdateAvailable.png -------------------------------------------------------------------------------- /vw/img/png/bubbles/Windows Connection with Little connectivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/bubbles/Windows Connection with Little connectivity.png -------------------------------------------------------------------------------- /vw/img/png/bubbles/a screaming comes across the sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/bubbles/a screaming comes across the sky.png -------------------------------------------------------------------------------- /vw/img/png/bubbles/faster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/bubbles/faster.png -------------------------------------------------------------------------------- /vw/img/png/bubbles/out of a fantasy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/bubbles/out of a fantasy.png -------------------------------------------------------------------------------- /vw/img/png/bubbles/pluggeddeviceintoaudiojack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/bubbles/pluggeddeviceintoaudiojack.png -------------------------------------------------------------------------------- /vw/img/png/bubbles/project a world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/bubbles/project a world.png -------------------------------------------------------------------------------- /vw/img/png/bubbles/stupid_bubble_by_Baka_Sora_Club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/bubbles/stupid_bubble_by_Baka_Sora_Club.png -------------------------------------------------------------------------------- /vw/img/png/greek/greek1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/greek/greek1.png -------------------------------------------------------------------------------- /vw/img/png/greek/greek2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/greek/greek2.png -------------------------------------------------------------------------------- /vw/img/png/greek/greek3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/greek/greek3.png -------------------------------------------------------------------------------- /vw/img/png/greek/greek4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/greek/greek4.png -------------------------------------------------------------------------------- /vw/img/png/greek/siddhartha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/greek/siddhartha.png -------------------------------------------------------------------------------- /vw/img/png/pics/ak47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/pics/ak47.png -------------------------------------------------------------------------------- /vw/img/png/pics/blindblake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/pics/blindblake.png -------------------------------------------------------------------------------- /vw/img/png/pics/dolphin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/pics/dolphin.png -------------------------------------------------------------------------------- /vw/img/png/pics/drip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/pics/drip.png -------------------------------------------------------------------------------- /vw/img/png/pics/fiji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/pics/fiji.png -------------------------------------------------------------------------------- /vw/img/png/pics/gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/pics/gun.png -------------------------------------------------------------------------------- /vw/img/png/pics/knife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/pics/knife.png -------------------------------------------------------------------------------- /vw/img/png/pics/knuckle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/pics/knuckle.png -------------------------------------------------------------------------------- /vw/img/png/windows/98-problem.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/windows/98-problem.jpg -------------------------------------------------------------------------------- /vw/img/png/windows/9x-wu4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/windows/9x-wu4.png -------------------------------------------------------------------------------- /vw/img/png/windows/C2FAT32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/windows/C2FAT32.gif -------------------------------------------------------------------------------- /vw/img/png/windows/IPC_MPI_CP5611_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/windows/IPC_MPI_CP5611_1.gif -------------------------------------------------------------------------------- /vw/img/png/windows/Windows_98_-_Critical_Update_Notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/windows/Windows_98_-_Critical_Update_Notification.png -------------------------------------------------------------------------------- /vw/img/png/windows/au_15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/windows/au_15.gif -------------------------------------------------------------------------------- /vw/img/png/windows/au_16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/windows/au_16.gif -------------------------------------------------------------------------------- /vw/img/png/windows/au_20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/windows/au_20.gif -------------------------------------------------------------------------------- /vw/img/png/windows/create_disk_image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/windows/create_disk_image.gif -------------------------------------------------------------------------------- /vw/img/png/windows/ht1338-alert-001-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/windows/ht1338-alert-001-en.png -------------------------------------------------------------------------------- /vw/img/png/windows/regedit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/windows/regedit.gif -------------------------------------------------------------------------------- /vw/img/png/windows/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/windows/screenshot.png -------------------------------------------------------------------------------- /vw/img/png/windows/sysinfo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/windows/sysinfo.gif -------------------------------------------------------------------------------- /vw/img/png/windows/update.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/windows/update.gif -------------------------------------------------------------------------------- /vw/img/png/windows/win98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/windows/win98.png -------------------------------------------------------------------------------- /vw/img/png/windows/winnt31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/img/png/windows/winnt31.png -------------------------------------------------------------------------------- /vw/macintoshplus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSuper/NotSoBot/HEAD/vw/macintoshplus.py --------------------------------------------------------------------------------