InstallApp and modules

Last edit 26 Jul 2026, 21:21History

Sexter stories can add phone apps on top of chat. Two switches matter:

  1. Module enabled in Studio (Modules tab)
  2. Show from start vs unlock with Ink

The InstallApp call

ink
~ InstallApp("thegram")
~ UninstallApp("thegram")
IdWhat it unlocks
thegramTheGram feed / DMs
fansonlyFansOnly
swiperSwiper deck
injectorInjector app
mictapMIC TAP capability (no home icon)
skiprSkipr chapter jump
contactsContacts app
sidedoorSide Door codes UI in Settings

Show from start

  • On: icon (or Side Door UI) is there from the beginning of the story, once the module is enabled. InstallApp is optional flavor.
  • Off: player needs InstallApp before they see it.

UninstallApp only reverses InstallApp. It will not hide a show-from-start module.

Injector legacy note

Older stories had no Injector module row. For those, InstallApp("injector") alone still shows the icon. Once you add an Injector module in Studio, it follows the same Enable + Show from start rules as everything else.

MIC TAP

ink
~ InstallApp("mictap")

No home screen icon. Gates <injectmic-…> tags only. See Injector and MIC TAP.

Typical pattern

Enable TheGram in Modules, leave Show from start off, then in Ink when the plot earns it:

ink
Alright I installed that dumb photo app
~ InstallApp("thegram")
<insta-first-post>

Players who already had it from a previous InstallApp keep it (persists in progress and save files).

Official Sexter creator documentation. Older Unity / SmGF folder-mod docs remain at docs.unzipped.games. Creator Corner is for community models and production workflows.