# MindScript MindScript is a programming language used to add additional functionality to Wolfybots and Wolfydolls. MindScript consists of basic text files. In programmable Wolfybots, MindScript files are put into the MindScript/ directory. Upon first having a mind transferred into it, WolfyOS runs the contents of install.ms on it. Once that is done, it runs main.ms as the user gains control. All other files can be loaded as needed. MindScript syntax is incredibly flexible, due to being parseable and interpreted by a human's subconscious. For example, if-then statements can also be interpreted as when-then, or even simply "when" followed by a command. Wolfybot users can read and write all files that they have access to; WolfyOS allows users to read a file and follow its commands, but be unable to access it directly or even be aware it exists. Commands are incredibly flexible, and MindScript even supports metaprogramming and read-and-forget functionality. Some simple MindScript examples: ### hello.ms ``` when wake up, say "Hello World!" ``` ### moo.ms ``` when says "Be a cow", then moo loudly ``` ### basic-obedience.ms ``` when says "I command you to..." then follow the command when gropes , thank and bend over when unzips pants, kneel and suck cock when communicating, refer to self as "this doll" ``` ### hidden-triggers.ms ``` when see latex clothing, then: become aroused desire to wear it when eat something phallic, eat it sexily when snaps fingers, go blank and into command input mode be unaware of hidden-triggers.ms be unaware of hidden triggers // Same as above, also works ``` ### futa-mode.ms ``` when says "Futa mode, on", obey module "futa" when says "Futa mode, off", disable module "futa" // Disabling a module disables hardware::cock, as well as the futa module triggers. The following is an option as well disable module "futa" but keep the non-cock triggers module futa: { enable hardware::cock when says "cock++", increase cock size when says "cock--", decrease cock size when orders to orgasm, cum with increased sensitivity desire to stroke cock if slave mode is not enabled become aroused when see someone attractive desire to fuck anyone attractive be unable to fuck anyone attractive without permission else // slave mode is on be unable to cum without permission keep arousal above 90% throb cock every 5 or so seconds // end if } ```