[PRODUCTS] MindScript
This commit is contained in:
parent
3b9c5bfba3
commit
1dab12bcdb
|
|
@ -108,7 +108,7 @@ Wolfybodies, their limits, and cool things about them.
|
||||||
|
|
||||||
## Programming
|
## Programming
|
||||||
* [Wolfybots](../products/wolfybot.md), being transferred into them, running subroutines on yourself
|
* [Wolfybots](../products/wolfybot.md), being transferred into them, running subroutines on yourself
|
||||||
* gobs-program.ms
|
* [gobs-program.ms](../products/mindscript.md)
|
||||||
|
|
||||||
## Shop class / engineering
|
## Shop class / engineering
|
||||||
* Custom dildos and vibrators
|
* Custom dildos and vibrators
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,73 @@
|
||||||
|
# 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
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# Wolfybot
|
# Wolfybot
|
||||||
|
|
||||||
A cyborg shell that looks like a wolfy with improvements. Standard model.
|
A cyborg shell that looks like a wolfy with improvements. Standard model. Can be programmed in [MindScript](mindscript.md).
|
||||||
|
|
||||||
Normal use case: another person can use it by transferring their mind/soul into it temporarily.
|
Normal use case: another person can use it by transferring their mind/soul into it temporarily.
|
||||||
|
|
||||||
|
|
@ -17,7 +17,7 @@ Note that there can be more than one wolfybot, with different appearances for ea
|
||||||
* Lacks its "own". Based on user or AI, which can vary.
|
* Lacks its "own". Based on user or AI, which can vary.
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
* Runs MindScript, allowing full programmabality.
|
* Runs [MindScript](mindscript.md), allowing full programmabality.
|
||||||
* Full-fledged operating system.
|
* Full-fledged operating system.
|
||||||
* Able to "take in" someone's mind, or body. That person then has control over the bot from a first-person perspective.
|
* Able to "take in" someone's mind, or body. That person then has control over the bot from a first-person perspective.
|
||||||
* Lots of hardware modules, including cock, boobs, tentacles, etc.
|
* Lots of hardware modules, including cock, boobs, tentacles, etc.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue