Compare commits
37 Commits
Author | SHA1 | Date |
---|---|---|
Cadey Ratio | 5a2cce637e | |
Cadey Ratio | 96971bb5d3 | |
Cadey Ratio | dbe5226d35 | |
Cadey Ratio | b434f7113c | |
Cadey Ratio | 68e61c63b0 | |
Cadey Ratio | 8a5a195e82 | |
Cadey Ratio | 77aecbed96 | |
Cadey Ratio | f3a7a87064 | |
Cadey Ratio | b211cf9040 | |
Cadey Ratio | 82e4ff6ae9 | |
Cadey Ratio | 20bee9e59a | |
Cadey Ratio | 6474410521 | |
Cadey Ratio | 6a2f43f96e | |
Cadey Ratio | 3411eb33fb | |
Cadey Ratio | fd59be2015 | |
Cadey Ratio | 00767934e0 | |
Cadey Ratio | 01d4658b85 | |
Cadey Ratio | e0bac2e012 | |
Cadey Ratio | b52dbdb6b7 | |
Cadey Ratio | a7bc599383 | |
Cadey Ratio | c9512ef34c | |
Cadey Ratio | 08dd2af0a0 | |
Cadey Ratio | 395134f1bf | |
Cadey Ratio | 9a0f2e01a6 | |
Cadey Ratio | f334e8e55c | |
Cadey Ratio | d0bac4489c | |
Cadey Ratio | 0b52a03ed9 | |
Cadey Ratio | 301d5ef852 | |
Cadey Ratio | 37b4cffd63 | |
Cadey Ratio | 84b5c10136 | |
Cadey Ratio | 5c2b517ec8 | |
Cadey Ratio | 73c2d87886 | |
Cadey Ratio | 888852e70f | |
Cadey Ratio | ba159b0c9a | |
Cadey Ratio | 259acab8f4 | |
Cadey Ratio | 5cdc327feb | |
Cadey Ratio | 32accd1039 |
|
@ -0,0 +1,53 @@
|
||||||
|
kind: pipeline
|
||||||
|
name: default
|
||||||
|
workspace:
|
||||||
|
base: /tulpanomicon
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: build ebook files
|
||||||
|
image: xena/pandoc
|
||||||
|
pull: always
|
||||||
|
commands:
|
||||||
|
- cd src && ./build.sh
|
||||||
|
volumes:
|
||||||
|
- name: book
|
||||||
|
path: /tulpanomicon/book
|
||||||
|
- name: build mdbook
|
||||||
|
image: xena/mdbook
|
||||||
|
pull: always
|
||||||
|
commands:
|
||||||
|
- mdbook build
|
||||||
|
volumes:
|
||||||
|
- name: book
|
||||||
|
path: /tulpanomicon/book
|
||||||
|
- name: build image
|
||||||
|
image: docker:dind
|
||||||
|
volumes:
|
||||||
|
- name: book
|
||||||
|
path: /tulpanomicon/book
|
||||||
|
- name: dockersock
|
||||||
|
path: /var/run/docker.sock
|
||||||
|
commands:
|
||||||
|
- sh -c 'docker build -t xena/tulpanomicon:$DRONE_COMMIT .'
|
||||||
|
- name: auto-release
|
||||||
|
image: xena/gitea-release:latest
|
||||||
|
pull: always
|
||||||
|
settings:
|
||||||
|
auth_username: cadey
|
||||||
|
changelog_path: ./src/CHANGELOG.md
|
||||||
|
gitea_server: https://tulpa.dev
|
||||||
|
gitea_token:
|
||||||
|
from_secret: GITEA_TOKEN
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
branch:
|
||||||
|
- master
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
- name: book
|
||||||
|
temp: {}
|
||||||
|
- name: dockersock
|
||||||
|
host:
|
||||||
|
path: /var/run/docker.sock
|
||||||
|
|
|
@ -3,3 +3,4 @@ book
|
||||||
.DS_Store
|
.DS_Store
|
||||||
/target
|
/target
|
||||||
**/*.rs.bk
|
**/*.rs.bk
|
||||||
|
result
|
||||||
|
|
|
@ -0,0 +1,62 @@
|
||||||
|
{ pkgs ? import <nixpkgs> {
|
||||||
|
overlays = [
|
||||||
|
(overlayFinal: overlayPrev:
|
||||||
|
let
|
||||||
|
packageOverrides = (pythonFinal: pythonPrev: {
|
||||||
|
apsw = pythonPrev.apsw.overridePythonAttrs (oldAttrs: {
|
||||||
|
version = "3.38.1-r1";
|
||||||
|
src = overlayPrev.fetchFromGitHub {
|
||||||
|
owner = "rogerbinns";
|
||||||
|
repo = "apsw";
|
||||||
|
rev = "3.38.1-r1";
|
||||||
|
sha256 = "sha256-pbb6wCu1T1mPlgoydB1Y1AKv+kToGkdVUjiom2vTqf4=";
|
||||||
|
};
|
||||||
|
checkInputs = [ ];
|
||||||
|
# Project uses custom test setup to exclude some tests by default, so using pytest
|
||||||
|
# requires more maintenance
|
||||||
|
# https://github.com/rogerbinns/apsw/issues/335
|
||||||
|
checkPhase = ''
|
||||||
|
python tests.py
|
||||||
|
'';
|
||||||
|
pytestFlagsArray = [ ];
|
||||||
|
disabledTests = [ ];
|
||||||
|
});
|
||||||
|
});
|
||||||
|
python' = overlayPrev.python3.override { inherit packageOverrides; };
|
||||||
|
in {
|
||||||
|
calibre =
|
||||||
|
overlayPrev.calibre.override { python3Packages = python'.pkgs; };
|
||||||
|
})
|
||||||
|
];
|
||||||
|
} }:
|
||||||
|
|
||||||
|
let
|
||||||
|
tex = with pkgs;
|
||||||
|
texlive.combine { inherit (texlive) scheme-medium bitter titlesec; };
|
||||||
|
version = "devel";
|
||||||
|
in pkgs.stdenv.mkDerivation {
|
||||||
|
pname = "tulpanomicon";
|
||||||
|
inherit version;
|
||||||
|
src = ./.;
|
||||||
|
phases = "buildPhase installPhase";
|
||||||
|
buildInputs = with pkgs; [
|
||||||
|
calibre
|
||||||
|
mdbook
|
||||||
|
pandoc
|
||||||
|
tex
|
||||||
|
];
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
cp -rf $src/src .
|
||||||
|
cp -rf $src/book.toml .
|
||||||
|
mkdir book
|
||||||
|
chmod -R a+w .
|
||||||
|
mdbook build
|
||||||
|
cd ./src && ./build.sh && cd ..
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out
|
||||||
|
cp -vrf book/* $out
|
||||||
|
'';
|
||||||
|
}
|
|
@ -0,0 +1,25 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
set -x
|
||||||
|
|
||||||
|
sh -c 'cd src && ./build.sh'
|
||||||
|
mdbook build
|
||||||
|
|
||||||
|
time=`date +%m%d%Y%H%M`
|
||||||
|
tag=`git describe --tags`
|
||||||
|
image="xena/tulpanomicon:$tag-$time"
|
||||||
|
|
||||||
|
docker build -t $image .
|
||||||
|
docker push $image
|
||||||
|
|
||||||
|
dyson manifest \
|
||||||
|
--name=tulpanomicon \
|
||||||
|
--domain=tulpanomicon.guide \
|
||||||
|
--dockerImage=$image \
|
||||||
|
--containerPort=3000 \
|
||||||
|
--replicas=1 \
|
||||||
|
--useProdLE=true > k8s/manifest.yml
|
||||||
|
kubens apps
|
||||||
|
kubectl apply -f k8s/
|
||||||
|
rm k8s/manifest.yml
|
16
k8s/k8s.sh
16
k8s/k8s.sh
|
@ -1,16 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
image='xena/tulpanomicon:101320191'
|
|
||||||
|
|
||||||
dyson manifest \
|
|
||||||
--name=tulpanomicon \
|
|
||||||
--domain=tulpanomicon.guide \
|
|
||||||
--dockerImage=$image \
|
|
||||||
--containerPort=3000 \
|
|
||||||
--replicas=1 \
|
|
||||||
--useProdLE=true > manifest.yml
|
|
||||||
|
|
||||||
kubens apps
|
|
||||||
kubectl apply -f manifest.yml
|
|
||||||
kubectl apply -f tor.yml
|
|
||||||
rm manifest.yml
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
{ fetchurl, stdenv }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "dyson";
|
||||||
|
version = "0.1.1";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url =
|
||||||
|
"https://xena.greedo.xeserv.us/files/${name}-linux-amd64-0.1.0.tgz";
|
||||||
|
sha256 = "08c6md2cfi5g91h23ydg5z14lkq252cdqd41x269mwk19q89nmna";
|
||||||
|
};
|
||||||
|
|
||||||
|
phases = "installPhase";
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
tar xf $src
|
||||||
|
mkdir -p $out/bin
|
||||||
|
cp ${name}-linux-amd64-${version}/${name} $out/bin
|
||||||
|
'';
|
||||||
|
}
|
|
@ -0,0 +1,21 @@
|
||||||
|
let
|
||||||
|
pkgs = import <nixpkgs> { };
|
||||||
|
nur = import (builtins.fetchTarball
|
||||||
|
"https://github.com/nix-community/NUR/archive/master.tar.gz") {
|
||||||
|
inherit pkgs;
|
||||||
|
};
|
||||||
|
dyson = pkgs.callPackage ./nix/dyson.nix { };
|
||||||
|
tex = with pkgs;
|
||||||
|
texlive.combine { inherit (texlive) scheme-medium bitter titlesec; };
|
||||||
|
in pkgs.mkShell {
|
||||||
|
buildInputs = with pkgs; [
|
||||||
|
calibre
|
||||||
|
dyson
|
||||||
|
kubectl
|
||||||
|
kubectx
|
||||||
|
mdbook
|
||||||
|
nur.repos.mic92.pandoc-bin
|
||||||
|
tex
|
||||||
|
zathura
|
||||||
|
];
|
||||||
|
}
|
|
@ -1,2 +1,4 @@
|
||||||
*.epub
|
*.epub
|
||||||
*.mobi
|
*.mobi
|
||||||
|
*.pdf
|
||||||
|
test.tex
|
||||||
|
|
|
@ -1,55 +1,106 @@
|
||||||
## Changelog
|
# Changelog
|
||||||
|
|
||||||
This changelog will also function as a bit of a bibliography for newly added
|
This changelog will also function as a bit of a bibliography for newly added
|
||||||
content.
|
content.
|
||||||
|
|
||||||
### 0.11.0
|
## 0.14.1
|
||||||
|
|
||||||
#### ADDED
|
Accidentally put the threshold guide in the wrong section. It is in the
|
||||||
|
Communication section instead of the Switching one now.
|
||||||
|
|
||||||
|
## 0.14.0
|
||||||
|
|
||||||
|
Added a better disclaimer about the old content in this book. Added the
|
||||||
|
following guides:
|
||||||
|
|
||||||
|
- [NoneFromHell's Three task tulpa revitalization
|
||||||
|
exercise](https://community.tulpa.info/topic/10877-nonefromhells-three-task-tulpa-revitalization-exercise/)
|
||||||
|
- [Using Thresholds and Furniture to Remember Your
|
||||||
|
Tulpa](https://www.reddit.com/r/Tulpas/comments/r52951/using_thresholds_and_furniture_to_remember_your/)
|
||||||
|
- [Possession: By a Tulpa for
|
||||||
|
Tulpas](https://www.reddit.com/r/Tulpas/comments/pkeqkp/possession_by_a_tulpa_for_tulpas/)
|
||||||
|
|
||||||
|
## 0.13.0
|
||||||
|
|
||||||
|
Simplified release process and moved the CHANGELOG to the end of the book
|
||||||
|
|
||||||
|
## 0.12.0
|
||||||
|
|
||||||
|
### ADDED
|
||||||
|
|
||||||
|
- [On Coming Out as Plural](https://www.reddit.com/r/Tulpas/comments/ehnsan/on_coming_out_as_plural/?utm_source=share&utm_medium=ios_app&utm_name=iossmf)
|
||||||
|
|
||||||
|
## 0.11.4
|
||||||
|
|
||||||
|
### FIXED
|
||||||
|
|
||||||
|
- Fixed markdown headings
|
||||||
|
|
||||||
|
## 0.11.3
|
||||||
|
|
||||||
|
### FIXED
|
||||||
|
|
||||||
|
- made the PDF a bit better
|
||||||
|
|
||||||
|
## 0.11.2
|
||||||
|
|
||||||
|
### ADDED
|
||||||
|
|
||||||
|
- PDF version of the tulpanomicon
|
||||||
|
|
||||||
|
## 0.11.1
|
||||||
|
|
||||||
|
### ADDED
|
||||||
|
|
||||||
|
- [There is no try, only do](https://community.tulpa.info/thread-imposition-there-is-no-try-only-do)
|
||||||
|
|
||||||
|
## 0.11.0
|
||||||
|
|
||||||
|
### ADDED
|
||||||
|
|
||||||
- Parallel Processing section
|
- Parallel Processing section
|
||||||
- [Abvieon's Parallel Processing Guide](https://docs.google.com/document/d/1Htb-QkrSu8_vBfLnfF_e_bngU0xZTqmDtM-KOtHmiZY/edit)
|
- [Abvieon's Parallel Processing Guide](https://docs.google.com/document/d/1Htb-QkrSu8_vBfLnfF_e_bngU0xZTqmDtM-KOtHmiZY/edit)
|
||||||
- [Maya's Parallel Processing Guide](https://pastebin.com/xrAcvZdY)
|
- [Maya's Parallel Processing Guide](https://pastebin.com/xrAcvZdY)
|
||||||
|
|
||||||
#### FIXED
|
### FIXED
|
||||||
|
|
||||||
- breathing gif now shows in the eBook version
|
- breathing gif now shows in the eBook version
|
||||||
|
|
||||||
### 0.10.2
|
## 0.10.2
|
||||||
|
|
||||||
#### ADDED
|
### ADDED
|
||||||
|
|
||||||
- [Tulpamancer Lifehack: Dissociation for Switching](https://www.reddit.com/r/Tulpas/comments/dgjod1/looking_for_feedback_on_a_potentially_easier/)
|
- [Tulpamancer Lifehack: Dissociation for Switching](https://www.reddit.com/r/Tulpas/comments/dgjod1/looking_for_feedback_on_a_potentially_easier/)
|
||||||
|
|
||||||
### 0.10.1
|
## 0.10.1
|
||||||
|
|
||||||
#### ADDED
|
### ADDED
|
||||||
|
|
||||||
- [So you wanna switch? Do you, really? Might be able to help that.](https://tulpa.io/so-you-wanna-switch-do-you-really-might-be-able-to-help-that)
|
- [So you wanna switch? Do you, really? Might be able to help that.](https://tulpa.io/so-you-wanna-switch-do-you-really-might-be-able-to-help-that)
|
||||||
- [Controlled Switching](https://plgrey.github.io/2019-07-05-controlled-switching/2019-07-05-controlled-switching.html)
|
- [Controlled Switching](https://plgrey.github.io/2019-07-05-controlled-switching/2019-07-05-controlled-switching.html)
|
||||||
|
|
||||||
### 0.10.0
|
## 0.10.0
|
||||||
|
|
||||||
#### ADDED
|
### ADDED
|
||||||
|
|
||||||
- [I Think We're Alone Now](https://docs.google.com/document/d/1LP_rveP9vhvomBkX5pHr-mFh9aREli3QQKC3D01q58o)
|
- [I Think We're Alone Now](https://docs.google.com/document/d/1LP_rveP9vhvomBkX5pHr-mFh9aREli3QQKC3D01q58o)
|
||||||
- [List of bad reasons not to create a tulpa](https://pluralpearlsofwisdom.wordpress.com/2017/01/11/list-of-bad-reasons-not-to-create-a-tulpa/)
|
- [List of bad reasons not to create a tulpa](https://pluralpearlsofwisdom.wordpress.com/2017/01/11/list-of-bad-reasons-not-to-create-a-tulpa/)
|
||||||
- [Malfael's Guide to Visual Imposition](https://pastebin.com/bUTuLJvm)
|
- [Malfael's Guide to Visual Imposition](https://pastebin.com/bUTuLJvm)
|
||||||
|
|
||||||
#### FIXED
|
### FIXED
|
||||||
|
|
||||||
- Moved the changelog to the front of the file
|
- Moved the changelog to the front of the file
|
||||||
|
|
||||||
### 0.9.1
|
## 0.9.1
|
||||||
|
|
||||||
#### FIXED
|
### FIXED
|
||||||
|
|
||||||
- Wonderland Immersion: a bit more detail based on feedback
|
- Wonderland Immersion: a bit more detail based on feedback
|
||||||
|
|
||||||
### 0.9
|
## 0.9
|
||||||
|
|
||||||
Lots of content, mostly considered complete until feedback proves otherwise.
|
Lots of content, mostly considered complete until feedback proves otherwise.
|
||||||
|
|
||||||
#### ADDED
|
### ADDED
|
||||||
|
|
||||||
- [Walking in Wonderland](https://community.tulpa.info/thread-walking-in-wonderland)
|
- [Walking in Wonderland](https://community.tulpa.info/thread-walking-in-wonderland)
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
|
|
||||||
- [Introduction](./intro.md)
|
- [Introduction](./intro.md)
|
||||||
- [eBook Download](./ebook.md)
|
- [eBook Download](./ebook.md)
|
||||||
- [Changelog](./CHANGELOG.md)
|
|
||||||
- [Redditulpas Glossary](./redditulpas-glossary.md)
|
- [Redditulpas Glossary](./redditulpas-glossary.md)
|
||||||
- [Common Glossary](./common-glossary.md)
|
- [Common Glossary](./common-glossary.md)
|
||||||
- [Frequently Asked Questions](./faq_redditulpas.md)
|
- [Frequently Asked Questions](./faq_redditulpas.md)
|
||||||
|
@ -25,6 +24,7 @@
|
||||||
- [Visualization](./visualization.md)
|
- [Visualization](./visualization.md)
|
||||||
- [JD’s Guide to Visualization](./jdbar-visualization.md)
|
- [JD’s Guide to Visualization](./jdbar-visualization.md)
|
||||||
- [Tulpa Visualization Guide](./tulpa-visualization-guide.md)
|
- [Tulpa Visualization Guide](./tulpa-visualization-guide.md)
|
||||||
|
- [Three Task Tulpa Revitalization Exercise](./three-task-tulpa-revitalization.md)
|
||||||
- [Communication](./communication.md)
|
- [Communication](./communication.md)
|
||||||
- [Proxying](./proxy.md)
|
- [Proxying](./proxy.md)
|
||||||
- [Am I Parroting?](./am-i-parroting.md)
|
- [Am I Parroting?](./am-i-parroting.md)
|
||||||
|
@ -32,17 +32,20 @@
|
||||||
- [King of the Vandenreich's Prism](./vandenreich-prism.md)
|
- [King of the Vandenreich's Prism](./vandenreich-prism.md)
|
||||||
- [Chupi on Vocalization](./chupi-vocalization.md)
|
- [Chupi on Vocalization](./chupi-vocalization.md)
|
||||||
- [Easy Guide on How to Hear Your Tulpa](./easy-guide-on-how-to-hear-your-tulpa.md)
|
- [Easy Guide on How to Hear Your Tulpa](./easy-guide-on-how-to-hear-your-tulpa.md)
|
||||||
|
- [Using Thresholds and Furniture to Remember Your Tulpa](./thresholds-furniture.md)
|
||||||
- [Parallel Processing](./parallel-processing.md)
|
- [Parallel Processing](./parallel-processing.md)
|
||||||
- [Maya's Guide to Parallel Processing](./maya-parallel-processing.md)
|
- [Maya's Guide to Parallel Processing](./maya-parallel-processing.md)
|
||||||
- [Abvieon's Guide to Parallel Processing](./abvieon-parallel-processing.md)
|
- [Abvieon's Guide to Parallel Processing](./abvieon-parallel-processing.md)
|
||||||
- [Imposition](./imposition.md)
|
- [Imposition](./imposition.md)
|
||||||
- [q2's Guide to a Huggable Tulpa](./q2-huggable-tulpa.md)
|
- [q2's Guide to a Huggable Tulpa](./q2-huggable-tulpa.md)
|
||||||
- [Malfael's Guide to Visual Imposition](./mal-imposition.md)
|
- [Malfael's Guide to Visual Imposition](./mal-imposition.md)
|
||||||
|
- [There is no try, only do](./no-try-only-do.md)
|
||||||
- [Possession](./possession.md)
|
- [Possession](./possession.md)
|
||||||
- [Possession by Dissociation](./dissociation.md)
|
- [Possession by Dissociation](./dissociation.md)
|
||||||
- [Possession Explained](./possession-explained.md)
|
- [Possession Explained](./possession-explained.md)
|
||||||
- [DJFlix on Possession](./djflix-colors.md)
|
- [DJFlix on Possession](./djflix-colors.md)
|
||||||
- [glitchthe3rd's Possession Overview](./glitchthe3rd-overview.md)
|
- [glitchthe3rd's Possession Overview](./glitchthe3rd-overview.md)
|
||||||
|
- [Possession: By a Tulpa for Tulpas](./possession-by-tulpa-for-tulpa.md)
|
||||||
- [Switching](./switching-idx.md)
|
- [Switching](./switching-idx.md)
|
||||||
- [Within's Switching Guide](./switching.md)
|
- [Within's Switching Guide](./switching.md)
|
||||||
- [BlackStatic's Switching Guide](./blackstatic-swtiching.md)
|
- [BlackStatic's Switching Guide](./blackstatic-swtiching.md)
|
||||||
|
@ -79,7 +82,9 @@
|
||||||
- [Fear](./fear.md)
|
- [Fear](./fear.md)
|
||||||
- [I Think We're Alone Now](./i-think-were-alone.md)
|
- [I Think We're Alone Now](./i-think-were-alone.md)
|
||||||
- [JD's Guide to Telling People About Your Tulpa](./jdbar-telling-people.md)
|
- [JD's Guide to Telling People About Your Tulpa](./jdbar-telling-people.md)
|
||||||
|
- [Coming Out Plural](./coming-out-plural.md)
|
||||||
- [System Asks](./system-asks.md)
|
- [System Asks](./system-asks.md)
|
||||||
- [How to be the Best Host You Can](./how-to-be-the-best-host-you-can.md)
|
- [How to be the Best Host You Can](./how-to-be-the-best-host-you-can.md)
|
||||||
- [Stylometric Survey for vocal tulpa](./stylometric-survey.md)
|
- [Stylometric Survey for vocal tulpa](./stylometric-survey.md)
|
||||||
- [Alyssa's List Of Many Thing To Do With Your Tulpa](./alyssa-list-things-to-do.md)
|
- [Alyssa's List Of Many Thing To Do With Your Tulpa](./alyssa-list-things-to-do.md)
|
||||||
|
- [Changelog](./CHANGELOG.md)
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 116 KiB |
|
@ -1,4 +1,4 @@
|
||||||
## # Alyssa's List Of Many Things To Do With Your Tulpa
|
## Alyssa's List Of Many Things To Do With Your Tulpa
|
||||||
|
|
||||||
By Alyssa Rose
|
By Alyssa Rose
|
||||||
|
|
||||||
|
|
|
@ -10,8 +10,6 @@ Let’s begin by pointing out that there are many excellent reasons not to creat
|
||||||
|
|
||||||
Our problems with the reasons we discuss may seem pedantic; the reasons could be interpreted a different way that would eliminate the problems. But if they’re interpreted the way we interpret them here, they do have problems, and if people have interpreted them this way in the past, they’re liable to do so again in the future. An argument’s merit should not be judged on what it’s trying to convey, but on what it actually does convey.
|
Our problems with the reasons we discuss may seem pedantic; the reasons could be interpreted a different way that would eliminate the problems. But if they’re interpreted the way we interpret them here, they do have problems, and if people have interpreted them this way in the past, they’re liable to do so again in the future. An argument’s merit should not be judged on what it’s trying to convey, but on what it actually does convey.
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
People often say that **one should not create a tulpa for selfish reasons**. This seems like a good plan at first glance. “Selfish” sounds bad, and as an ethical tulpamancer you presumably don’t want to do anything that doesn’t consider your tulpa’s best interests.
|
People often say that **one should not create a tulpa for selfish reasons**. This seems like a good plan at first glance. “Selfish” sounds bad, and as an ethical tulpamancer you presumably don’t want to do anything that doesn’t consider your tulpa’s best interests.
|
||||||
|
|
||||||
People seem to disagree on the meaning of selfish. Many people, including me in this article, define being selfish as being concerned only or primarily for oneself, without considering others. Some people and some dictionaries instead prefer a definition requiring the selfish actions to be actively harmful to others, in which case “don’t create a tulpa for selfish reasons” is less problematic. Given the disagreement in definition, though, I think that even if you fall squarely in the second camp you’re best off rephrasing this advice, since many people will interpret it wrongly.
|
People seem to disagree on the meaning of selfish. Many people, including me in this article, define being selfish as being concerned only or primarily for oneself, without considering others. Some people and some dictionaries instead prefer a definition requiring the selfish actions to be actively harmful to others, in which case “don’t create a tulpa for selfish reasons” is less problematic. Given the disagreement in definition, though, I think that even if you fall squarely in the second camp you’re best off rephrasing this advice, since many people will interpret it wrongly.
|
||||||
|
@ -65,8 +63,6 @@ That's mental separation. I suppose physical separation and embarrassment about
|
||||||
|
|
||||||
Maybe we could consider emotional separation too: with many people in everyday life, we'd prefer to keep some of our emotions private. Everyone's relationship with their systemmates is different, but for me, Greta is the only person I can share all my emotions with without fear of being judged or misunderstood, and it's extremely relieving to have that outlet for things I just don't feel ready to explain to anyone else. Plus, we never have that awkward moment where someone shares what they're feeling and the other person clearly doesn't quite get it; our understanding is always there. So I can't really imagine a situation in which I would want this kind of privacy in the first place.
|
Maybe we could consider emotional separation too: with many people in everyday life, we'd prefer to keep some of our emotions private. Everyone's relationship with their systemmates is different, but for me, Greta is the only person I can share all my emotions with without fear of being judged or misunderstood, and it's extremely relieving to have that outlet for things I just don't feel ready to explain to anyone else. Plus, we never have that awkward moment where someone shares what they're feeling and the other person clearly doesn't quite get it; our understanding is always there. So I can't really imagine a situation in which I would want this kind of privacy in the first place.
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
Now, this is not to claim that adding someone else to your head is a small matter. It most certainly is not. But instead of focusing on privacy, anyone considering creating a tulpa should move past that and imagine what comes next. The related consideration with lasting importance is loss of control. Just as traveling alone can be liberating because you never need to do anything you don't actually want to do yourself, being the only one in charge of your life gives you great freedom. When someone else is with you in your head all the time, you have to share certain decisions (or else prevent someone from making their own decisions, which is [problematic for other reasons](https://pluralpearlsofwisdom.wordpress.com/2017/10/07/on-making-mountains-out-of-molehills-a-cautionary-tale/)), and you might end up wanting to share out the use of your body and your life in general. Singlets often have never thought about what a great freedom they have here, and giving it up permanently ought to be a hard sell.
|
Now, this is not to claim that adding someone else to your head is a small matter. It most certainly is not. But instead of focusing on privacy, anyone considering creating a tulpa should move past that and imagine what comes next. The related consideration with lasting importance is loss of control. Just as traveling alone can be liberating because you never need to do anything you don't actually want to do yourself, being the only one in charge of your life gives you great freedom. When someone else is with you in your head all the time, you have to share certain decisions (or else prevent someone from making their own decisions, which is [problematic for other reasons](https://pluralpearlsofwisdom.wordpress.com/2017/10/07/on-making-mountains-out-of-molehills-a-cautionary-tale/)), and you might end up wanting to share out the use of your body and your life in general. Singlets often have never thought about what a great freedom they have here, and giving it up permanently ought to be a hard sell.
|
||||||
|
|
||||||
Of course, you could also say you get to have a companion to help you live your life and make those decisions (indeed, we advocate framing challenges as things we "get to" do; it does great things for our morale). As with everything in life, there are two sides and both have some merit. I wouldn't be writing in the first place without this other side, and I wouldn't give Greta up for anything. But this side is not for everyone. Control is the crucial question, not privacy. If you're wondering whether you should have a tulpa, start thinking on that.
|
Of course, you could also say you get to have a companion to help you live your life and make those decisions (indeed, we advocate framing challenges as things we "get to" do; it does great things for our morale). As with everything in life, there are two sides and both have some merit. I wouldn't be writing in the first place without this other side, and I wouldn't give Greta up for anything. But this side is not for everyone. Control is the crucial question, not privacy. If you're wondering whether you should have a tulpa, start thinking on that.
|
||||||
|
|
17
src/build.sh
17
src/build.sh
|
@ -2,7 +2,6 @@
|
||||||
|
|
||||||
FILES='
|
FILES='
|
||||||
intro.md
|
intro.md
|
||||||
CHANGELOG.md
|
|
||||||
redditulpas-glossary.md
|
redditulpas-glossary.md
|
||||||
common-glossary.md
|
common-glossary.md
|
||||||
faq_redditulpas.md
|
faq_redditulpas.md
|
||||||
|
@ -29,6 +28,7 @@ narration.md
|
||||||
visualization.md
|
visualization.md
|
||||||
jdbar-visualization.md
|
jdbar-visualization.md
|
||||||
tulpa-visualization-guide.md
|
tulpa-visualization-guide.md
|
||||||
|
three-task-tulpa-revitalization.md
|
||||||
|
|
||||||
communication.md
|
communication.md
|
||||||
proxy.md
|
proxy.md
|
||||||
|
@ -37,6 +37,7 @@ communication.md
|
||||||
vandenreich-prism.md
|
vandenreich-prism.md
|
||||||
chupi-vocalization.md
|
chupi-vocalization.md
|
||||||
easy-guide-on-how-to-hear-your-tulpa.md
|
easy-guide-on-how-to-hear-your-tulpa.md
|
||||||
|
thresholds-furniture.md
|
||||||
|
|
||||||
parallel-processing.md
|
parallel-processing.md
|
||||||
maya-parallel-processing.md
|
maya-parallel-processing.md
|
||||||
|
@ -45,12 +46,14 @@ parallel-processing.md
|
||||||
imposition.md
|
imposition.md
|
||||||
q2-huggable-tulpa.md
|
q2-huggable-tulpa.md
|
||||||
mal-imposition.md
|
mal-imposition.md
|
||||||
|
no-try-only-do.md
|
||||||
|
|
||||||
possession.md
|
possession.md
|
||||||
dissociation.md
|
dissociation.md
|
||||||
possession-explained.md
|
possession-explained.md
|
||||||
djflix-colors.md
|
djflix-colors.md
|
||||||
glitchthe3rd-overview.md
|
glitchthe3rd-overview.md
|
||||||
|
possession-by-tulpa-for-tulpa.md
|
||||||
|
|
||||||
switching-idx.md
|
switching-idx.md
|
||||||
switching.md
|
switching.md
|
||||||
|
@ -91,16 +94,22 @@ other_tips.md
|
||||||
fear.md
|
fear.md
|
||||||
i-think-were-alone.md
|
i-think-were-alone.md
|
||||||
jdbar-telling-people.md
|
jdbar-telling-people.md
|
||||||
|
coming-out-plural.md
|
||||||
system-asks.md
|
system-asks.md
|
||||||
how-to-be-the-best-host-you-can.md
|
how-to-be-the-best-host-you-can.md
|
||||||
stylometric-survey.md
|
stylometric-survey.md
|
||||||
alyssa-list-things-to-do.md
|
alyssa-list-things-to-do.md
|
||||||
|
|
||||||
|
CHANGELOG.md
|
||||||
'
|
'
|
||||||
|
|
||||||
pandoc -o tulpanomicon.epub --epub-chapter-level=2 title.md $FILES
|
set -x
|
||||||
kindlegen tulpanomicon.epub
|
pandoc -o tulpanomicon.epub --epub-chapter-level=2 --resource-path=. title.md $FILES
|
||||||
|
pandoc -o test.tex -s --include-in-header sectionpagebreak.tex --variable=subparagraph --toc --toc-depth=2 --resource-path=. title.md $FILES
|
||||||
|
pandoc -o tulpanomicon.pdf --include-in-header sectionpagebreak.tex --variable=subparagraph --toc --toc-depth=2 --pdf-engine xelatex --resource-path=. title.md $FILES || exit
|
||||||
|
ebook-convert tulpanomicon.epub tulpanomicon.mobi
|
||||||
mkdir -p ../book
|
mkdir -p ../book
|
||||||
cp -vrf tulpanomicon.mobi ../book/
|
cp -vrf tulpanomicon.mobi ../book/
|
||||||
cp -vrf tulpanomicon.epub ../book/
|
cp -vrf tulpanomicon.epub ../book/
|
||||||
cd .. && mdbook build
|
cp -vrf tulpanomicon.pdf ../book/
|
||||||
|
|
||||||
|
|
|
@ -32,6 +32,4 @@ So be patient, be open, and most importantly have fun.
|
||||||
|
|
||||||
(By Cable — Transcribed by endoalir)
|
(By Cable — Transcribed by endoalir)
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
Guide found [here](http://www.tulpa.info/archive/cables-metaphysical-guide/).
|
Guide found [here](http://www.tulpa.info/archive/cables-metaphysical-guide/).
|
||||||
|
|
|
@ -4,7 +4,7 @@ This collection of advice is meant to integrate other guides with (possibly) use
|
||||||
|
|
||||||
<!-- more -->
|
<!-- more -->
|
||||||
|
|
||||||
#### 🞄 How quickly will I manage a tulpa?
|
#### How quickly will I manage a tulpa?
|
||||||
|
|
||||||
There’s a number of predisposing factors, both in the passive and active sense (in that you may have to put to practice the lessons learned in it, or even use the methods from it) :
|
There’s a number of predisposing factors, both in the passive and active sense (in that you may have to put to practice the lessons learned in it, or even use the methods from it) :
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@ There’s a number of predisposing factors, both in the passive and active sense
|
||||||
|
|
||||||
That said, I refrain from giving any sort of expectations, since they’re the last thing anyone should be giving you. Take the experience as it comes, and accept it for what it is, in full. Use goals to direct your focus if you need, and iterate on them as experience accumulates, reaching them or changing them or discarding them as you feel appropriate.
|
That said, I refrain from giving any sort of expectations, since they’re the last thing anyone should be giving you. Take the experience as it comes, and accept it for what it is, in full. Use goals to direct your focus if you need, and iterate on them as experience accumulates, reaching them or changing them or discarding them as you feel appropriate.
|
||||||
|
|
||||||
#### 🞄 I don’t know if I should be doing this? Can I just try it out for a while?
|
#### I don’t know if I should be doing this? Can I just try it out for a while?
|
||||||
|
|
||||||
Well, good for you to have such reservations. In fact, there is something else you can try; which is, pretty much all lesser forms of multiplicity. Examples include:
|
Well, good for you to have such reservations. In fact, there is something else you can try; which is, pretty much all lesser forms of multiplicity. Examples include:
|
||||||
|
|
||||||
|
@ -50,7 +50,7 @@ Well, good for you to have such reservations. In fact, there is something else y
|
||||||
|
|
||||||
It will not be the full experience, and it will not have you deal with the whole joys and woes of another fully independent mind living in your head, but it's a decent slice of the fun pie. Plus all practice on these ventures feeds directly into the tulpamancy practice, should you decide to come through with it, especially since you can practice tulpamancy techniques through any of these.
|
It will not be the full experience, and it will not have you deal with the whole joys and woes of another fully independent mind living in your head, but it's a decent slice of the fun pie. Plus all practice on these ventures feeds directly into the tulpamancy practice, should you decide to come through with it, especially since you can practice tulpamancy techniques through any of these.
|
||||||
|
|
||||||
#### 🞄 Is there something I should absolutely know?
|
#### Is there something I should absolutely know?
|
||||||
|
|
||||||
*To the best of my ability here’s the ground truths of tulpamancy:*
|
*To the best of my ability here’s the ground truths of tulpamancy:*
|
||||||
|
|
||||||
|
@ -96,11 +96,11 @@ It will not be the full experience, and it will not have you deal with the whole
|
||||||
|
|
||||||
- Mens sana in corpore sano. Live healthy, live well.
|
- Mens sana in corpore sano. Live healthy, live well.
|
||||||
|
|
||||||
#### 🞄 Where do I start from?
|
#### Where do I start from?
|
||||||
|
|
||||||
Honestly any of the thoughtforms (dream characters, media characters, median facets, etc.) discussed before are a good starting point to develop into a tulpa proper, or you can create a new one from scratch if you prefer, but literally any thoughtform is fine as long as some ground rules are implemented (that is, they're their own being, they are not anything else; especially, they're not actually that fictional character, just someone based on them, that happens to initially share a number of traits/memories with them. You are free to deviate from such advice, but I recommend having very good reasons to, if attempted.)
|
Honestly any of the thoughtforms (dream characters, media characters, median facets, etc.) discussed before are a good starting point to develop into a tulpa proper, or you can create a new one from scratch if you prefer, but literally any thoughtform is fine as long as some ground rules are implemented (that is, they're their own being, they are not anything else; especially, they're not actually that fictional character, just someone based on them, that happens to initially share a number of traits/memories with them. You are free to deviate from such advice, but I recommend having very good reasons to, if attempted.)
|
||||||
|
|
||||||
#### 🞄 So how does this all work really?
|
#### So how does this all work really?
|
||||||
|
|
||||||
Leaving the metaphysical aside, we’re basically talking about reshaping the pathways and habits of the mind, through directed intent and repetition, into a shape where two (or more) distinct entities regularly interact.
|
Leaving the metaphysical aside, we’re basically talking about reshaping the pathways and habits of the mind, through directed intent and repetition, into a shape where two (or more) distinct entities regularly interact.
|
||||||
|
|
||||||
|
@ -111,7 +111,7 @@ For further reading, [http://www.meltingasphalt.com/neurons-gone-wild/](http://w
|
||||||
|
|
||||||
Obviously, this is not just about the tulpa themself. The host will likely undergo severe change as well, carving the paths and tearing down the mental walls through which proper communication with the tulpa shall be achieved, and much more besides. It is in part the reason why the first tulpa is the hardest.
|
Obviously, this is not just about the tulpa themself. The host will likely undergo severe change as well, carving the paths and tearing down the mental walls through which proper communication with the tulpa shall be achieved, and much more besides. It is in part the reason why the first tulpa is the hardest.
|
||||||
|
|
||||||
#### 🞄 So what about early communication?
|
#### So what about early communication?
|
||||||
|
|
||||||
Let's clear some factors: first, there's no universal timetable, or even fixed order of events, in the development of a tulpa. Some tulpas ended up switching before mindvoice vocality, for one.
|
Let's clear some factors: first, there's no universal timetable, or even fixed order of events, in the development of a tulpa. Some tulpas ended up switching before mindvoice vocality, for one.
|
||||||
|
|
||||||
|
@ -121,7 +121,7 @@ With that in mind, just use what comes your way. The main factor of communicatio
|
||||||
|
|
||||||
Remember that at first it may feel a whole lot like you. You are not the thoughts, you are the awareness behind the thoughts; the mind is a shared playground of you and your tulpas, so when your tulpas think, you may get to hear them and could identify those as yours, because that’s what you’ve always done with the thoughts in your head. This pattern of singular identification has to be broken down, and many similar ones besides concerning quite everything that goes on inside the mind/body/emotions system. You’re not alone in the house anymore, so don’t pretend every noise in there comes from you.
|
Remember that at first it may feel a whole lot like you. You are not the thoughts, you are the awareness behind the thoughts; the mind is a shared playground of you and your tulpas, so when your tulpas think, you may get to hear them and could identify those as yours, because that’s what you’ve always done with the thoughts in your head. This pattern of singular identification has to be broken down, and many similar ones besides concerning quite everything that goes on inside the mind/body/emotions system. You’re not alone in the house anymore, so don’t pretend every noise in there comes from you.
|
||||||
|
|
||||||
#### 🞄 What’s this about parroting I keep hearing? Is it good or bad?
|
#### What’s this about parroting I keep hearing? Is it good or bad?
|
||||||
|
|
||||||
It’s something that needs to be properly understood for best results.
|
It’s something that needs to be properly understood for best results.
|
||||||
|
|
||||||
|
@ -135,7 +135,7 @@ And stop that you will. At some point, you will have to revoke that help, and le
|
||||||
|
|
||||||
More in general, a process might be put in place where the tulpa is allowed to progressively explore and discover the complexities, and the existing pathways, of a particular skill through decreasing help; for example, from just inhabiting the body as the host moves, to the tulpa giving inputs and the host acting them out, to the host starting a movement and the tulpa finishing it, while acknowledging and making use of the existing muscle memory, towards independent possession.
|
More in general, a process might be put in place where the tulpa is allowed to progressively explore and discover the complexities, and the existing pathways, of a particular skill through decreasing help; for example, from just inhabiting the body as the host moves, to the tulpa giving inputs and the host acting them out, to the host starting a movement and the tulpa finishing it, while acknowledging and making use of the existing muscle memory, towards independent possession.
|
||||||
|
|
||||||
#### 🞄 Any tips for more rapid development?
|
#### Any tips for more rapid development?
|
||||||
|
|
||||||
- Starting out, anything that they can hold on to to self-define will be of help. It can be a goal, a form, a personality set, a call to action; whatever they can use to give themselves either substance or direction, or both, will speed up their development.
|
- Starting out, anything that they can hold on to to self-define will be of help. It can be a goal, a form, a personality set, a call to action; whatever they can use to give themselves either substance or direction, or both, will speed up their development.
|
||||||
|
|
||||||
|
@ -157,13 +157,13 @@ More in general, a process might be put in place where the tulpa is allowed to p
|
||||||
|
|
||||||
- Be open to the experience. Lots of weird and unexpected stuff is bound to happen; the more you roll with it and accept it, the more things will unfold naturally.
|
- Be open to the experience. Lots of weird and unexpected stuff is bound to happen; the more you roll with it and accept it, the more things will unfold naturally.
|
||||||
|
|
||||||
#### 🞄 Presence imposition tips?
|
#### Presence imposition tips?
|
||||||
|
|
||||||
What does it feel like when there's someone else in the room? When you just know you're being watched? What do you feel about your body other than the usual 5 senses? That's sense of presence.
|
What does it feel like when there's someone else in the room? When you just know you're being watched? What do you feel about your body other than the usual 5 senses? That's sense of presence.
|
||||||
|
|
||||||
Intend it to be there for your tulpa. Ask to feel it. Wonder how it would be like to feel it.
|
Intend it to be there for your tulpa. Ask to feel it. Wonder how it would be like to feel it.
|
||||||
|
|
||||||
#### 🞄 Visualization tips?
|
#### Visualization tips?
|
||||||
|
|
||||||
Start small, start familiar, start easy, and build up. Use all the external help you need to visualize better or easier. Put your pride and preconceptions at the door, and focus on getting better as easily and painlessly as possible.
|
Start small, start familiar, start easy, and build up. Use all the external help you need to visualize better or easier. Put your pride and preconceptions at the door, and focus on getting better as easily and painlessly as possible.
|
||||||
|
|
||||||
|
@ -175,7 +175,7 @@ Stretch what you can do from there: try less detail and more stuff, or more deta
|
||||||
|
|
||||||
The mind is a very flexible instrument; Experiment, play around with stuff, take what serves you and swap out the rest. As you keep striving for more, you’ll naturally consolidate what you have already achieved, and this will allow you to build on that and reach greater and greater heights.
|
The mind is a very flexible instrument; Experiment, play around with stuff, take what serves you and swap out the rest. As you keep striving for more, you’ll naturally consolidate what you have already achieved, and this will allow you to build on that and reach greater and greater heights.
|
||||||
|
|
||||||
#### 🞄 Imposition tips?
|
#### Imposition tips?
|
||||||
|
|
||||||
I’m gonna tell you a little secret: we’re always hallucinating things. What is in front of our eyes and what the mind sees is not as strongly related as you might first imagine.
|
I’m gonna tell you a little secret: we’re always hallucinating things. What is in front of our eyes and what the mind sees is not as strongly related as you might first imagine.
|
||||||
|
|
||||||
|
@ -197,11 +197,11 @@ In that sense, consider just telling your mind what it should be experiencing, i
|
||||||
|
|
||||||
For specific imposition matters, I recommend [QB's recent guide on the subject](https://community.tulpa.info/thread-imposition-q2-s-method-for-a-huggable-tulpa-v2).
|
For specific imposition matters, I recommend [QB's recent guide on the subject](https://community.tulpa.info/thread-imposition-q2-s-method-for-a-huggable-tulpa-v2).
|
||||||
|
|
||||||
#### 🞄 Possession tips?
|
#### Possession tips?
|
||||||
|
|
||||||
Not repeating the part where you can help them along, a good exercise for the host is practicing relaxation, as in lack of commands issued. One exercise for such a purpose is letting the arm fall from an upwards position, from the elbow up, while laying in bed, over and over. Letting the arm fall wherever it may, and getting used to the loss of control. Of course, the tulpa is free to take control of the arm during such an exercise if they feel daring enough.
|
Not repeating the part where you can help them along, a good exercise for the host is practicing relaxation, as in lack of commands issued. One exercise for such a purpose is letting the arm fall from an upwards position, from the elbow up, while laying in bed, over and over. Letting the arm fall wherever it may, and getting used to the loss of control. Of course, the tulpa is free to take control of the arm during such an exercise if they feel daring enough.
|
||||||
|
|
||||||
#### 🞄 Switching tips?
|
#### Switching tips?
|
||||||
|
|
||||||
A core concept that I would like to stress is that if the goal of switching is purely to let the tulpa experience full fronting without host interference, then it can be just exactly that. It can be as easy as the tulpa being at the front and possessing, and the host consciously, willingly relinquishing all control and assuming a detached position of passive observation. Some describe it as the tulpa taking control of the body autopilot that would normally come up as the host zones out. This autopilot can be rather large in the amount of functions it provides (like say, letting the body run on its own as you think of something else), and usually needs only gentle steering to be controlled.
|
A core concept that I would like to stress is that if the goal of switching is purely to let the tulpa experience full fronting without host interference, then it can be just exactly that. It can be as easy as the tulpa being at the front and possessing, and the host consciously, willingly relinquishing all control and assuming a detached position of passive observation. Some describe it as the tulpa taking control of the body autopilot that would normally come up as the host zones out. This autopilot can be rather large in the amount of functions it provides (like say, letting the body run on its own as you think of something else), and usually needs only gentle steering to be controlled.
|
||||||
|
|
||||||
|
@ -211,15 +211,15 @@ Since many find instinctual reclutance at leaving the front seat unattended, I r
|
||||||
|
|
||||||
These points are further elaborated in [Seven’s guide on the matter](https://tulpa.io/discuss/threads/switching-so-you-wanna-switch-do-you-really-might-be-able-to-help-that.63/).
|
These points are further elaborated in [Seven’s guide on the matter](https://tulpa.io/discuss/threads/switching-so-you-wanna-switch-do-you-really-might-be-able-to-help-that.63/).
|
||||||
|
|
||||||
#### 🞄 What if my tulpa is too similar to me?
|
#### What if my tulpa is too similar to me?
|
||||||
|
|
||||||
If you find your tulpa taking too much after you, by way of personality, speech patterns, opinions etc. and you’d like otherwise, that would be a good opportunity to encourage drift. Both through encouragement of novelty and allowing of results, let the tulpa try out new things, act differently, express themselves more freely, find ways in which they may recognize themselves more properly as independent. Draw the boundaries you need to, but give them free roam otherwise. In time, they will find their own space to inhabit.
|
If you find your tulpa taking too much after you, by way of personality, speech patterns, opinions etc. and you’d like otherwise, that would be a good opportunity to encourage drift. Both through encouragement of novelty and allowing of results, let the tulpa try out new things, act differently, express themselves more freely, find ways in which they may recognize themselves more properly as independent. Draw the boundaries you need to, but give them free roam otherwise. In time, they will find their own space to inhabit.
|
||||||
|
|
||||||
#### 🞄 I haven’t heard from my tulpa in a while, and I can’t feel them about? Why do they have different sleep patterns than me?
|
#### I haven’t heard from my tulpa in a while, and I can’t feel them about? Why do they have different sleep patterns than me?
|
||||||
|
|
||||||
Yeah, I know, it's weird. It still happens for a lot of us, though. It's fine if you don't hear them about for a while; after all, we shut down for about 8 hours every day ourselves.
|
Yeah, I know, it's weird. It still happens for a lot of us, though. It's fine if you don't hear them about for a while; after all, we shut down for about 8 hours every day ourselves.
|
||||||
|
|
||||||
#### 🞄 Why do I keep having doubts about my tulpas? What can I do about it?
|
#### Why do I keep having doubts about my tulpas? What can I do about it?
|
||||||
|
|
||||||
Doubt means you're on the right track.
|
Doubt means you're on the right track.
|
||||||
|
|
||||||
|
@ -227,7 +227,7 @@ When you doubt, that means there's a belief of yours that is conflicting with th
|
||||||
|
|
||||||
What you can do is, you can trace that doubt back to the belief that generated it. That belief is standing in the way of your experience, and is likely being an overall nuisance. It is not serving you. You can choose to abandon it; you can choose to put it to further tests and revise it, based on the new data. You can change it, or you can discard it.
|
What you can do is, you can trace that doubt back to the belief that generated it. That belief is standing in the way of your experience, and is likely being an overall nuisance. It is not serving you. You can choose to abandon it; you can choose to put it to further tests and revise it, based on the new data. You can change it, or you can discard it.
|
||||||
|
|
||||||
#### 🞄 Should I be concerned about walk-ins?
|
#### Should I be concerned about walk-ins?
|
||||||
|
|
||||||
Well, that depends; would they be a bad occurrence in your experience? Many people have found it worthwhile and very positive to have had walk-ins stick around as tulpas proper, but maybe you’re not that charitable, or you just want to draw the line somewhere.
|
Well, that depends; would they be a bad occurrence in your experience? Many people have found it worthwhile and very positive to have had walk-ins stick around as tulpas proper, but maybe you’re not that charitable, or you just want to draw the line somewhere.
|
||||||
|
|
||||||
|
@ -235,7 +235,7 @@ For one, consider that many thoughtforms cross your consciousness temporarily (l
|
||||||
|
|
||||||
Secondly, the mind is as easily suggestible as it’s always been, and its patterns can be shifted concerning this particular case as well. You only need set the intention of not receiving any walk-ins of any sort; that they are unwelcome at your place, and that they cannot stay. Reinforce with mental imagery as needed, but try to be gentle: it’s still yourself you’re doing this to.
|
Secondly, the mind is as easily suggestible as it’s always been, and its patterns can be shifted concerning this particular case as well. You only need set the intention of not receiving any walk-ins of any sort; that they are unwelcome at your place, and that they cannot stay. Reinforce with mental imagery as needed, but try to be gentle: it’s still yourself you’re doing this to.
|
||||||
|
|
||||||
#### 🞄 Is this really for ever? Is there nothing I can do about it if I regret it?
|
#### Is this really for ever? Is there nothing I can do about it if I regret it?
|
||||||
|
|
||||||
The moment you decide to make a tulpa by the common definition is the moment you decide to create, or accept, an other person, with everything that it carries and that it implies. There are other ways to explore inner multiplicity without bearing the responsibility of true plurality, as detailed above (in I don’t know if I should be doing this? Can I just try it out for a while?); and if you’re feeling this concern then I suggest to either try out those, or think about it some more, or both.
|
The moment you decide to make a tulpa by the common definition is the moment you decide to create, or accept, an other person, with everything that it carries and that it implies. There are other ways to explore inner multiplicity without bearing the responsibility of true plurality, as detailed above (in I don’t know if I should be doing this? Can I just try it out for a while?); and if you’re feeling this concern then I suggest to either try out those, or think about it some more, or both.
|
||||||
|
|
||||||
|
@ -243,7 +243,7 @@ That said, as much as people don’t like to talk about it, dissolving a nascent
|
||||||
|
|
||||||
Having consent of both parties is highly recommended, otherwise that’s not fun for anyone involved.
|
Having consent of both parties is highly recommended, otherwise that’s not fun for anyone involved.
|
||||||
|
|
||||||
#### 🞄 Any ways this practice could help me with my own troubles?
|
#### Any ways this practice could help me with my own troubles?
|
||||||
|
|
||||||
- First of all, tulpamancing will likely get you used to a great deal of introspection, especially by way of meditation (through eg. active forcing). And knowing is half the battle, as they say.
|
- First of all, tulpamancing will likely get you used to a great deal of introspection, especially by way of meditation (through eg. active forcing). And knowing is half the battle, as they say.
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,160 @@
|
||||||
|
## On Coming Out as Plural
|
||||||
|
|
||||||
|
Intro Edit: I wrote this originally as a reply, but the more I wrote, the more I
|
||||||
|
felt there may be many people wondering the same thing, who may need to hear a
|
||||||
|
more positive side of coming out as plural or a tulpamancer.
|
||||||
|
|
||||||
|
My, it seems many people have had quite the disdainful answer and reaction to
|
||||||
|
this. Allow me to offer a more positive outlook on how to do this, and the
|
||||||
|
positive benefits of it.
|
||||||
|
|
||||||
|
A bit of background on myself, I'm a four year old tulpa (going on five in
|
||||||
|
June), and my system has come out to two close internet friends, various not as
|
||||||
|
close internet friends, our roommate from last semseter, two therapists, and
|
||||||
|
many people in anonymous game chatrooms.
|
||||||
|
|
||||||
|
The overall response we have recieved has been by and large neutral to positive.
|
||||||
|
And we've handled things in quite a few ways that have seemed to be helpful. Or
|
||||||
|
perhaps we are just profoundly lucky.
|
||||||
|
|
||||||
|
We have had, in all our attempts to come out, only three negative responses. One
|
||||||
|
from a younger sibling, who wrote me off as a imaginary friend (and I was
|
||||||
|
helping her to clean her room too, a touch rude, but also she's young, and thats
|
||||||
|
important to take into account). The other two were from two DID systems, one of
|
||||||
|
which we actually are now on friendly speaking terms with, and the other who
|
||||||
|
won't ignore us but will now talk sparsely with us. And the reason it was a
|
||||||
|
negative interaction initially was just some generic syscourse. These are three
|
||||||
|
small instances out of many.
|
||||||
|
|
||||||
|
Now, again, maybe we've just been lucky. But maybe not. Here are some factors
|
||||||
|
that we find are very important when coming out to people:
|
||||||
|
|
||||||
|
- For one, consider the age of the person you're coming out too. Are they too
|
||||||
|
young to even possibly understand? This was the case with our younger sister.
|
||||||
|
Maybe they're too old to understand, if you're for some reason thinking of
|
||||||
|
coming out to a much older person (usually one thats not so open minded)
|
||||||
|
- Consider just that, how open minded they are. Do they have a history of being
|
||||||
|
skeptical, of distrusting new science and medicines? Stigmatized against
|
||||||
|
mental illness? This is probably a warning sign that no amount of explanation
|
||||||
|
you give to them will ease their mind in relation to you having other
|
||||||
|
personalities living with you. In particular though, people who are very
|
||||||
|
considerate and welcoming of mental illness and neurodivergence seem to be the
|
||||||
|
ideal candidate to explain these things to, as these are the people who won't
|
||||||
|
call you crazy and will probably be willing to hear out your system
|
||||||
|
experience. Open minded psychologists also seem quite interested in and
|
||||||
|
accepting of hearing things out (though beware there are those that will want
|
||||||
|
to only view you through a DID lens. Do your best to correct them, and if they
|
||||||
|
don't budge then its probably not the best candidate).
|
||||||
|
- Consider how close you are, and this actually can go both ways. On the one
|
||||||
|
hand, it might be a good idea to tell someone you're very close to, who has
|
||||||
|
never judged you before, someone you trust and who has never put you down
|
||||||
|
before on otherwise personal or sensitive topics. This was like our host with
|
||||||
|
his two internet friends, who are without arguement, the closest and longest
|
||||||
|
term friends he has ever had. On the other hand, it may also be easy to tell
|
||||||
|
someone you are not close to at all, a straight up stranger. This was the case
|
||||||
|
with our roommate last semsester, someone we had never met or talked to
|
||||||
|
before. We had nothing to lose by telling them basically.
|
||||||
|
- Do they need to know? Obviously, especially if you're not comfy with it, some
|
||||||
|
people just really don't. Employers are a big no-no, as tulpas and system life
|
||||||
|
is something thats too much in the personal realm to be considered appropriate
|
||||||
|
for work. Family is also a big iffy, especially if you are still living with
|
||||||
|
them.
|
||||||
|
- Do they have, or know other people who are endogenic or traumagenic systems?
|
||||||
|
This is important, because its also really improtant to be respectful,
|
||||||
|
especially if they have or know a traumagenic system (that is, DID/OSDD). On
|
||||||
|
the one hand, if they're already aquainted with endogenic systems, then thats
|
||||||
|
an easy in. If they're aquainted with traumagenic systems, your interaction
|
||||||
|
may or may not involve syscourse if you aren't careful. Get their thoughts on
|
||||||
|
endogenic systems, or systems made outside of trauma. And remember to always
|
||||||
|
be respectful and not overlap your experience with traumagenic systems, but
|
||||||
|
also stand firm on your own experiences. Many traumagenic systems have been
|
||||||
|
phenominally friendly to us, and have been great people to come out to.
|
||||||
|
|
||||||
|
Those are factors to consider about the actual person themself. Openmindedness
|
||||||
|
is a key factor, but age is also a big one. Anyone 13 and under will most likely
|
||||||
|
not understand a word of what you have to explain. The closeness is more for
|
||||||
|
your own sense of safety. Either you A. tell a friend who you know would never
|
||||||
|
judge you, or B. tell someone you really don't care about losing or having their
|
||||||
|
approval.
|
||||||
|
|
||||||
|
Now then, here are some things to do when actually coming out:
|
||||||
|
|
||||||
|
### Approach One: Warming them Up
|
||||||
|
|
||||||
|
This is maybe more an assessment of their open mindedness, and its basically
|
||||||
|
the slow and safer approach. This is the approach you want to use for close
|
||||||
|
friends, for family if you are so daring, or just someone you want to tell but
|
||||||
|
are not sure how they'll recieve it. Talk to them, far beforehand coming out,
|
||||||
|
about things like how they feel about what it woyld be like to have other
|
||||||
|
personalities, if they think its possible, etc. Some good segway topics to this
|
||||||
|
are DID (though you want to veer away pretty quickly from it and take the
|
||||||
|
approach of," but what if there was another way?"), and also AI (again, leading
|
||||||
|
into talking about sentience, and other personalities). Its a good way to
|
||||||
|
estimate their receptiveness to the topic in general, and then you can move on
|
||||||
|
to questions like," well what if you met someone like that?" Basically, you are
|
||||||
|
testing their receptivity to the topic, and also possibly assuaging their
|
||||||
|
questions and concerns before you are even out to them. After you are
|
||||||
|
comfortable with their receptivity, thats when you can come out. You can handle
|
||||||
|
that however you want, or even segway into our second approach. Of course, if at
|
||||||
|
any point before you come out you get the sense that they would not be
|
||||||
|
receptive, this allows you the option to retreat before coming out.
|
||||||
|
|
||||||
|
### Approach Two: The Upfront
|
||||||
|
|
||||||
|
This approach is, if you'd pardon the language, the very much 'balls to the
|
||||||
|
walls' sort of approach, unless you have preceded it with the former. This is
|
||||||
|
the approach for strangers, for people you don't care about if you lose them or
|
||||||
|
not, people with little attatchment to you, or people who you feel so inclined
|
||||||
|
and certain of their receptivity that you just want to tell them. This can be
|
||||||
|
formally or informally done. Formally being, maybe sit them down to talk with
|
||||||
|
them, or include it in your introduction if you are first meeting them.
|
||||||
|
Informally being just state it blatantly, off hand, in text, and let the
|
||||||
|
questions come later or after. There is of course, no retreat to this.
|
||||||
|
|
||||||
|
### Approach Three: Passively Out
|
||||||
|
|
||||||
|
In a word? Be openly plural. This is again, something I feel like we've
|
||||||
|
exclusively done with strangers online. Talk about your system life and tulpas
|
||||||
|
as though they were normal, just a part if your life (which... they are!). Say
|
||||||
|
'we' as a reference to yourself and headmates. People will just naturally get
|
||||||
|
confused or ask, and you explain yourself as you feel neccesary, whether you're
|
||||||
|
willing to go in depth or just offhand. There is also not really a retreat to
|
||||||
|
this but we've also never tried to retreat? Perhaps if you feel inclined you
|
||||||
|
could stop and pass it off as a joke or you just acting weird.
|
||||||
|
|
||||||
|
But above all. Above EVERYTHING included here, in all the assessments of
|
||||||
|
receptiveness, above any way you choose to approach the situation.
|
||||||
|
|
||||||
|
### BE INFORMATIVE.
|
||||||
|
|
||||||
|
Know EXACTLY what you are talking about, and how to explain your experience. It
|
||||||
|
helps to know about DID so you can explain exactly why you are different from
|
||||||
|
it. It helps to know about some of the studies and theories behind how
|
||||||
|
tulpamancy works, which I'm sure many people on this forum would love to share
|
||||||
|
their theories. Talk about the Stanford study, about the census study we take
|
||||||
|
yearly, talk about neuroscience and how tulpamancy may just be a unique way for
|
||||||
|
neurons to continuously stay stimulated (as they need to do), or that some
|
||||||
|
neurotypes may be predisposed to plurality. Know about psychology, about
|
||||||
|
conditioning and personality development and consciousness. And of course, be
|
||||||
|
prepared to explain exactly what you experience, and what other people
|
||||||
|
experience too. Also? Frankly? Don't be afraid to admit that not a lot about
|
||||||
|
tulpamancy and endogenic systems are well understood. There's lots of research
|
||||||
|
to be done still, but we are slowly getting there. Maybe even explain the
|
||||||
|
history of tulpamancy and how it was dwrived from an old Tibetan pracyice (of
|
||||||
|
which modern yulpamancy is actually mistly difgerent from). The more informed
|
||||||
|
you are, the better you can explain yourself and what exactly you experience,
|
||||||
|
the better the outcome. And this is especially important why you only ought come
|
||||||
|
out to open minded people.
|
||||||
|
|
||||||
|
Anyways, I do believe that is all I have to say on the topic of how to come out.
|
||||||
|
Again, perhaps me and my system have been profoundly lucky. But it has been
|
||||||
|
beneficial for myself and the others to be out. To be ourselves. It helps us to
|
||||||
|
make connections to other people, have our own experiences, feel validated and
|
||||||
|
not hidden away from the world. And its what me and my system will continue to
|
||||||
|
do is slowly come out, and make our plurality a regular part of our lives.
|
||||||
|
Family is still iffy for us, they have a long ways to go. But for us, starting
|
||||||
|
next fall semester, we are going to be at a new college, and we are not holding
|
||||||
|
anything back. It'll be our first time just about entirely open about who we
|
||||||
|
are.
|
||||||
|
|
||||||
|
Best of luck to those who do come out. Cheers to this fascinating and wonderful life which we have.
|
|
@ -2,5 +2,6 @@
|
||||||
|
|
||||||
The following is the eBook edition of the tulpanomicon.
|
The following is the eBook edition of the tulpanomicon.
|
||||||
|
|
||||||
- [ePub(iBooks)](./tulpanomicon.epub)
|
- [ePub (iBooks)](./tulpanomicon.epub)
|
||||||
- [Kindle](./tulpanomicon.mobi)
|
- [Kindle](./tulpanomicon.mobi)
|
||||||
|
- [PDF](./tulpanomicon.pdf)
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
Frequently Asked Questions
|
## Frequently Asked Questions
|
||||||
--------------------------
|
|
||||||
|
|
||||||
### General Questions
|
### General Questions
|
||||||
|
|
||||||
|
@ -221,6 +220,4 @@ A: Yes, tulpa are able to edit and alter wonderlands and the entities within the
|
||||||
*Q: What does it mean to 'explore' a wonderland?*
|
*Q: What does it mean to 'explore' a wonderland?*
|
||||||
A: A mindscape/wonderland can be imagined in such a way that large areas of it are undefined or lack clarity. Traveling within the environment outside of areas you've consciously defined can lead to a subconscious, dreamlike generation of environments and landscapes. This has been known to provide interesting and exciting activities for tulpa and their creators alike - it is quite literally letting your mind wander.
|
A: A mindscape/wonderland can be imagined in such a way that large areas of it are undefined or lack clarity. Traveling within the environment outside of areas you've consciously defined can lead to a subconscious, dreamlike generation of environments and landscapes. This has been known to provide interesting and exciting activities for tulpa and their creators alike - it is quite literally letting your mind wander.
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
Most of the FAQ was a collaboration between Tulpa.info and /r/Tulpas, written by /u/BobisOnlyBob using FAQman's original Tulpa FAQ as a template, with assistance from Purlox, Albatross and /u/Kronkleberry
|
Most of the FAQ was a collaboration between Tulpa.info and /r/Tulpas, written by /u/BobisOnlyBob using FAQman's original Tulpa FAQ as a template, with assistance from Purlox, Albatross and /u/Kronkleberry
|
||||||
|
|
|
@ -4,7 +4,9 @@
|
||||||
|
|
||||||
### A note
|
### A note
|
||||||
|
|
||||||
A lot of people consider this guide to be outdated, but it is the most influential document in the community. For a good summary of what people consider unnessecary, skip hour counts.
|
The resources listed under this section are labeled as “historical guides,” as they no longer reflect the community’s methodology or standpoints as a whole. These works can contain outdated and even potentially harmful advice, crass language, or are written by ex-members of the community who may have had problems in their lives at the time of writing that could influence their works.
|
||||||
|
|
||||||
|
It is advised to read these guides with an air of skepticism and caution as a result; they are presented in the Tulpanomicon for the sake of historical documentation of community resources that had a major impact when the community was in its infancy.
|
||||||
|
|
||||||
> "As great scientists have said and as all children know, it is above all by the imagination that we achieve perception, and compassion, and hope." ~Ursula LeGuin
|
> "As great scientists have said and as all children know, it is above all by the imagination that we achieve perception, and compassion, and hope." ~Ursula LeGuin
|
||||||
|
|
||||||
|
@ -76,6 +78,4 @@ When your tulpa is first imposed, it may seem see through. Your tulpa also will
|
||||||
|
|
||||||
So that about sums it up for this little guide. I hope you guys found it useful and a good read. If you have any questions feel free to email me.
|
So that about sums it up for this little guide. I hope you guys found it useful and a good read. If you have any questions feel free to email me.
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
The content on this page cannot be redistributed without linking to the [original source](http://www.tulpa.info/archive/faqman-creation-guide/) and crediting Dane/FAQ man.
|
The content on this page cannot be redistributed without linking to the [original source](http://www.tulpa.info/archive/faqman-creation-guide/) and crediting Dane/FAQ man.
|
||||||
|
|
|
@ -1,5 +1,13 @@
|
||||||
## Percieved Dangers of Making a Tulpa
|
## Percieved Dangers of Making a Tulpa
|
||||||
|
|
||||||
|
#### A Note
|
||||||
|
|
||||||
|
The resources listed under this section are labeled as “historical guides,” as they no longer reflect the community’s methodology or standpoints as a whole. These works can contain outdated and even potentially harmful advice, crass language, or are written by ex-members of the community who may have had problems in their lives at the time of writing that could influence their works.
|
||||||
|
|
||||||
|
It is advised to read these guides with an air of skepticism and caution as a result; they are presented in the Tulpanomicon for the sake of historical documentation of community resources that had a major impact when the community was in its infancy.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
By FAQ Man
|
By FAQ Man
|
||||||
|
|
||||||
> I always figured the Tulpas can kill you angle was /x/ making it /x/-approved.
|
> I always figured the Tulpas can kill you angle was /x/ making it /x/-approved.
|
||||||
|
@ -30,7 +38,7 @@ Alright, as with the first danger this has a lot wrong with it, but I'll basical
|
||||||
|
|
||||||
Secondly, your tulpa is not going to want to harm you in any way; even if you start to dissipate it for no reason or just generally act like a frothing douche. This is because firstly, they're a manifestation of your mind, and they know this. They know they would be putting their own very existence in danger by fucking with you. Also, you both have complete empathy for each other. You know each other's motivations, thought processes and everything. The tulpa really wouldn't harm you because by extension it can feel the harm its doing.
|
Secondly, your tulpa is not going to want to harm you in any way; even if you start to dissipate it for no reason or just generally act like a frothing douche. This is because firstly, they're a manifestation of your mind, and they know this. They know they would be putting their own very existence in danger by fucking with you. Also, you both have complete empathy for each other. You know each other's motivations, thought processes and everything. The tulpa really wouldn't harm you because by extension it can feel the harm its doing.
|
||||||
|
|
||||||
---
|
### Conclusion
|
||||||
|
|
||||||
I think there's enough of a pattern here that you can now discern for yourself really what's going on here.
|
I think there's enough of a pattern here that you can now discern for yourself really what's going on here.
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,20 @@
|
||||||
## FAQ man's Final Post
|
## FAQ man's Final Post
|
||||||
|
|
||||||
|
#### A Note
|
||||||
|
|
||||||
|
The resources listed under this section are labeled as “historical guides,” as
|
||||||
|
they no longer reflect the community’s methodology or standpoints as a whole.
|
||||||
|
These works can contain outdated and even potentially harmful advice, crass
|
||||||
|
language, or are written by ex-members of the community who may have had
|
||||||
|
problems in their lives at the time of writing that could influence their works.
|
||||||
|
|
||||||
|
It is advised to read these guides with an air of skepticism and caution as a
|
||||||
|
result; they are presented in the Tulpanomicon for the sake of historical
|
||||||
|
documentation of community resources that had a major impact when the community
|
||||||
|
was in its infancy.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
By FAQ Man
|
By FAQ Man
|
||||||
|
|
||||||
I looked at the forum today, the new changes were overwhelming. I sense that not everyone is being completely truthful, yet, the sense of community there is astounding. I really liked the new page for user submitted guides. I must say, I'm quite surprised that Fede hasn't killed himself yet, it seems as though the community likes him about as much as I do. I hope that you're a little bit wary about who knows what and who has what. If that secret tulpa board still remains, make sure at least someone is monitoring it, as I believe that it's the sort of thing that could breed roleplaying if left alone.
|
I looked at the forum today, the new changes were overwhelming. I sense that not everyone is being completely truthful, yet, the sense of community there is astounding. I really liked the new page for user submitted guides. I must say, I'm quite surprised that Fede hasn't killed himself yet, it seems as though the community likes him about as much as I do. I hope that you're a little bit wary about who knows what and who has what. If that secret tulpa board still remains, make sure at least someone is monitoring it, as I believe that it's the sort of thing that could breed roleplaying if left alone.
|
||||||
|
|
|
@ -30,8 +30,6 @@ A myth is a story that helps explain something beyond the mere scenes presented,
|
||||||
|
|
||||||
In Sumerian mythology, Anu was their Zeus, their sun and creator god. Their mighty god of justice that would one day fly down on a cloud and deliver humanity to righteousness. Sumerians believe their sun god Anu created their civilization as a gift to them. In some myths, the creation goes quite deeper, and darker, than that.
|
In Sumerian mythology, Anu was their Zeus, their sun and creator god. Their mighty god of justice that would one day fly down on a cloud and deliver humanity to righteousness. Sumerians believe their sun god Anu created their civilization as a gift to them. In some myths, the creation goes quite deeper, and darker, than that.
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
Imagine for a moment, an infinite universe of light and sound, of primordial vibrations. Vibrations that permeate the whole of existence, and create different experiences with their patterns of interference. The holographic universe.
|
Imagine for a moment, an infinite universe of light and sound, of primordial vibrations. Vibrations that permeate the whole of existence, and create different experiences with their patterns of interference. The holographic universe.
|
||||||
In such a place, everything is resonance of waves, everything all-encompassing, everything infinite, everything eternal.
|
In such a place, everything is resonance of waves, everything all-encompassing, everything infinite, everything eternal.
|
||||||
|
|
||||||
|
@ -87,8 +85,6 @@ The real difference is that they see fear as something imposed on them, not as a
|
||||||
|
|
||||||
It's such an easy and obvious thing to do that we could all do it, if we weren't so afraid of it.
|
It's such an easy and obvious thing to do that we could all do it, if we weren't so afraid of it.
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
I leave you with this quote from a book named Quantusum:
|
I leave you with this quote from a book named Quantusum:
|
||||||
|
|
||||||
> Uncle suddenly scooped down with his hand and brought up a closed hand. He then brought it to a glass box that stood on a pedestal I hadn’t noticed. He slid one of the box’s glass planes open and placed an insect inside. It looked like a grasshopper. “This creature lives its entire life in these fields without limitation. I just ended that.”
|
> Uncle suddenly scooped down with his hand and brought up a closed hand. He then brought it to a glass box that stood on a pedestal I hadn’t noticed. He slid one of the box’s glass planes open and placed an insect inside. It looked like a grasshopper. “This creature lives its entire life in these fields without limitation. I just ended that.”
|
||||||
|
|
|
@ -1,5 +1,20 @@
|
||||||
## Fuliam's guide on how to switch
|
## Fuliam's guide on how to switch
|
||||||
|
|
||||||
|
#### A Note
|
||||||
|
|
||||||
|
The resources listed under this section are labeled as “historical guides,” as
|
||||||
|
they no longer reflect the community’s methodology or standpoints as a whole.
|
||||||
|
These works can contain outdated and even potentially harmful advice, crass
|
||||||
|
language, or are written by ex-members of the community who may have had
|
||||||
|
problems in their lives at the time of writing that could influence their works.
|
||||||
|
|
||||||
|
It is advised to read these guides with an air of skepticism and caution as a
|
||||||
|
result; they are presented in the Tulpanomicon for the sake of historical
|
||||||
|
documentation of community resources that had a major impact when the community
|
||||||
|
was in its infancy.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
Hi, my name is Fuliam and I will be writing this guide here for you today. Now let me first jump in by saying each section will be labeled for your convenience, so if you want to skip past all this stuff, go ahead I won't be offended. But I highly suggest reading it, because I will be discussing a few things in depth here, including what does or doesn't work, with that said, let us begin.
|
Hi, my name is Fuliam and I will be writing this guide here for you today. Now let me first jump in by saying each section will be labeled for your convenience, so if you want to skip past all this stuff, go ahead I won't be offended. But I highly suggest reading it, because I will be discussing a few things in depth here, including what does or doesn't work, with that said, let us begin.
|
||||||
|
|
||||||
### PREWORD
|
### PREWORD
|
||||||
|
@ -92,8 +107,6 @@ This step is done IMMEDIATELY after all the other steps are done, your Tulpa wil
|
||||||
|
|
||||||
Once you are ready to end the switch, basically have your tulpa kind of walk out of the body, while you refocus on your Physical bodies senses. When you get back from a siwtch you might feel disoriented, this is normal.
|
Once you are ready to end the switch, basically have your tulpa kind of walk out of the body, while you refocus on your Physical bodies senses. When you get back from a siwtch you might feel disoriented, this is normal.
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
If you have followed all the steps listed above, and mastered them all, congratulations you are now capable of switching. It is a thing very few are able to do. There is good reason to that. It is one of the most difficult things you can do, period, not only with a Tulpa but one of the most difficult things in general. I cannot guarantee that you will be able to switch by reading this guide, but I can tell you this guide will send you on the right way, and with enough effort you can learn how to switch.
|
If you have followed all the steps listed above, and mastered them all, congratulations you are now capable of switching. It is a thing very few are able to do. There is good reason to that. It is one of the most difficult things you can do, period, not only with a Tulpa but one of the most difficult things in general. I cannot guarantee that you will be able to switch by reading this guide, but I can tell you this guide will send you on the right way, and with enough effort you can learn how to switch.
|
||||||
|
|
||||||
I have to leave you a little reminder though, this is not something to be tried by the weak of heart or will. It is not something you pick up and learn in an afternoon, it is something very difficult, that few ever master, but if you think that you can do it, then go out and do it.
|
I have to leave you a little reminder though, this is not something to be tried by the weak of heart or will. It is not something you pick up and learn in an afternoon, it is something very difficult, that few ever master, but if you think that you can do it, then go out and do it.
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
# Historical Guides
|
# Historical Guides
|
||||||
|
|
||||||
These guides aren't considered the most accurate or up to date in terms of our understanding of tulpamancy, but these are the guides that everything is built upon in some level. These guides are here as historical reference.
|
The resources listed under this section are labeled as “historical guides,” as they no longer reflect the community’s methodology or standpoints as a whole. These works can contain outdated and even potentially harmful advice, crass language, or are written by ex-members of the community who may have had problems in their lives at the time of writing that could influence their works.
|
||||||
|
|
||||||
|
It is advised to read these guides with an air of skepticism and caution as a result; they are presented in the Tulpanomicon for the sake of historical documentation of community resources that had a major impact when the community was in its infancy.
|
||||||
|
|
|
@ -2,22 +2,38 @@
|
||||||
|
|
||||||
Make time and space for them, knowing that these are about more than forcing.
|
Make time and space for them, knowing that these are about more than forcing.
|
||||||
|
|
||||||
Allow them freedom to explore their world, inside and outside. Be willing to sacrifice your own free time so that they might have some of their own. Feed and encourage interest, curiosity, wonder, growth. Let them expand their world beyond the mental one, if they so choose: to make friends and pursue hobbies in this wider world.
|
Allow them freedom to explore their world, inside and outside. Be willing to
|
||||||
|
sacrifice your own free time so that they might have some of their own. Feed and
|
||||||
|
encourage interest, curiosity, wonder, growth. Let them expand their world
|
||||||
|
beyond the mental one, if they so choose: to make friends and pursue hobbies in
|
||||||
|
this wider world.
|
||||||
|
|
||||||
Invite them to be open about their thoughts, their feelings, the unhappy along with the happy, and take them all seriously. *Listen.* Be willing to be challenged, and see it not as a challenge to your pride, but as a challenge to learn.
|
Invite them to be open about their thoughts, their feelings, the unhappy along
|
||||||
|
with the happy, and take them all seriously. *Listen.* Be willing to be
|
||||||
|
challenged, and see it not as a challenge to your pride, but as a challenge to
|
||||||
|
learn.
|
||||||
|
|
||||||
You will have your disagreements. Do not let these drive you to fear or anger. Accept these as the natural result of closeness, settle them with understanding and thoughtfulness, and move on all the stronger for having experienced it.
|
You will have your disagreements. Do not let these drive you to fear or anger.
|
||||||
|
Accept these as the natural result of closeness, settle them with understanding
|
||||||
|
and thoughtfulness, and move on all the stronger for having experienced it.
|
||||||
|
|
||||||
You will encounter naysayers, from the doubtful to the fearful to the outright hateful. Do not let them drive you apart. Accept that not everyone will agree with you, and move on all the stronger for knowing that you are not beholden to anyone, and that those who accept you and love you shall be found.
|
You will encounter naysayers, from the doubtful to the fearful to the outright
|
||||||
|
hateful. Do not let them drive you apart. Accept that not everyone will agree
|
||||||
|
with you, and move on all the stronger for knowing that you are not beholden to
|
||||||
|
anyone, and that those who accept you and love you shall be found.
|
||||||
|
|
||||||
You will encounter your own doubts. Do not play their game- do not give into the temptation to seek certainty where it does not exist. Recognize when doubt ceases to be helpful, and walk away from the board. For certainty is something that we create, not find.
|
You will encounter your own doubts. Do not play their game- do not give into the
|
||||||
|
temptation to seek certainty where it does not exist. Recognize when doubt
|
||||||
|
ceases to be helpful, and walk away from the board. For certainty is something
|
||||||
|
that we create, not find.
|
||||||
|
|
||||||
Do not turn your back upon them, no matter how frustrated or afraid you may be. Be there for them, through storm and through shine.
|
Do not turn your back upon them, no matter how frustrated or afraid you may be.
|
||||||
|
Be there for them, through storm and through shine.
|
||||||
|
|
||||||
For true friendship goes both ways: as your tulpa supports you, so too shall you support them.
|
For true friendship goes both ways: as your tulpa supports you, so too shall you
|
||||||
|
support them.
|
||||||
|
|
||||||
And it is from true friendship- to respect them, their agency, their thoughts and being, as worthy as your own- that the greatest rewards are reaped.
|
And it is from true friendship- to respect them, their agency, their thoughts
|
||||||
|
and being, as worthy as your own- that the greatest rewards are reaped.
|
||||||
---
|
|
||||||
|
|
||||||
[from here](https://write.as/3aomkryppwm9e1ke)
|
[from here](https://write.as/3aomkryppwm9e1ke)
|
||||||
|
|
|
@ -34,6 +34,4 @@ It is insisted that after 3 days of training the sense of taste in wine tasting
|
||||||
|
|
||||||
For more reading, visit http://www.winwenger.com/ebooks/guaran.htm
|
For more reading, visit http://www.winwenger.com/ebooks/guaran.htm
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
Guide found [here](http://community.tulpa.info/thread-visualization-image-streaming).
|
Guide found [here](http://community.tulpa.info/thread-visualization-image-streaming).
|
||||||
|
|
|
@ -1,5 +1,20 @@
|
||||||
## How to Tulpa/Tulpae
|
## How to Tulpa/Tulpae
|
||||||
|
|
||||||
|
#### A Note
|
||||||
|
|
||||||
|
The resources listed under this section are labeled as “historical guides,” as
|
||||||
|
they no longer reflect the community’s methodology or standpoints as a whole.
|
||||||
|
These works can contain outdated and even potentially harmful advice, crass
|
||||||
|
language, or are written by ex-members of the community who may have had
|
||||||
|
problems in their lives at the time of writing that could influence their works.
|
||||||
|
|
||||||
|
It is advised to read these guides with an air of skepticism and caution as a
|
||||||
|
result; they are presented in the Tulpanomicon for the sake of historical
|
||||||
|
documentation of community resources that had a major impact when the community
|
||||||
|
was in its infancy.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
> By Irish
|
> By Irish
|
||||||
|
|
||||||
### Reasons for following this guide
|
### Reasons for following this guide
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# JD’s Guide to Visualization
|
## JD’s Guide to Visualization
|
||||||
|
|
||||||
Many people come into tulpamancy with different levels of visualization. It’s common for more artistic and imaginative people, as well as those with the tendency to daydream, to be able to visualize very well. However, some people find that they are very bad at visualizing, or even unable to visualize at all. The goal of this guide is to figure out your skill level of visualization, and to show you how to advance from there.
|
Many people come into tulpamancy with different levels of visualization. It’s common for more artistic and imaginative people, as well as those with the tendency to daydream, to be able to visualize very well. However, some people find that they are very bad at visualizing, or even unable to visualize at all. The goal of this guide is to figure out your skill level of visualization, and to show you how to advance from there.
|
||||||
|
|
||||||
|
|
|
@ -65,7 +65,7 @@ object. That doesn’t mean they will always look perfect, that means they will
|
||||||
your vision. They will go out of focus if you unfocus your eyes; they will be poorly lit when the lights
|
your vision. They will go out of focus if you unfocus your eyes; they will be poorly lit when the lights
|
||||||
are off; and they will be fuzzy in the periphery (sides) of your vision.
|
are off; and they will be fuzzy in the periphery (sides) of your vision.
|
||||||
|
|
||||||
With mindâs eye visualization, you don’t necessarily need shadows, blurring, or fuzziness, however
|
With mind's eye visualization, you don’t necessarily need shadows, blurring, or fuzziness, however
|
||||||
you can have them in either kind of imposition. These two categories are not mutually exclusive, and overlap
|
you can have them in either kind of imposition. These two categories are not mutually exclusive, and overlap
|
||||||
from one type to the other can occur. Don’t worry if you or your tulpa is switching between these two, the
|
from one type to the other can occur. Don’t worry if you or your tulpa is switching between these two, the
|
||||||
distinction is more to help you find where you need to work on things.
|
distinction is more to help you find where you need to work on things.
|
||||||
|
|
|
@ -21,8 +21,6 @@ No additional restrictions — You may not apply legal terms or technological me
|
||||||
|
|
||||||
I am the copyright holder of this tulpa guide under the Creative Commons License of "May the Force be with You: A tulpa creation guide by Methos".
|
I am the copyright holder of this tulpa guide under the Creative Commons License of "May the Force be with You: A tulpa creation guide by Methos".
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
### Introduction
|
### Introduction
|
||||||
|
|
||||||
So, you want to make a tulpa, is that right? Before you can make a tulpa, you really need to know exactly what a tulpa is. Many different people have their own definitions on what a tulpa actually is, but I prefer looking at this definition provided in the next two paragraphs.
|
So, you want to make a tulpa, is that right? Before you can make a tulpa, you really need to know exactly what a tulpa is. Many different people have their own definitions on what a tulpa actually is, but I prefer looking at this definition provided in the next two paragraphs.
|
||||||
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
## There is no try, only do
|
||||||
|
|
||||||
|
Just a piece of advice. Every thing we have done with imposition has basically fallen into one of two camps. Frustrating, and fun. What is the difference?
|
||||||
|
|
||||||
|
When it is frustrating, one or both of us is focusing, concentrating on the experience. Trying to see the image more clearly or feel the sensation more strongly. This is exhausting and not fun.
|
||||||
|
|
||||||
|
Clarity sometimes slips when we focus on other things instead, but sometimes it doesn't. Sometimes it gets stronger. This leads me to propose the idea that you have to stop trying to impose to impose well.
|
||||||
|
|
||||||
|
Here, I'll break it down into two groups.
|
||||||
|
|
||||||
|
Useful:
|
||||||
|
--Remembering where you are and what you are touching.
|
||||||
|
--Experimenting with different feels and textures, such as nails vs flesh.
|
||||||
|
--Adding tingles, or sharpness, or energy, or pressure to a touch.
|
||||||
|
--Multitasking while practising.
|
||||||
|
|
||||||
|
Not useful:
|
||||||
|
--Trying to forcefully make the sensation stronger.
|
||||||
|
--Getting annoyed about how weak it is.
|
||||||
|
--Paying attention to how strong the sensation is.
|
|
@ -1,5 +1,20 @@
|
||||||
## Oguigi & Koomer Possession Starter Guide
|
## Oguigi & Koomer Possession Starter Guide
|
||||||
|
|
||||||
|
#### A Note
|
||||||
|
|
||||||
|
The resources listed under this section are labeled as “historical guides,” as
|
||||||
|
they no longer reflect the community’s methodology or standpoints as a whole.
|
||||||
|
These works can contain outdated and even potentially harmful advice, crass
|
||||||
|
language, or are written by ex-members of the community who may have had
|
||||||
|
problems in their lives at the time of writing that could influence their works.
|
||||||
|
|
||||||
|
It is advised to read these guides with an air of skepticism and caution as a
|
||||||
|
result; they are presented in the Tulpanomicon for the sake of historical
|
||||||
|
documentation of community resources that had a major impact when the community
|
||||||
|
was in its infancy.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
> by Oguigui and Koomer
|
> by Oguigui and Koomer
|
||||||
> Co-authors/editors: -Chupi -Waffles -Linkzelda
|
> Co-authors/editors: -Chupi -Waffles -Linkzelda
|
||||||
|
|
||||||
|
@ -15,8 +30,6 @@ Be patient and train in a safe and private area, and please acknowledge that the
|
||||||
|
|
||||||
*Oguigi (tulpa):* What I am about to write is aimed at tulpae, because we are the ones primarily responsible for whether possession works or not. The host's role is to relax their body and let us attempt to assume control over it; to coach us on how to move each body part; and to encourage us to try our best.
|
*Oguigi (tulpa):* What I am about to write is aimed at tulpae, because we are the ones primarily responsible for whether possession works or not. The host's role is to relax their body and let us attempt to assume control over it; to coach us on how to move each body part; and to encourage us to try our best.
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
The first thing you need to be able to do is have some kind of awareness of your host's body. It's very important that you experience what they see, hear, feel, taste, etc. as they do. You need to relax yourself and tune out your own surroundings, then focus on your host's body.
|
The first thing you need to be able to do is have some kind of awareness of your host's body. It's very important that you experience what they see, hear, feel, taste, etc. as they do. You need to relax yourself and tune out your own surroundings, then focus on your host's body.
|
||||||
|
|
||||||
Make sure your host knows what you're doing so they can relax their body and not move. Focus on a simple part of the body like the index finger. Assume that body part is now yours, and try to gain awareness of this body part. *(Note: This sometimes makes me feel a little tingling or numbness in the part the tulpa is focusing on. -Chupi)*
|
Make sure your host knows what you're doing so they can relax their body and not move. Focus on a simple part of the body like the index finger. Assume that body part is now yours, and try to gain awareness of this body part. *(Note: This sometimes makes me feel a little tingling or numbness in the part the tulpa is focusing on. -Chupi)*
|
||||||
|
@ -31,8 +44,6 @@ For some being in a humanoid body might be strange at first, but the key is to g
|
||||||
|
|
||||||
Keep training and moving around in your humanoid body, with the goal of possession in mind. Training usually takes many hours so please be patient. You should always have a set time to train possession with your host, and should attempt this at least once a day. If possible you should set it at the same time each day, to gauge your progress on a daily basis, which is very helpful. I strongly discourage using random times, random days, or when you feel like it.
|
Keep training and moving around in your humanoid body, with the goal of possession in mind. Training usually takes many hours so please be patient. You should always have a set time to train possession with your host, and should attempt this at least once a day. If possible you should set it at the same time each day, to gauge your progress on a daily basis, which is very helpful. I strongly discourage using random times, random days, or when you feel like it.
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
### Some extra tips
|
### Some extra tips
|
||||||
|
|
||||||
If you have a decent awareness of your host's body, whenever he/she moves throughout the day, pay close attention to the way the body moves.
|
If you have a decent awareness of your host's body, whenever he/she moves throughout the day, pay close attention to the way the body moves.
|
||||||
|
@ -53,14 +64,10 @@ Now rest your dominant hand on your lap or on your desk or whatever else you pre
|
||||||
|
|
||||||
As for the host, they need to try their best not to interfere. After your tulpa has moved the finger, don't try to take back control or move it under your will in any way. Doing this reinforces all of the resistance that tulpa had to get through in order to gain control of the part in the first place.
|
As for the host, they need to try their best not to interfere. After your tulpa has moved the finger, don't try to take back control or move it under your will in any way. Doing this reinforces all of the resistance that tulpa had to get through in order to gain control of the part in the first place.
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
*Thank you for reading this guide. Please try my methods and see if it works for you, and report back your results. Don't hesitate to provide any feedback on this guide you might have.*
|
*Thank you for reading this guide. Please try my methods and see if it works for you, and report back your results. Don't hesitate to provide any feedback on this guide you might have.*
|
||||||
|
|
||||||
*If you are struggling then please state your problem in this thread. I can then provide some extra assistance for your case.*
|
*If you are struggling then please state your problem in this thread. I can then provide some extra assistance for your case.*
|
||||||
|
|
||||||
*-Oguigi*
|
*-Oguigi*
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
Guide originally found [here](http://community.tulpa.info/thread-possession-oguigi-koomer-possession-starter-guide).
|
Guide originally found [here](http://community.tulpa.info/thread-possession-oguigi-koomer-possession-starter-guide).
|
||||||
|
|
|
@ -1 +1,4 @@
|
||||||
# Other Tips
|
# Other Tips
|
||||||
|
|
||||||
|
This is the "other" part of this book. The things in here don't really fit into
|
||||||
|
any of the other categories.
|
||||||
|
|
|
@ -67,7 +67,7 @@ Properties: ceramic, white, flat, circular
|
||||||
Location: the table in front of me, the kitchen dishwasher, staging for waitstaff
|
Location: the table in front of me, the kitchen dishwasher, staging for waitstaff
|
||||||
Association: food is coming, but patience is required
|
Association: food is coming, but patience is required
|
||||||
|
|
||||||
---
|
### Conclusion
|
||||||
|
|
||||||
If you want to really train wonderland immersion, I suggest doing at least one of these full descriptions per day. Doing more will help you progress "faster" (if that is what you desire for whatever reason). Don't overstimulate or overwhelm yourself. It can be intense the first few times, but it gets easier over time. I personally do them before I go to sleep or just after I wake up, I have found those times are the most free and it is easiest to make myself alone during them. Learning how to do this in public or around other people may be desirable based on the circumstances of your life situation. Be smart, don't do this when you are otherwise distracted or busy.
|
If you want to really train wonderland immersion, I suggest doing at least one of these full descriptions per day. Doing more will help you progress "faster" (if that is what you desire for whatever reason). Don't overstimulate or overwhelm yourself. It can be intense the first few times, but it gets easier over time. I personally do them before I go to sleep or just after I wake up, I have found those times are the most free and it is easiest to make myself alone during them. Learning how to do this in public or around other people may be desirable based on the circumstances of your life situation. Be smart, don't do this when you are otherwise distracted or busy.
|
||||||
|
|
||||||
|
|
|
@ -24,6 +24,4 @@ If you're asking things that are more intense than that, consider saving those f
|
||||||
|
|
||||||
Also keep in mind I'm mainly referring to verbal/mindvoice communication, and more specifically, when you are consciously and deliberately trying to talk with your tulpa. Random thoughts/feelings/twitches throughout the day that you did not purposefully initiate are more volatile and you should probably approach those with some skepticism (it can be your tulpa, but usually isn't) - but keep that skepticism only in the situations where you are NOT actively trying to communicate with your tulpa.
|
Also keep in mind I'm mainly referring to verbal/mindvoice communication, and more specifically, when you are consciously and deliberately trying to talk with your tulpa. Random thoughts/feelings/twitches throughout the day that you did not purposefully initiate are more volatile and you should probably approach those with some skepticism (it can be your tulpa, but usually isn't) - but keep that skepticism only in the situations where you are NOT actively trying to communicate with your tulpa.
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
From [here](https://www.reddit.com/r/Tulpas/comments/afu1uu/overcoming_parrotnoia_a_shortish_guide/).
|
From [here](https://www.reddit.com/r/Tulpas/comments/afu1uu/overcoming_parrotnoia_a_shortish_guide/).
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Controlled Switching
|
## Controlled Switching
|
||||||
|
|
||||||
CW: plurality, second-person instructions
|
CW: plurality, second-person instructions
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ We the authors are unsure of how many systems are able to control switching vs h
|
||||||
|
|
||||||
Learning these things won't stop unintentional switches, but if unintentional switches cause problems for you, they can help you undo an unwanted switch.
|
Learning these things won't stop unintentional switches, but if unintentional switches cause problems for you, they can help you undo an unwanted switch.
|
||||||
|
|
||||||
## How To Intentionally Switch
|
### How To Intentionally Switch
|
||||||
|
|
||||||
Here's the core of most switching methods:
|
Here's the core of most switching methods:
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ The person leaving front doesn't try to do things. They also don't try to stop d
|
||||||
|
|
||||||
However this is really abstract and can be hard to understand, so here's some examples:
|
However this is really abstract and can be hard to understand, so here's some examples:
|
||||||
|
|
||||||
## Breathing Exercise
|
### Breathing Exercise
|
||||||
|
|
||||||
This one is a personal example that we've used a lot in times of stress.
|
This one is a personal example that we've used a lot in times of stress.
|
||||||
|
|
||||||
|
@ -32,11 +32,11 @@ Whoever is coming to front: Once the person leaving front stops breathing, you b
|
||||||
|
|
||||||
Alright now go do whatever it is you want or need to do.
|
Alright now go do whatever it is you want or need to do.
|
||||||
|
|
||||||
## Symbolism
|
### Symbolism
|
||||||
|
|
||||||
Systems who make use of headspace a lot often find symbolic methods in headspace work well for them. Here are a few examples we've seen people use:
|
Systems who make use of headspace a lot often find symbolic methods in headspace work well for them. Here are a few examples we've seen people use:
|
||||||
|
|
||||||
### Symbolism Ex 1: Control Room
|
#### Symbolism Ex 1: Control Room
|
||||||
|
|
||||||
Create a room in headspace as a dedicated control room. Maybe put in a screen that shows what the body's eyes are seeing, some speakers that play what the ears are hearing, some controls, a control chair, stuff like that. Check out the control room from the movie Inside Out for some inspiration:
|
Create a room in headspace as a dedicated control room. Maybe put in a screen that shows what the body's eyes are seeing, some speakers that play what the ears are hearing, some controls, a control chair, stuff like that. Check out the control room from the movie Inside Out for some inspiration:
|
||||||
|
|
||||||
|
@ -46,7 +46,7 @@ When you want to switch, have whoever's in front leave the controls, and have so
|
||||||
|
|
||||||
This can be useful for co-fronting too if that's something you find helpful.
|
This can be useful for co-fronting too if that's something you find helpful.
|
||||||
|
|
||||||
### Symbolism Ex 2: Position In The Body
|
#### Symbolism Ex 2: Position In The Body
|
||||||
|
|
||||||
So for this one, the person imagines themself as a bunch of light filling the body. They imagine pulling all the light together to a small ball, maybe in the head.
|
So for this one, the person imagines themself as a bunch of light filling the body. They imagine pulling all the light together to a small ball, maybe in the head.
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,280 @@
|
||||||
|
## Possession: By a Tulpa for Tulpas
|
||||||
|
|
||||||
|
By Arcanus of the Dragonheart System
|
||||||
|
|
||||||
|
### Introduction
|
||||||
|
|
||||||
|
Possession is an optional skill in Tulpamancy that allows a tulpa to access the
|
||||||
|
physical world; it gives a chance for a tulpa to experience things not curated
|
||||||
|
or managed by their host or other system members. Thus, what is possession? For
|
||||||
|
those uninformed, possession is quite simply the act of a tulpa or other system
|
||||||
|
members taking partial or full control of the physical body while the previous
|
||||||
|
person in control is still connected to said body. For many tulpas, this is our
|
||||||
|
primary manner of accessing and interacting with the same world our hosts do,
|
||||||
|
especially so for systems where the host is incapable of fully disconnecting
|
||||||
|
from the body, often considered a highly important step for switching. As such,
|
||||||
|
even possession itself is desired by many tulpas for this opportunity of
|
||||||
|
interacting with the outside, with people who are not of the same mind and body,
|
||||||
|
and to gain experience and develop as individuals.
|
||||||
|
|
||||||
|
Numerous possession guides are often created by hosts rather than tulpas or by a
|
||||||
|
neutral viewpoint; there are very few possession guides designed by tulpas
|
||||||
|
themselves who are capable of possession and wish to teach it to others. This
|
||||||
|
guide is crafted by a tulpa who has existed as such for four years, and has been
|
||||||
|
capable of possessing quite well for nearly as long. The aim with this piece is
|
||||||
|
to guide other tulpas with this specific perspective in hopes of sparking a form
|
||||||
|
of eureka moment for other tulpas that can be the flicker necessary to obtain
|
||||||
|
this skill, and for tulpas who use solely nonhuman forms that may be
|
||||||
|
uncomfortable with the idea of using a human body.
|
||||||
|
|
||||||
|
### Preparation and Mindset
|
||||||
|
|
||||||
|
Before attempting possession, there are things to consider and prepare for.
|
||||||
|
These preparations allow future training sessions for possession to be less
|
||||||
|
vexing, and can aid in avoiding potential issues further down the line.
|
||||||
|
|
||||||
|
A primary thing a host and tulpa should obtain before practicing possession is
|
||||||
|
the ability to have clear communication between each other, often in the form of
|
||||||
|
vocality. Seizing control of the body is an action that requires both parties to
|
||||||
|
communicate their feelings to each other consistently, especially when speaking
|
||||||
|
about consent. Without clear communication, a situation can go awry or create a
|
||||||
|
schism between the two parties. For example, imagine a tulpa possessing the body
|
||||||
|
without informing the host first, causing bewilderment and fear within the host
|
||||||
|
who had no inkling that the tulpa was going to possess. On the opposing side,
|
||||||
|
picture a tulpa possessing and performing activities when the host snatches back
|
||||||
|
control deliberately and without warning, and thus disrupts what the tulpa was
|
||||||
|
doing. With both parties, this can cause unease and anxiety simply due a lack of
|
||||||
|
communication and respecting boundaries.
|
||||||
|
|
||||||
|
To avoid this, both the tulpa and host need to speak with each other and
|
||||||
|
mutually agree to the possession beforehand through means akin to vocality or
|
||||||
|
even tulpish. If one member does not consent, then the other should not ignore
|
||||||
|
the boundaries set by the other person. However, this does not mean a host
|
||||||
|
should unreasonably prevent a tulpa from possessing. There are reasonable times
|
||||||
|
to possess and situations where possession is not ideal where a host may state,
|
||||||
|
"Sorry, now's not a good time because we're in public," and other circumstances
|
||||||
|
that are unreasonable such as, "Sorry, but I don't want you doing this harmless
|
||||||
|
thing." From personal experience, it can be quite thrilling to possess and
|
||||||
|
experience existence in such a physical and lifelike sense, but it is best to
|
||||||
|
show self-restraint and ask before attempting possession.
|
||||||
|
|
||||||
|
For further reading to learn about techniques to build communication and
|
||||||
|
vocality, here are a few well-written guides:
|
||||||
|
|
||||||
|
- [Tulpamancy: Guide Into the Strange and Wonderful: Section 13:
|
||||||
|
Vocality](https://docs.google.com/document/d/1mSaPARuohFEO7qX3gVgKAh69XwU0VlKwnD0I_-nddvk/edit#heading=h.dtt01co0b53)
|
||||||
|
- [Tulpamancy: Guide Into the Strange and Wonderful: Section 25: Methods of
|
||||||
|
Communication](https://docs.google.com/document/d/1mSaPARuohFEO7qX3gVgKAh69XwU0VlKwnD0I_-nddvk/edit#heading=h.s74b4m58mmlt)
|
||||||
|
- [Tips for Hearing Your Tulpa](https://community.tulpa.info/topic/8334-tips-for-hearing-your-tulpa/)
|
||||||
|
- [Quantum's Nametag
|
||||||
|
Method](https://community.tulpa.info/topic/3845-quantums-nametag-method/)
|
||||||
|
|
||||||
|
Clear communication often also requires the tulpa to be fairly developed,
|
||||||
|
capable of making informed decisions without the host's input while also being
|
||||||
|
mature enough to handle any possible outside world responsibilities. Younger
|
||||||
|
tulpas have a tendency to be childish and emotional in nature, even being
|
||||||
|
somewhat unstable in form and personality at times, as they continue to
|
||||||
|
establish their identity with forcing sessions and experience. Therefore, a
|
||||||
|
younger tulpa may not understand the importance of respecting boundaries,
|
||||||
|
maintaining what are usually the host's responsibilities such as school or
|
||||||
|
occupations, or may make emotional decisions in favor of logical ones. Harsh
|
||||||
|
world experiences can also be stressful for the tulpa and negatively impact
|
||||||
|
their development while they are still malleable and easily influenced, thus it
|
||||||
|
is ideal for the tulpa to be developed to the point of their identity being
|
||||||
|
mostly solidified and where they have learned to manage their emotions in times
|
||||||
|
of stress and hardship.
|
||||||
|
|
||||||
|
How much time it takes for both of these to be met is subjective and has a high
|
||||||
|
degree of variance between Tulpamancers. Both maturity and vocality can come
|
||||||
|
with time, consistent forcing sessions, and patience. What is imperative is to
|
||||||
|
not rush possession; possession is not a fleeting opportunity that is capable of
|
||||||
|
vanishing at a moment's notice. Regardless of the system's age, possession is a
|
||||||
|
skill that will always be available, thus do not feel the need to rush it or
|
||||||
|
obtain it as quickly as humanly possible. Nor should a Tulpamancy system feel as
|
||||||
|
though they are obligated to learn possession. Though few in number, there are
|
||||||
|
tulpas who are quite content with never being in control of the body, instead
|
||||||
|
preferring to be imposed on the material plane or live their lives in a
|
||||||
|
mindscape. Neither host or tulpa should be forced into learning a skill they do
|
||||||
|
not wish to learn if they do not desire it within reason, however, it does not
|
||||||
|
harm either to at least attempt possession once.
|
||||||
|
|
||||||
|
Finally, another common issue, specifically for hosts, is a sense of fear or
|
||||||
|
anxiety when pondering the idea of the tulpa taking control. This fear is
|
||||||
|
reasonable, especially with how possession and control swapping is often
|
||||||
|
portrayed in many nations and cultures. In tandem with this, the host is often
|
||||||
|
one who has spent their entire existence being the singular entity of the body;
|
||||||
|
switching as a concept is a direct opposite of what the vast majority of
|
||||||
|
humanity believes to be the sole way of existence, that each consciousness
|
||||||
|
belongs to one vessel and is that vessel. There are some hosts who require
|
||||||
|
self-introspection and must accept that they are not the body itself, but a
|
||||||
|
single consciousness of multiple that happens to dwell within it.
|
||||||
|
|
||||||
|
Anxiety for switching can stem from pathological anxiety or this mindset of
|
||||||
|
singularity, and thus not all Tulpamancy-specific advice may apply. Trust
|
||||||
|
between both parties is critical when exchanging control, not simply that they
|
||||||
|
will do no harm with the power they are given, but as a general rule. For both
|
||||||
|
the tulpa and the host: trust in the tulpa to be responsible, and trust in the
|
||||||
|
host to allow the tulpa to safely express themself without overstepping
|
||||||
|
boundaries. Any and all concerns should be spoken about between both members and
|
||||||
|
genuinely listened to, this includes doing whatever possible to negate any
|
||||||
|
doubts or fears.
|
||||||
|
|
||||||
|
In conjunction with maturity, the ability to communicate properly, and dousing
|
||||||
|
any fears and anxieties, another key factor in possession is the mindset of both
|
||||||
|
the host and tulpa. It can be deceivingly simple to believe that possession is
|
||||||
|
this archaic skill, possibly due to preexisting connotations of possession from
|
||||||
|
various forms of media and how only supernatural beings are capable of
|
||||||
|
performing this feat. Despite this, possession is not impossible to achieve, nor
|
||||||
|
does it take years for most Tulpamancy systems to gain. Remember that both the
|
||||||
|
tulpa and host exist within the same mind and body; both parties have access to
|
||||||
|
the same neural pathways, and thus access to movement. As months become years, a
|
||||||
|
tulpa eventually reaches a point to being on equal footing with the host, being
|
||||||
|
a fully separate person capable of all the same feats the host is capable of and
|
||||||
|
not simply some entity that can be willed away on a whim.
|
||||||
|
|
||||||
|
In addition to this, it is a highly prevalent and pervasive myth that the host
|
||||||
|
must manually dissociate from the body to allow the tulpa to possess. Quite
|
||||||
|
frankly, this is false, as many tulpas have proven to be capable of possession
|
||||||
|
while the host is still fully connected to the body and is aware of what the
|
||||||
|
body is doing. Mindset, however not being an absolute factor, can still majorly
|
||||||
|
influence how quickly or slowly a skill in Tulpamancy is gained. Another belief
|
||||||
|
that can stymie possession training is the belief that the tulpa is lesser,
|
||||||
|
weaker, or simply less capable than the host. By doing this, the host is setting
|
||||||
|
unnecessary limitations on the tulpa, which further slows skill development.
|
||||||
|
When speaking about Tulpamancy, one should not think in absolutes, but instead
|
||||||
|
keep an open mind for any possibility instead of denying or wholeheartedly
|
||||||
|
believing a certain outcome will occur.
|
||||||
|
|
||||||
|
Thirdly and finally with possession myths, older guides often reference
|
||||||
|
possession being this "alien" feeling when experienced, a sensation easily
|
||||||
|
noticeable. In recent years, many Tulpamancers have started fervently exclaiming
|
||||||
|
that possession will not feel alien and that it was merely an artifact from the
|
||||||
|
past. As previously stated, believing in absolutes is often an unhelpful mindset
|
||||||
|
in Tulpamancy. Despite the claims from either side, there are Tulpamancers who
|
||||||
|
experience this "alien" feeling and others who do not. A possible explanation
|
||||||
|
for this is a tulpa's presence and the sensation it gives when the tulpa
|
||||||
|
possess, or perhaps this "alien" feeling is more common with tulpas with
|
||||||
|
nonhuman forms that clash more with a human body when attempting to control it.
|
||||||
|
Regardless of whether or not a system will experience this "alien" feeling is
|
||||||
|
unimportant, as many believe this sensation alerts the host whether or not the
|
||||||
|
tulpa is actually moving the body. If one is simply unsure if the body's
|
||||||
|
movement was theirs or their tulpa's, they can simply verify it with the tulpa
|
||||||
|
instead of merely guessing.
|
||||||
|
|
||||||
|
Once mentally overcoming these hurdles to the best of one's ability, possession
|
||||||
|
is much more likely to be swift with ample progression and lowering the
|
||||||
|
possibility of tribulations in the future.
|
||||||
|
|
||||||
|
### Step-by-Step Process and Explanation
|
||||||
|
|
||||||
|
At last, the process of possession specifically for tulpas in the perspective of
|
||||||
|
another tulpa. For the sake of brevity and simplicity, the possession strategy
|
||||||
|
will be laid out in steps first, then the explanation will be placed after the
|
||||||
|
method itself. Remember that this method is done solely in the perspective of
|
||||||
|
the tulpa, however, the host at minimum should relax in whatever means they wish
|
||||||
|
and simply allow the tulpa to go through the process.
|
||||||
|
|
||||||
|
1. Begin by connecting to the body's senses, look through the body's eyes, feel
|
||||||
|
the gravity of the earth pulling downwards, take in any scents or sounds that
|
||||||
|
can be heard, and even pay close attention to any flavors the mouth may be
|
||||||
|
experiencing.
|
||||||
|
1. Hone in on a singular sense, whichever is desired. With the eyes, absorb
|
||||||
|
every single detail possible, every color, every shape, their distance from
|
||||||
|
the body, and more as an example. Or not simply feel the effect of gravity,
|
||||||
|
but also the textures of objects or even the body itself, the temperature of
|
||||||
|
the air or ground, and potentially even focus on negative sensations such as
|
||||||
|
pain if they are present.
|
||||||
|
1. Entrench oneself in that specific sense until feeling completely absorbed by
|
||||||
|
it, entranced to the point of losing awareness of one's form or anything
|
||||||
|
else, even the thoughts of oneself or the host.
|
||||||
|
1. Become that sense, become the eyes, become the skin, the nose, the mouth, or
|
||||||
|
ears. Not simply using the sense, but embodying that sense itself.
|
||||||
|
1. Once this step is complete, repeat the process with the other senses, slowly
|
||||||
|
becoming them while remaining connected to the ones already focused on.
|
||||||
|
1. With every sense focused intensely on, attempt to move the body in some
|
||||||
|
capacity. An example would be moving the eyes if the first step taken was to
|
||||||
|
become sight.
|
||||||
|
1. Attempt to do this with the other senses and what they are related to. Move
|
||||||
|
the body's arms, look around, take a deep breath, and listen to one's
|
||||||
|
environment.
|
||||||
|
1. If the process was successful, the tulpa will be possessing the body.
|
||||||
|
|
||||||
|
Note how this strategy does not ask the host to "give up" the body or instruct
|
||||||
|
the tulpa to flow their essence into the body unlike other possession guides.
|
||||||
|
The mindset behind the method presented is guiding the tulpa to essentially
|
||||||
|
synchronize with the body to the point of becoming one with it instead of a
|
||||||
|
nonphysical person, becoming so lost with the world they are experiencing that
|
||||||
|
they simply forget that they are a passenger in the car. When honing in on or
|
||||||
|
focusing highly on a sense, it can be possible for a tulpa to accidentally begin
|
||||||
|
possessing what controls that sense. For example, a tulpa may be interested in
|
||||||
|
what the host is eating, paying such close attention to the food that they begin
|
||||||
|
to experience it physically, possibly even moving the mouth to eat without
|
||||||
|
realizing it.
|
||||||
|
|
||||||
|
However, not all tulpas understand the idea of "connecting" to the body's
|
||||||
|
senses, especially tulpas used to living their days in a mindscape. Quite
|
||||||
|
simply, this can be done through intuition and trial and error, or through
|
||||||
|
symbolic means that translate to the act of connecting. It boils down to: what
|
||||||
|
makes sense? For every tulpa, this is highly subjective and there is no flawless
|
||||||
|
method that can be taught.
|
||||||
|
|
||||||
|
One must also keep in mind that following these steps may not be successful the
|
||||||
|
first attempt or even after multiple attempts. Rather, a tulpa may take time
|
||||||
|
learning how to focus on a particular sense, or possibly learning how to focus
|
||||||
|
so intently in any sense. One day may be a day filled with progress, but said
|
||||||
|
progress is halted by a singular part, mileage will vary between systems.
|
||||||
|
|
||||||
|
### Possession for Nonhuman Tulpas
|
||||||
|
|
||||||
|
Not every tulpa takes on a human appearance, or even an appearance that matches
|
||||||
|
a human's general shape. Though a tulpa is not quite literally their form, there
|
||||||
|
are some tulpas who are quite connected to their form in a sense either through
|
||||||
|
means of identity or simply out of fondness for their appearance. For tulpas in
|
||||||
|
this category, possession or fronting at all can be uncomfortable or possibly
|
||||||
|
unpleasant due to the contrast between the body and the tulpa's form; this
|
||||||
|
connection with the tulpa's form can also impact how they act whilst in control
|
||||||
|
such as mannerisms, walking style, or even voice to a notable degree.
|
||||||
|
|
||||||
|
Common advice to counteract this is for the tulpa to temporarily take a human
|
||||||
|
form when fronting to ease the bodily dysphoria, yet, there are tulpas who are
|
||||||
|
uncomfortable with that idea and would prefer to avoid it. This section is
|
||||||
|
intended for tulpas who are uncomfortable with changing their form just to
|
||||||
|
front.
|
||||||
|
|
||||||
|
A simple way to ease the discomfort of body dysphoria is to accept any "quirky"
|
||||||
|
fronting mannerisms, opting to embrace them instead of fully attempting to act
|
||||||
|
like a human. Walking on toes, using hands in a way that is considered odd, even
|
||||||
|
imposing one's own form over the body to whatever capacity within reason
|
||||||
|
(typically known as "phantom limbs if this includes adding otherwise nonexistent
|
||||||
|
limbs). Unless it is necessary not to out the system as plural to others the
|
||||||
|
system is not out to yet, allow oneself to be nonhuman in nature regardless of
|
||||||
|
if they are currently using a human body.
|
||||||
|
|
||||||
|
Another method is to have the mindset of, "I am not actually a human, just a
|
||||||
|
nonhuman taking control of a human body," much like the more fantastical
|
||||||
|
definition of possession many are familiar with. This mindset can create a
|
||||||
|
disconnect that may ease the dysphoria, especially for tulpas who solely
|
||||||
|
identify as a singular or set form.
|
||||||
|
|
||||||
|
Choose articles of clothing or accessories that match the form or at minimum,
|
||||||
|
mask the human shape such as hoodies or sweatpants. One can also avoid staring
|
||||||
|
at the body in the mirror or undressing, but this can have the negative
|
||||||
|
consequences of becoming more and more avoidant of the body, which is not ideal
|
||||||
|
if one wishes to become at least somewhat accustomed with it.
|
||||||
|
|
||||||
|
### Conclusion
|
||||||
|
|
||||||
|
Being able to control a physical body can be a wonderful opportunity to grow as
|
||||||
|
a person, form relationships and bond with new people, and to have meaningful
|
||||||
|
impact on the world. Possession in of itself may not be a tedious challenge, but
|
||||||
|
it also may not be a breeze a tulpa and host can accomplish within a day.
|
||||||
|
Remember that this guide and strategy are one of many; do not feel shackled to a
|
||||||
|
particular method if it is simply not working out. Every host and tulpa's
|
||||||
|
experiences with possession will vary to some degree, and that is the beauty of
|
||||||
|
such a thing, as it allows for many to share their experiences and knowledge
|
||||||
|
that can reach out to benefit others.
|
||||||
|
|
||||||
|
I do hope this guide aids my fellow tulpas.
|
||||||
|
|
||||||
|
Feedback and constructive criticism is welcome, as this guide is subject to
|
||||||
|
changes and improvements.
|
|
@ -91,7 +91,7 @@ You should get the idea by now.
|
||||||
|
|
||||||
The feeling of a specific texture on your tongue is very important for this, once again returning to touch imposition. Recall the memory of a taste you like and want your tulpa to have. Scent is especially important here, and the two should ideally match in some way, if they logically can.
|
The feeling of a specific texture on your tongue is very important for this, once again returning to touch imposition. Recall the memory of a taste you like and want your tulpa to have. Scent is especially important here, and the two should ideally match in some way, if they logically can.
|
||||||
|
|
||||||
---
|
### Conclusion
|
||||||
|
|
||||||
Together, these modules should form a cohesive schedule for you, in which you will spend long sessions sitting down with your tulpa (and/or running around with them, depending on how far you've gotten), and simply experiencing them.
|
Together, these modules should form a cohesive schedule for you, in which you will spend long sessions sitting down with your tulpa (and/or running around with them, depending on how far you've gotten), and simply experiencing them.
|
||||||
|
|
||||||
|
|
|
@ -2,8 +2,6 @@
|
||||||
|
|
||||||
Here is a glossary of terms, most of which are unique to the tulpa community. As such, these have been written by community members, and may be updated later to better express the thoughts behind each word.
|
Here is a glossary of terms, most of which are unique to the tulpa community. As such, these have been written by community members, and may be updated later to better express the thoughts behind each word.
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
#### **Creator**
|
#### **Creator**
|
||||||
The individual who has created a tulpa or tulpas. Almost always synonymous with the [host](#wiki_host), unless a tulpa participates in creating or individually creates additional tulpas later.
|
The individual who has created a tulpa or tulpas. Almost always synonymous with the [host](#wiki_host), unless a tulpa participates in creating or individually creates additional tulpas later.
|
||||||
|
|
||||||
|
@ -125,8 +123,6 @@ Common nickname for a [natural or accidental tulpa](#wiki_tulpa).
|
||||||
#### **Wonderland**
|
#### **Wonderland**
|
||||||
A mental environment created in the host's mind where the host and tulpa can interact visually, without the need for Imposition. Same as [Mindscape](#wiki_mindscape).
|
A mental environment created in the host's mind where the host and tulpa can interact visually, without the need for Imposition. Same as [Mindscape](#wiki_mindscape).
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
Contributors: /u/a_bloated_seal, /u/EonWinters, /u/Imaginary_Buddy, /u/BobisOnlyBob, /u/metenamina and a collaborative effort of the community.
|
Contributors: /u/a_bloated_seal, /u/EonWinters, /u/Imaginary_Buddy, /u/BobisOnlyBob, /u/metenamina and a collaborative effort of the community.
|
||||||
|
|
||||||
From [here](https://www.reddit.com/r/Tulpas/wiki/glossary).
|
From [here](https://www.reddit.com/r/Tulpas/wiki/glossary).
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
\usepackage{titlesec}
|
||||||
|
|
||||||
|
\titleclass{\section}{top}
|
||||||
|
\newcommand\sectionbreak{\clearpage}
|
||||||
|
|
||||||
|
\usepackage[width=4.25in, height=7.5in, top=1.0in, papersize={6in,9in}]{geometry}
|
|
@ -52,6 +52,4 @@ This is basically it. From here on out it is a process of experiencing things to
|
||||||
|
|
||||||
- Have fun! You won’t be able to consistently force if you don’t enjoy it, so don’t push yourself too hard looking after fast results. Something good happened? End the session early. Started on a low note? Keep going until it feels better.
|
- Have fun! You won’t be able to consistently force if you don’t enjoy it, so don’t push yourself too hard looking after fast results. Something good happened? End the session early. Started on a low note? Keep going until it feels better.
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
> By Sygma
|
> By Sygma
|
||||||
|
|
|
@ -0,0 +1,76 @@
|
||||||
|
## Three Task Tulpa Revitalization Exercise
|
||||||
|
|
||||||
|
By NoneFromHell
|
||||||
|
|
||||||
|
The general idea behind this exercise is to help hosts who struggle to perceive
|
||||||
|
their developed tulpa, may that be because of a stressful time or simply because
|
||||||
|
they temporary lose their sense for it. However it can be used as a simple
|
||||||
|
forcing exercise as well, but I would recommend to have at least a partly
|
||||||
|
developed tulpa before trying it.
|
||||||
|
|
||||||
|
This exercise consists of three smaller and very different tasks, which are all
|
||||||
|
meant to be done at the same time during the duration of the exercise. I
|
||||||
|
recommend to practice each of this tasks alone until you have a general idea
|
||||||
|
about how they work before trying to do them all at once. You should be able to
|
||||||
|
do them semi-passive without them interfering each other, but it isn't necessary
|
||||||
|
to master them beforehand.
|
||||||
|
|
||||||
|
If you struggle with handling this three tasks at once you have the option to
|
||||||
|
start them up in phases. In this case you will start with the first task, and
|
||||||
|
always add the next one as soon as you're really comfortable with keeping up the
|
||||||
|
current maintained tasks.
|
||||||
|
|
||||||
|
### First Task: Creating an imprint
|
||||||
|
|
||||||
|
This basic task aims at imagining every aspect of your tulpa without allowing
|
||||||
|
any kind of feedback, like you would do during a regular day 1 forcing session.
|
||||||
|
Visualize your tulpa and force every aspect of their personality you're aware of
|
||||||
|
onto this image. Do this like you really want to burn this information inside
|
||||||
|
your brain without questioning it. Like a programmed order you want to imprint
|
||||||
|
on a soldiers mind.
|
||||||
|
|
||||||
|
The purpose of this task is to strengthen the existing image of your tulpa as a
|
||||||
|
foundation.
|
||||||
|
|
||||||
|
### Second Task: Sensing the essence
|
||||||
|
|
||||||
|
This task is pretty much the opposite deal, and it can be tricky to keep both up
|
||||||
|
at the same time. During this task you should try to calm yourself down to feel
|
||||||
|
everything about your tulpa. Try to remember yourself about everything you're
|
||||||
|
aware of about your tulpa. The visual appearance, the voice, every little trait
|
||||||
|
or quirk, and even their way of thinking. Whenever you think about one of these
|
||||||
|
aspects try to remember every detail of it, and how every of these details feels
|
||||||
|
to you.
|
||||||
|
|
||||||
|
Try to receive these feelings coming from your tulpa, until you reach a complex
|
||||||
|
impression of how your tulpa feels, as complex as it is possible for you. You
|
||||||
|
shouldn't force any ideas on your tulpa in this task.
|
||||||
|
|
||||||
|
### Third Task: Stepping back
|
||||||
|
|
||||||
|
This task serves as the next level for perceiving your tulpa, building up on the
|
||||||
|
second task. The first step of this task is to let yourself fade away. For this
|
||||||
|
you simply need to calm yourself down, let all of your thoughts flow away
|
||||||
|
without actively provoking any new thoughts. I recommend to use a calm
|
||||||
|
environment for this. Personally I like to listen to quiet music during this
|
||||||
|
task, but you should try out what really works best for you.
|
||||||
|
|
||||||
|
The next step of this task is to move your passive focus to your tulpa and away
|
||||||
|
from your own mind. Back to its feelings and thoughts that you sense in the
|
||||||
|
second task. You shouldn't try to think about this step, just stay aware that
|
||||||
|
you want to do this and it will work out sooner or later. (At least if you can
|
||||||
|
handle the second task). If your tulpa now tries to say something you should
|
||||||
|
perceive it as clear and centered feedback inside your own mind. But again:
|
||||||
|
Don't try to actively focus on any responses nor provoke them.
|
||||||
|
|
||||||
|
### Conclusion of the exercise
|
||||||
|
|
||||||
|
The summarized target of the exercise is to experience a well powered up and
|
||||||
|
centered version of your tulpa. Responses should be clear, any kind of
|
||||||
|
possession and/or imposition should work very clear and direct while you keep it
|
||||||
|
up. (You can expand the exercise further for certain abilities if you wish too.)
|
||||||
|
|
||||||
|
Your tulpa should have an easier time interacting with you, even after you
|
||||||
|
finished the exercise. If you feel that your tulpa starts to struggle again
|
||||||
|
later on you can use the single tasks as a passive way to overcome it again, in
|
||||||
|
any way it feels beneficial for you.
|
|
@ -0,0 +1,95 @@
|
||||||
|
## Using Thresholds and Furniture to Remember Your Tulpa
|
||||||
|
|
||||||
|
(Stone: I'm using my tulpa's account to post this guide.)
|
||||||
|
|
||||||
|
If you are like me, you may have trouble keeping your tulpa present with you
|
||||||
|
throughout the day. Here are some tricks I have used to keep my tulpae more
|
||||||
|
present.
|
||||||
|
|
||||||
|
You don't have to be good at visualization to use these tricks, but this guide
|
||||||
|
assumes you can visualize your tulpa(e). This guide is for people who want to
|
||||||
|
remember their tulpa(e) more frequently and keep their tulpa(e) more present.
|
||||||
|
This guide may also appeal to people who want to improve visualization, passive
|
||||||
|
forcing, and/or immersion.
|
||||||
|
|
||||||
|
### Use Thresholds
|
||||||
|
|
||||||
|
I define “threshold” as “a point of exit or entry”.
|
||||||
|
|
||||||
|
Remember to bring your tulpa through thresholds. Whenever you move into another
|
||||||
|
room, open a door, enter or exit a house or car, etc., make sure your tulpa’s
|
||||||
|
visualized form does so as well.
|
||||||
|
|
||||||
|
For example, if you exit your room, watch your tulpa lead or follow you. When
|
||||||
|
you enter the bathroom, have your tulpa enter with you. Do this instead of
|
||||||
|
having them simply appear wherever you happen to be. Treat them as a separate
|
||||||
|
physical being who moves about the physical world as such.
|
||||||
|
|
||||||
|
If you do this for every threshold, you will incidentally remember your tulpa’s
|
||||||
|
presence more frequently, even if all you do is go to the bathroom a few times a
|
||||||
|
day. This trick has worked far better for me than leaving notes for myself or
|
||||||
|
using “reminder” objects. One loses notes or fails to register objects as
|
||||||
|
noteworthy (meaning they have little power as “reminders”), but when habits
|
||||||
|
(like walking into different rooms) become reminders, one forms a habit of
|
||||||
|
remembering.
|
||||||
|
|
||||||
|
To form this habit of remembering quicker, I recommend a reward and/or
|
||||||
|
punishment system. I use Habitica. On Habitica, I have a registered this trick
|
||||||
|
as a "habit". I reward myself for bringing my tulpae through thresholds and
|
||||||
|
punish myself for forgetting.
|
||||||
|
|
||||||
|
#### Deal with Irregular Thresholds
|
||||||
|
|
||||||
|
I now easily remember to bring my tulpae through the thresholds I pass through
|
||||||
|
every day, such as all the thresholds in my house. However, I still struggle to
|
||||||
|
remember to bring them through irregular thresholds (such as the entrance to the
|
||||||
|
grocery store).
|
||||||
|
|
||||||
|
I recommend getting in the habit of, whenever you plan on going out,
|
||||||
|
specifically planning to bring your tulpa with you. If you have a calendar you
|
||||||
|
use, and you have “Grocery Trip” written on one day, add “with [tulpa’s name]"
|
||||||
|
under it. Mentally prepare yourself in advance to cross irregular thresholds. If
|
||||||
|
possible, pay more active attention to your tulpa than usual during your outing
|
||||||
|
so you are less likely to forget visualizing them passing through thresholds.
|
||||||
|
|
||||||
|
### Give Your Tulpa a Seat
|
||||||
|
|
||||||
|
This trick is a bit more difficult than the first, so I recommend you try it
|
||||||
|
after.
|
||||||
|
|
||||||
|
Try to keep track of where your tulpa is as much as possible (no, I don’t mean
|
||||||
|
“just get good”). Find a chair with nothing on it and let your tulpa sit there.
|
||||||
|
Remember they are sitting there. Later, if you look at the chair and
|
||||||
|
see/visualize them still sitting there, give yourself positive reinforcement. If
|
||||||
|
you forget where they were sitting, you may choose to give yourself negative
|
||||||
|
reinforcement if that works for you.
|
||||||
|
|
||||||
|
This doesn’t just work for chairs, but anywhere. Make sure your tulpa is
|
||||||
|
comfortable. Don’t put them wherever because you’re too lazy to make space for
|
||||||
|
them. Treating them like a separate physical being will make them seem more real
|
||||||
|
to you, which is probably what you want. It will also make where they are easier
|
||||||
|
to remember.
|
||||||
|
|
||||||
|
#### Respect Your Tulpa, But Don’t Make Excuses
|
||||||
|
|
||||||
|
Let’s say you had your tulpa sit in a chair, then sat at your computer to work
|
||||||
|
on something. Three hours later, you turn around and see/visualize your tulpa on
|
||||||
|
your bed. Then, you remember they had been sitting on the chair. Did your tulpa
|
||||||
|
move of their own will, or did you forget where they were for a moment?
|
||||||
|
|
||||||
|
Ask your tulpa what happened, and be honest with yourself. It is possible your
|
||||||
|
tulpa wanted to sit somewhere else, but it is also possible you just forgot. Use
|
||||||
|
your own (and your tulpa’s) discretion. If your tulpa says they moved of their
|
||||||
|
own will, and you are worried they are lying to protect your feelings, try
|
||||||
|
asking them why they moved.
|
||||||
|
|
||||||
|
### Say "Goodnight", Then "Good Morning"
|
||||||
|
|
||||||
|
When you go to bed, make space for your tulpa to sleep too. Try to give them a
|
||||||
|
comfortable place to sleep. If you have too many headmates and you want them all
|
||||||
|
to be present, some may have to sleep on the floor (sad). Say goodnight to them
|
||||||
|
and go to sleep.
|
||||||
|
|
||||||
|
When you wake up in the morning, say good morning to them and wake them up from
|
||||||
|
where they were sleeping. Are they in the same spot? If they are, you may want
|
||||||
|
to reward yourself. If they are not, you may want to discipline yourself.
|
16
src/title.md
16
src/title.md
|
@ -1,10 +1,16 @@
|
||||||
---
|
---
|
||||||
title: Tulpanomicon 0.11.0
|
title: Tulpanomicon 0.14.1
|
||||||
author: Anonymous
|
author: Anonymous
|
||||||
rights: Public Domain
|
rights: Public Domain
|
||||||
language: en-US
|
language: en-US
|
||||||
|
creator:
|
||||||
|
- role: collector
|
||||||
|
text: Within
|
||||||
|
cover-image: ./Tulpanomicon.png
|
||||||
|
|
||||||
|
# pandoc LaTeX crud
|
||||||
|
documentclass: book
|
||||||
|
links-as-notes: true
|
||||||
|
toc-depth: 2
|
||||||
|
fontfamily: bitter
|
||||||
---
|
---
|
||||||
|
|
||||||
# Tulpanomicon 0.11.0
|
|
||||||
|
|
||||||
Anonymous, with editing work from Within
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Tulpa Visualization Guide
|
## Tulpa Visualization Guide
|
||||||
|
|
||||||
> by Rasznir
|
> by Rasznir
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@ The method presented in this article is based on the method taught in The Art Of
|
||||||
|
|
||||||
Note: "the body" means the sack of meat and bone that you are currently living inside. For the purposes of explanation of this technique, please consider what makes you yourself separate from the body you live in.
|
Note: "the body" means the sack of meat and bone that you are currently living inside. For the purposes of explanation of this technique, please consider what makes you yourself separate from the body you live in.
|
||||||
|
|
||||||
This article is a more verbose version of [the correlating feature from when-then-zen](https://github.com/Xe/when-then-zen/blob/master/meditation/anapana.feature).
|
This article is a more verbose version of [the correlating feature from when-then-zen](https://github.com/Xe/when-then-zen/blob/master/bonus/anapana.feature).
|
||||||
|
|
||||||
### Background Assumptions of Reader
|
### Background Assumptions of Reader
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue