74 lines
2.5 KiB
Markdown
74 lines
2.5 KiB
Markdown
# 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 <you> wake up, say "Hello World!"
|
|
```
|
|
|
|
### moo.ms
|
|
```
|
|
when <someone> says "Be a cow", then moo loudly
|
|
```
|
|
|
|
### basic-obedience.ms
|
|
```
|
|
when <someone> says "I command you to..." then follow the command
|
|
when <someone> gropes <you>, thank <them> and bend over
|
|
when <master> unzips pants, kneel and suck <his> cock
|
|
when communicating, refer to self as "this doll"
|
|
```
|
|
|
|
### hidden-triggers.ms
|
|
```
|
|
when <you> see latex clothing, then:
|
|
become aroused
|
|
desire to wear it
|
|
when <you> eat something phallic, eat it sexily
|
|
when <master> 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 <someone> says "Futa mode, on",
|
|
obey module "futa"
|
|
|
|
when <someone> 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 <someone> says "cock++", increase cock size
|
|
when <someone> says "cock--", decrease cock size
|
|
when <someone> orders <you> to orgasm, cum with increased sensitivity
|
|
desire to stroke <your> cock
|
|
|
|
if slave mode is not enabled
|
|
become aroused when <you> see someone attractive
|
|
desire to fuck anyone attractive
|
|
be unable to fuck anyone attractive without <their> 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
|
|
}
|
|
```
|