rosepetalkitty
rose 🌹
634 posts
read my pinned before interacting!! hi hey hello im rose call me rosie!!! im an 18y/o trans girl thing, this is a semi-nsfw blog so minors and ageless blogs please dni. also transphobes, homophobes, etc. etc. you get the drift. and plspls ask before calling me anything i haven't already called myself on here, especially in dms.
Last active 60 minutes ago
Don't wanna be here? Send us removal request.
rosepetalkitty · 3 hours ago
Text
oooh yes please ^-^
Hypnokink this-or-that
If you had to choose...
Slow or quick induction?
Text or voice hypnosis?
Relaxation or confusion?
Dumbification or mindlessness?
A bratty sub or an eager sub?
Fractionation or fingersnaps?
Hypnotic bondage or memory play?
Magical enchantment or brain hacking technology?
Hypnotic eyes or hypnotic voice?
Vampire or succubus/incubus?
Touching instructions or hands free pleasure?
Staircase or elevator induction?
Conversational or overload induction?
Gentle or demanding tone of voice?
Drooling or eyes fluttering?
Spirals or pendulums?
Frozen in place or loose and limp?
Moans or mantras?
Giggly and silly or blank and empty?
Being controlled or being in control?
1K notes · View notes
rosepetalkitty · 4 hours ago
Text
godddd now i need someone to set this up on me >////< pretty pretty please 🥺
brainpy
i made a post i found before about something i saw called brain++ it was a very interesting concept, but i disagreed with a lot of how it was handled so i ended up reworking a lot of it and now im compiling my efforts here
im not the best at teaching programming, so its ideal that you or your subject have some idea of how programing works, though you dont need to know specific languages (this is based largely off of python and a bit off of the original which was c++, i used it on a subject who only knew c# and it worked fine)
with all that being said, the infodump is below the cut, and happy trancing!
the basics
brainpy is based largely off of python, so a lot of syntax and such is similar its also based off of brain++ which is object oriented, which i dont really have the time to explain the best, so i apologize if you or your subjects dont understand
basic safety info
this is all covered later on but the gist is: if the user (the subject) ever feels unsafe or uncertain about code at any point during running it, they force stop and go back to how they were before the program started, a backup if you will code is run as soon as the user sees 'import brainpy' at the start of a block of code, so be careful
installing
some of this might not make sense now, but i figured id get it out of the way now
i dont fully know the best method of installing brainpy. if i come up with a better one, ill change/add it here.
what i did with my subjects, was get on a voice call that also had a chatbox (i used discord, and voice isnt strictly nessecary, but i find it easier myself) and just went over each function and explained as i went along, and ran example code in the chatbox when i explained it
intro to brainpy
User
(ill be referring to the subject as user)
brainpy is object oriented, ive said that about a dozen times now that means whenever a function is called, its called by the part that uses it ¹ (view example 1)
certain parts though, are nested, so to reach them you must call prior parts ² parts are nested as such:
self body components brain thoughts individual thoughts, i.e "i love being programmed" memories individual memories, i.e the memory of trance emotions individual emotions/feelings, i.e the feeling of trance intelligence
self: the user and everything it knows about itself, i.e. its name, other people/relationships, its possessions, the state of whether it has done something, and just general facts about its environment such as if its at its desk ⁴
body: the users body, as a whole
components: parts of user's body, you dont actually call it as components, you call it by the component's name, leftArm, rightLeg etc.
brain: generally the most used part, though moreso for being a gateway to thoughts and emotions. generally contains anything mental
thoughts: stored as a list of strings, each string being its own thought. the more times a string appears in thoughts the more focus it has from user
memories: stored as a list of strings, however clearing or deleting a memory from memories does not delete the memory, rather it revokes user's access to the memory
emotions: stored as a dictionary, which are complicated so ill simplify; each emotion has a name and a variable for how strongly the emotion is felt from 0-100 with 100 being the strongest
intelligence: stored as a number from 0-100, 100 being normal function, and 0 being well, dumb
Basic syntax
each program starts with 'import brainpy' and ends with 'terminate'. ¹ when a user sees 'import brainpy' they will immediately run any code in that block until they see 'terminate'. after a user terminates their brain goes back to idling as it was before, but any emotions thoughts or memories that were modified during the code will persist.
forceStop also stops the program, however it acts more as a saftey net. whenever a program is forceStopped the user loads a backup of before they ran the program. this means any modified emotions memories or anything else will revert. its worth noting that forceStop is hard coded to immediately run if the user ever feels unsafe or uncertain running code
comments: comments in brainpy are notated with 3 hashtags. ³ comments cannot be read by users no matter how hard they try, even after the program has been run.
Ifs Loops Whiles and Triggers
if(bool) - if the boolean is true, the code is ran. otherwise it is skipped. ⁴
loop(int) - repeats the block of code integer times. ⁴ notably you may need to suggest that the user's loop counting algorithm is more advanced, as sometimes the haziness of trance messes with counting
while(bool) - kind of like a mix of if and loop, while the boolean is true the code is repeated. ⁴
trigger(str) - like a python function. is called and the code inside is ran with self.[string name] ⁵
end - ifs loops whiles and triggers are all marked with an end to tell where the code they contain stops break - ends all nested ifs loops whiles and triggers and moves on to the rest of the code ⁴
Methods
new - adds a new item to a list or dictionary. ² ran on a list or dictionary
clear - removes all objects from a list or dictionary ² ran on a list or dictionary
print(str) - user prints the string. ¹ notably, what printing means depends on context and is decided by the user. the user decides if it would be more appropriate to say, type, or write the string. ran on self or body
perform(str) - the user, or a component of theirs performs the action specified in the string ran on body or a component
feel(str) - the users body or a part of it feels/senses what is specified in the string. used for any kind of hallucination. ran on body or a component
wait(int) - waits integer seconds before proceeding ran on self
waitUntil(bool) - waits until the bool is true. good for if the user needs to wait for something to load. ran on self
Variables
i dont have enough mental stamina to explain what a variable is, nor do i think you would have made it this far without knowing that level of basic programming, so im going to skip over it and go over how variables and operators are notated
value: what is stored within the variable string(str) - a line/block of text, notated with quotes integer(int) - a number. try to keep them smaller because subjects arent the best at quick mental operations with large numbers list(list) - a list of variables, usually strings dictionary(dict) - these are complicated, so ill simplify, theyre basically like list but each string in the list has variable(s) associated with it. ³ boolean(bool) - either true or false. code that takes bools to run only run if the boolean returns true. path(path) - makes calling things easier and shorter, though somewhat intensive on subjects. ³
operator: what modification or check is applied to the variable arithmetic: used for math + addition (notably can also combine strings) - subtraction (notably can remove strings from strings) * multiplication / division assignment: changes or sets the variable to something else = sets the variable to equal something else += adds a value to the variable (can be used with strings) -= subtracts a value from variable *= multiplies variable by a value /= divides variable by a value comparison operators: returns true or false based on a comparison == variables are equal < variable is less than value > variable is greater than value <= variable is less than or equal to value >= variable is greater than or equal to value != variable is not equal to value
examples
.1 (the . is so its not really big idk how to fix that)
import brainpy self.print("welcome to brainpy!") terminate
.2
import brainpy self.brain.thoughts.clear self.brain.thoughts.new("I love being programmed") terminate
.3
import brainpy ###sets trance to call emotions.trance.inensity self.brain.emotions.trance.intensity = trance trance = 100 ###puts the user as deep as possible forceStop
.4
import brainpy if(true) while(self.hasTumblrAccount) self.brain.intelligence -= 10 if(self.brain.intelligence <= 50) break end end end terminate
.5
import brainpy trigger("bark") self.print("I'm a good puppy! Wrufh!") end self.bark terminate
Extras and Beyond
Last Notes
just a few things worth noting brainpy has support for libraries, but you need to write, doccument, and install the libraries yourself. once a library is installed to a user its imported the same way brainpy is after brainpy is.
seeing as its not actual machine code and theres no assembler, the code doesnt need to be perfect. there can by minor typos or syntax errors as long as the subject understands the code or doesnt notice theyre there. dont stress yourself about syntax too much
as i said earlier under loops, you might need to suggest to the subject that they retain their arithmetic abilities despite being in trance, because sometimes subjects can struggle with math if theyre in trance.
if you plan to use brainpy yourself id appreciate it if you credited me for it as this took a fair amount of work to make.
i doubt ill make any sort of public installation file, as i think it would be very hard to do with the nature and complexity of this, though if anyone were to, id recommend doing it through a video, so you can have displays onscreen while the subject listens to you
Extras
i think ive done most of the work on this i feasibly can do, but if i do do any more work ill do it under the #brainpy tag, i might also do it under this post. if any of you want to make libraries, id appreciate it if you tagged me or used #brainpy so i could find it!
if you read the brain++ original doccument or are just generally observant, you might have noticed i didnt use the subconscious at all. the main reason i made this was because i didnt like the conscious subconscious model the original used, as its mainly from a lot of old disproven neuroscience. the other main reason i wrote this is to be hopefully easier to understand than a java and c++ based doccument.
if any of you have and questions or suggestions on installing brain++ you can reply to this post or send me an ask about it
special thanks: @jadedwoman's android(?) sideblog @j4d3d-w0m4n for being a large inspiration to do this user @drone-0613 for finding and posting about brainpy the original creator of brainpy, whom i do not know. im really sorry for not crediting them but as far as i can tell i cant find them from the doccument or pastebin they linked to it. regardless them making brain++ is the reason i embarked on this journey, and thus i am grateful that they did. the subjects whom i tested this on who for the time being will remain anonymous
im sorry if this is really amateurish, i tried my best. if i release any updates to this to improve it like i said, ill use #brainpy, and edit or reply to this post. i hope you all enjoy <3
30 notes · View notes
rosepetalkitty · 4 hours ago
Text
femboy but it's a masc presenting cis guy who is arguably ethically feminine
"Forcefem but it's applying Gilligan's ethical standards for women to a man" - @rosepetalkitty
5 notes · View notes
rosepetalkitty · 8 hours ago
Text
IF YOU LOVE FAT WOMEN HIT THAT MF REBLOG
6K notes · View notes
rosepetalkitty · 9 hours ago
Text
that's actually such a good question now i need to figure that out...
So like how easy is it to induce lac[gets shot]
9 notes · View notes
rosepetalkitty · 9 hours ago
Text
Pretty girls have an oral fixation, shove your fingers into her mouth while your strap is deep inside her.
2K notes · View notes
rosepetalkitty · 10 hours ago
Text
i have a discord server now! you should check it out!!!
among other things you can get pings when i post new audios and hang out with me (on vc even!) you should totally join! yes, you, you reading this, you should come hang out with me i totally don't crave attention
2 notes · View notes
rosepetalkitty · 23 hours ago
Text
hypnovember 5: bondage
sfhajfhajfh sorry this is so late i really meant to post this yesterday but then i procrastinated on recording and mixing and editing and stuff but uhm yeah anyways here y'all go!!! this one is fun because it leaves you tied up at the end and you'll stay that way until you're ready to be free~
16 notes · View notes
rosepetalkitty · 1 day ago
Text
god no it's so funny because like. i hated my voice. i still hate my "default" voice. but if you've heard my audios you know that i can just. not use that voice. and then oh, hey, look it's fine now! so now i just need to make that my default.
*claims to not have a girl voice* >is a girl >has a voice curious
10K notes · View notes
rosepetalkitty · 2 days ago
Text
getting casually told to behave does something to me istg
130 notes · View notes
rosepetalkitty · 2 days ago
Note
for real! being able to fully let your guard down is difficult and it's a skill you can practice like anything else~
Hey there! I happened upon your blog randomly a few days ago, and I ended up listening to some of your audios. The hypno didn't really work for me- I wanted it to, but I have no experience with it and struggled getting into trance- but I enjoyed listening to them regardless. You have a lovely voice!
Just wanted to let you know that I enjoyed them. I'm too shy to come off of anon, at least for the time being.
awwww that's perfectly alright sweetie, being hypnotized is a skill that takes practice~ you'll get good at it eventually ;) im really glad you like my voice~
24 notes · View notes
rosepetalkitty · 2 days ago
Text
for reference this is what im reblogging:
Tumblr media
this is exactly it, honestly. like they hurt a bit but the feeling is more like a really sharp tug at the back of your neck followed by a really brief tingly sensation. but really it's mostly that feeling that starts the second the contacts press into your neck where you brain goes "oh. i need to be careful" and then very quickly you're just in "listen" mode because you forgot you were supposed to be doing anything other than avoiding getting shocked >//< "be quiet? oh, gotcha, don't shock me", "roll over? sure, you got it boss, don't shock me", "stay still while you use me? yup sounds awesome, no resistance here so you don't need to shock me"
and then even after the collar has come off and it's aftercare time (fantasizing atp cuz my doms in the past never did that...) you still have a few minutes where you're like "mhm!", "of course", "yep" to everything because your brain isn't sure whether it's even allowed to think about resisting yet. and once you've shaken off that little daze there's still a lingering back-of-mind thought telling you "maybe if you're good they won't shock you" every time you think about resisting, even if you don't have the collar on.
god, honestly that feeling is why i love shock collars. it's the most intense feeling of being tamed that i've ever had, a zap on a medium setting as needed and my head blanks out and i do what im told...
God I can’t stop thinking about someone fucking me while I wear a shock collar, them calling me a bad dog pressing the remote when I try to get away or tell them it’s too much. them telling me how good it feels when I tighten up when the shock me, and how cute my little chokes and yelps are. I’d go so fucking stupid from and the pain and pleasure
1K notes · View notes
rosepetalkitty · 2 days ago
Text
oh
yes i want to know your favourite color, how you like your coffee made, what music you like or what fictional character you like best. but let me ask you how do you want to be loved, if you think soulmates are real or should i just outwardly admit that i want to love you on purpose, what makes you you, what poem always brings you to tears. i want to know what love is to you so i can do just that and even more, i want to see you, inside and out, and i crave to be seen as well.
1K notes · View notes
rosepetalkitty · 2 days ago
Text
oh hey look it's my childhood yippeeeeee 🥲
growing up autistic / growing up gaslit
I.
this is the first lesson you learn: you are always wrong.
there is no electric hum buzzing through the air. there is no stinging bite to the sweetness of the mango. there is no bitter metallic tang to the water.
there is no cruelty in their laughter, no ambiguity in the instructions, no reason to be upset. there is no bitter aftertaste to your sweet tea, nothing scratchy about your blanket.
the lamps glow steadily. they do not falter.
II.
this is the second lesson you learn: you are never right.
you are childish, gullible, overly prone to tears. you are pedantic, combative, deliberately obtuse. you are lazy, unreliable, never on time.
you’re always making up excuses, rudely interrupting, stepping on people’s shoes. you’re always trying to get attention, never thinking about anyone else, selfish through and through.
it’s you that’s the problem. the lamps are fine.
III.
this is the third lesson you learn: you must always give in.
mother knows best. father knows best. doctor knows best. teacher knows best. this is the proper path. do not go astray.
listen to your elders, respect your betters, accept what’s given to you as your due. bow to the wisdom of experience, the education of the professional, the clarity of an external point of view.
what do you know about lamps, anyway?
26K notes · View notes
rosepetalkitty · 3 days ago
Text
djahhdhdb pretty please >///< honestly you can just dm me if you want
New hypnotic subs are adorable. Before the programming and corruption reshapes them into a mindless hypno slut, when they still feel a little awkward and embarrased when you dress them up and play with them, but can't remember why. So cute, the sleepy, confused look in their eyes as they try to remember how to disobey, and then the empty look as the resistance passes.
Everything's so relaxing and calming as you undress them, slowly sink them into trance, and then wash more of their thoughts and memories away.
2K notes · View notes
rosepetalkitty · 3 days ago
Text
sdkgfksdghkdshg god i wish it worked like that
New hypnotic subs are adorable. Before the programming and corruption reshapes them into a mindless hypno slut, when they still feel a little awkward and embarrased when you dress them up and play with them, but can't remember why. So cute, the sleepy, confused look in their eyes as they try to remember how to disobey, and then the empty look as the resistance passes.
Everything's so relaxing and calming as you undress them, slowly sink them into trance, and then wash more of their thoughts and memories away.
2K notes · View notes
rosepetalkitty · 3 days ago
Text
god fuck this feels like a callout >//////////<
Reblog if you're fed up of performing this character people have forced you into and just want to be a doll on my lap with no stress or worries
519 notes · View notes