Create and Fuck your AI Slut -70% OFF
x

Seamonkey

Member
Oct 24, 2017
330
439
249
For the record, I know it might be confusing, but the bar on Attention Whore doesn't actually represent the trait value, but instead it measures how 'satisfied' the attention whore is with the current level of attention they have. The trait can slowly be ground down through certain means, but the bar being empty doesn't mean you reduced the stat to zero, you just satisfied the condition for it to not impose penalties.

As for the whole 'These trait combo's don't make sense' thing.

A pacifist brawler doesn't make much sense, that much is true.

A vanilla character with high deepthroat skill however? Vanilla represents a characters opinion of sex and sexual acts, the deepthroat skill represents how skilled they are at performing deepthroat oral sex. I hope I don't need to elaborate how in a setting with extensive slavery, characters can develop high skills in a acts which they are uncomfortable with performing.
"(Character Name) is a prude, normal middle-class girl that doesn't like to indulge in anything that is considered lewd, perverted or unnatural"
The key part is that it is about their attitude and what they like to do, not some judgement of what they have already done or experienced.

As for Pure and Attention Whore? You do know attention whore doesn't mean literally whoring yourself, correct? It means the character wants to subject to your attention regularly and interact with you. Characters like Bud start with it if I recall correctly, and you certainly aren't expected to be fucking Bud.
It has absolutely nothing to do with the Pure trait, the opposite of which is Malevolent, not Attention Whore.
Pure's Description is:
"(Character Name) looks and acts like a princess from a fairytale. There is something unspoiled in her face, and it feels like the act of corrupting her soul could weaken the very fabric of Heaven."
It just...doesn't have anything to do with nor does it contradict Attention Whore, Attention Whore is to do with a character desiring regular attention to be happy, Pure is to do with how corrupt they are (or rather aren't in this case.)

As for the refreshing the game thing? If your browser is reasonably fast, for a lot of people it genuinely is faster to just hit the F5 key than it would be to go down to the corner, open up the save menu and going to load a save. If that isn't quicker for you for whatever reason then fair enough, but genuinely, people aren't trolling you on that, for a lot of us it is just genuinely quicker.
 

Hairybum

Newbie
Aug 24, 2022
37
33
53
The autism thing is hate speech against an oppressed minority. I have reported those ignorant comments as hate speech, in hopes that this obnoxious and obviously damaged individual gets removed from this space, which they are shitting up. That person obviously needs help, but this isn't the place to provide it. I encourage others to report the offensive comments too. We should all be trying to build a better world. We won't do that by tolerating abuse.
 
Jan 5, 2018
59
69
132
The autism thing is hate speech against an oppressed minority. I have reported those ignorant comments as hate speech, in hopes that this obnoxious and obviously damaged individual gets removed from this space, which they are shitting up. That person obviously needs help, but this isn't the place to provide it. I encourage others to report the offensive comments too. We should all be trying to build a better world. We won't do that by tolerating abuse.
Good move. I've already reported a few of them, but the mods just mark my reports 'resolved', so it's possible more need to report them before action is taken.
 

DrLizardman

Active Member
Apr 28, 2021
590
215
166
Multiple versions of the game have had mods that would allow that... and several times the next version of the game has broken the mod. It appears to me that the dev is very deliberately suppressing that kind of content.
I agree that in-universe it would be entirely reasonable, but the developer has to operate in our universe. Our universe, sadly, has a lot of nonsensical laws and regulations.
Yeah though tbf since there are no renders for any of the un-allowed content it really wouldnt be fun anyway. like at that point just imagine it and then nobody gets banned.
 

KleinWolf

New Member
Jun 16, 2024
3
0
11
// ==UserScript==
// name Masters of Raana UI Fix
// namespace
// Version 1.3
// Description Enables mouse dragging and scroll position preservation for Masters of Raana (scrollbars removed)
// Match *://grimdark-studios.itch.io/*
// Match file:///home/david/Games/Masters%20of%20Raana/mod_start_game.html
// Grant none
// ==/UserScript==

(function() {
// Inject CSS for UI sizing (scrollbars removed)
var style = document.createElement('style');
style.textContent = "body, #game, .main-container {" +
" width: 100% !important;" +
" max-width: 1366px !important;" +
" height: 100% !important;" +
" max-height: 860px !important;" +
" margin: 0 auto !important;" +
" position: relative !important;" +
" box-sizing: border-box !important;" +
" cursor: grab !important;" +
" scroll-behavior: smooth !important;" +
"}" +
" .main-container:active {" +
" cursor: grabbing !important;" +
"}" +
" .main-container > * {" +
" position: relative !important;" +
" top: 0 !important;" +
" left: 0 !important;" +
"}";
document.head.appendChild(style);

// Find the main container with fallback
var container = document.querySelector('#game');
if (!container) container = document.querySelector('.main-container');
if (!container) container = document.querySelector('body');
if (!container) {
console.error('Container not found');
return;
}

// Mouse dragging functionality
var isDragging = false, startX, startY, scrollLeft, scrollTop;
container.addEventListener('mousedown', function(e) {
if (e.button === 0) { // Left mouse button
isDragging = true;
container.style.cursor = 'grabbing';
startX = e.pageX - container.offsetLeft;
startY = e.pageY - container.offsetTop;
scrollLeft = container.scrollLeft;
scrollTop = container.scrollTop;
}
});
container.addEventListener('mousemove', function(e) {
if (!isDragging) return;
e.preventDefault();
var x = e.pageX - container.offsetLeft;
var y = e.pageY - container.offsetTop;
container.scrollLeft = scrollLeft - (x - startX) * 2;
container.scrollTop = scrollTop - (y - startY) * 2;
});
container.addEventListener('mouseup', function() {
isDragging = false;
container.style.cursor = 'grab';
});
container.addEventListener('mouseleave', function() {
isDragging = false;
container.style.cursor = 'grab';
});

// Preserve scroll position during UI updates
var savedScrollX = 0, savedScrollY = 0;
var lastUpdate = 0;
var debounceDelay = 100; // Milliseconds
container.addEventListener('scroll', function() {
savedScrollX = container.scrollLeft;
savedScrollY = container.scrollTop;
});

// Restore scroll position after UI updates
var restoreScroll = function() {
var now = Date.now();
if (now - lastUpdate > debounceDelay) {
container.scrollLeft = savedScrollX;
container.scrollTop = savedScrollY;
lastUpdate = now;
}
requestAnimationFrame(restoreScroll);
};
requestAnimationFrame(restoreScroll);

// Monitor DOM changes and clicks
var observer = new MutationObserver(function() {
container.scrollLeft = savedScrollX;
container.scrollTop = savedScrollY;
});
observer.observe(container, { childList: true, subtree: true, attributes: true });

// Capture clicks to ensure scroll position is maintained
document.addEventListener('click', function() {
setTimeout(function() {
container.scrollLeft = savedScrollX;
container.scrollTop = savedScrollY;
}, 50);
});
})();

Script I'm trying to use in Tampermonkey to:
1: Adjust the resolution for 1366 x 768
2: Keep the screen at a fixed point while attacking and zoomed in.
 

Poppin81

Member
Jan 6, 2023
116
76
151
What is the relevance of the forged documents at the transit dept?

You can't use it on npcs like Ayden or Clea right?

I mean it costs 25000 influence so what exactly is it used for from a gameplay perspective.
 

Ennoch

Conversation Conqueror
Donor
Respected User
Oct 10, 2017
7,948
24,268
913
I mean it costs 25000 influence so what exactly is it used for from a gameplay mechanic.
If you ever accidentally achieve full democracy, slavery becomes illegal and if you own slaves you will incur penalties but convicts aren't considered slaves as it's essentially a prison sentence. So you can have as many as you want without penalty.
 
  • Like
Reactions: Poppin81

Hairybum

Newbie
Aug 24, 2022
37
33
53
What is the relevance of the forged documents at the transit dept?

You can't use it on npcs like Ayden or Clea right?

I mean it costs 25000 influence so what exactly is it used for from a gameplay perspective.
I think it's partly guarding against the possible future in which, if Aria gets power, she might one day outlaw slavery. So a powerful MC might want to convert some of his slaves into convicts rather than free them (and risk losing them, or having to pay them loads) or live with a daily large Influence hit.
 

Poppin81

Member
Jan 6, 2023
116
76
151
Ahh ok now it makes sense but there's no way I'll ever need that :LUL:

I'm currently doing a nwo playthrough but Aria will be a fully corrupted floor crawling goldwalking tavern whore before she becomes chancellor. Clea will be her bff dyke partner

Any mod or script to take Cleas unslaveable status away?
 

DrLizardman

Active Member
Apr 28, 2021
590
215
166
Can Milou hang with a late game squad? She has crackshot which is cool but lacks the health and damage of others... wondering if I should just run Bart, Reece, Sharpe, and Cassius.
 

Poppin81

Member
Jan 6, 2023
116
76
151
Can Milou hang with a late game squad? She has crackshot which is cool but lacks the health and damage of others... wondering if I should just run Bart, Reece, Sharpe, and Cassius.

Can't anyone be a beast if you train their stats up(strength, stamina, ranged and melee)?

I got Alpha, Bravo, Charlie and Delta squads all trained up waiting on Dengi :PogChamp:

Reece and Sharpe are the same person too

Really wish when you take out Carozza you got their mansion to turn into a high end brothel or sumthin. Also the workshops are cool but it would be awesome if we could open up our own assembly plant like in westside to replace the 4 workshops and free up space. There's meant to be an abandoned one in Stokke Hill I think it was Dakotas rescue mission that referenced it.
 
Last edited:

Uncle Bob

Newbie
Jan 12, 2018
37
34
193
Am I seeing ghosts, or do some randomly generated ladies have some fixed traits? In my current game, Av146 always comes with Sweet Tooth.
 
Last edited:

Seamonkey

Member
Oct 24, 2017
330
439
249
Pacifist Brawler may not make sense for Lovisa, but it can make sense for a martial arts master who has achieved zen and prefer to solve things diplomatically but will kick your ass if he needs to.
I get what you mean, and that can be a flavourful interpretation to reconcile it, but I was talking about the little speech bit at the bottom of the trait description where it is
(Character Name): You know what they say, a real warrior carves his success with a sword, straight through the flesh of his enemies!

Which is a bit harder to reconcile with a pacifist worldview, especially with how the trait is written and treats it.
But yeah, I can see how it could make sense, certainly.
 
4.50 star(s) 171 Votes