Clemency

Well-Known Member
Jan 21, 2024
1,219
1,723
249
Are you sure about this? I can't find anything about armors in the code.
Positive. I checked the latest alpha.
/* armor */

set _npc.armorpower to 0
if _npc.armorwear is "padded" or _npc.armorwear is "leather" or _npc.armorwear is "stealth";set _npc.armorpower+=1
if _npc.armorwear is "hleather" or _npc.armorwear is "combat";set _npc.armorpower+=2
if _npc.armorwear is "duraplate" or _npc.armorwear is "weave";set _npc.armorpower+=3
if _npc.armorwear is "hulc" or _npc.armorwear is "wega" or _npc.armorwear is "aet";set _npc.armorpower+=4
 
  • Like
Reactions: bolondro2

l.lotler

Newbie
Nov 15, 2017
38
52
189
Positive. I checked the latest alpha.
Ok, but this just sets an armor power, I can't see this variable being used anywhere in guard power calculation. If I change around the armors in my game, nothing happens. Maybe this is again due to different game versions
 

bolondro2

Active Member
Oct 12, 2018
750
810
212
Are you sure about this? I can't find anything about armors in the code.
The formula goes like this:
Code:
if _npc.ranged gte 80 set _myguard+=1
if _npc.melee gte 80 set _myguard+=1
if _npc.meleepower gte 1 set _myguard+=_npc.meleepower
if _npc.rangedpower gte 1 set _myguard+=_npc.rangedpower
if _npc.meleepower lte 0 and _npc.rangedpower lte 0 set _myguard-=1
if _npc.kind lte 39 set _myguard+=1
if _npc.discipline gte 60 set _myguard+=1
if _npc.traitwarrior gte 80 set _myguard+=1
if _npc.traitbrawler gte 80 set _myguard+=1
if _npc.traitpure lte 24 set _myguard+=2
if _npc.age lte 15 set _myguard-=1
if _npc.girlid is 23 or _npc.girlid is 25 or _npc.girlid is 27 or _npc.girlid is 29 or _npc.girlid is 34 set _myguard+=4
And the bonuses from meleepower and rangedpower are these:
Code:
/* ranged weapon power value */
set _npc.rangedpower to 0

if _npc.weapon is crossbow set _npc.rangedpower+=1
if _npc.weapon is pistol set _npc.rangedpower+=2
if _npc.weapon is prifle set _npc.rangedpower+=2
if _npc.weapon is rifle set _npc.rangedpower+=3
if _npc.weapon is revolver set _npc.rangedpower+=3
if _npc.weapon is shotgun set _npc.rangedpower+=3
if _npc.weapon is gl set _npc.rangedpower+=3
if _npc.weapon is automaticrifle set _npc.rangedpower+=4
if _npc.weapon is rifle50 set _npc.rangedpower+=5
if _npc.weapon is coil set _npc.rangedpower+=6
if _npc.weapon is plasma set _npc.rangedpower+=6
if _npc.weapon is minigun and _npc.str gte 100 set _npc.rangedpower+=7
if _npc.weapon is neme set _npc.rangedpower+=7
if _npc.weapon is cybercannon and _npc.ranged gte 80 set _npc.rangedpower+=8

if _npc.rangedpower gte 5 and _npc.ranged lte 59 set _npc.rangedpower-=1

/* melee weapon power value */
set _npc.meleepower to 0
if _npc.meleeweapon is whipstick set _npc.meleepower+=1
if _npc.meleeweapon is knife set _npc.meleepower+=1
if _npc.meleeweapon is staff set _npc.meleepower+=1
if _npc.meleeweapon is sledge set _npc.meleepower+=2
if _npc.meleeweapon is spear set _npc.meleepower+=2
if _npc.meleeweapon is waki set _npc.meleepower+=2
if _npc.meleeweapon is sword set _npc.meleepower+=3
if _npc.meleeweapon is gsword and _npc.str gte 75 set _npc.meleepower+=4
if _npc.meleeweapon is gaxe and _npc.str gte 100 set _npc.meleepower+=4
if _npc.meleeweapon is mal and _npc.str gte 100 set _npc.meleepower+=4
if _npc.meleeweapon is powerkatana set _npc.meleepower+=4
if _npc.meleeweapon is azuk and _npc.str gte 190 set _npc.meleepower+=6
if _npc.meleeweapon is iceblade set _npc.meleepower+=6

if _npc.meleepower gte 5 and _npc.melee lte 59 set _npc.meleepower-=1
Btw, it seems like being good friends with the wrool cat also greatly improves your guard:ROFLMAO:
Code:
if $wrool gte 6 set $guardpool+=5
Positive. I checked the latest alpha.
So, what in my mind it´s a "standard guard" would range from.

A Door Holding Guard, mostly to keep beggars and general folk away: Leather or padded, spear, handgun or pistol carabine: +1+2+2=+5. Investment in the 500-1000$ range.
A more serious one, just in case the first one gets in trouble: Heavy Leather, Rifle, Sword: +2+3+3=+7, Investment in the 1500$ range-

Increasing the power over the second one would require a serious investment.

Power Katanas and Great Swords are expensive and give just a +1 about this "el cheapo" decent equipment. Even just the humble Automatic rifle it´s a serious increase in price, ( 400 a rifle, 1000 an automat) for just a +1. The same, but * 10fold can be said about Duraplate.

I Believe that going above this +7, +8 at most, makes no sense for a Guard. Other matter it´s a member or a Combat Team that also it´s a Guard, of course.
 

Clemency

Well-Known Member
Jan 21, 2024
1,219
1,723
249
Ok, but this just sets an armor power, I can't see this variable being used anywhere in guard power calculation. If I change around the armors in my game, nothing happens. Maybe this is again due to different game versions
If you are using the version on the front page, that is not the latest version.

Kelly with Stealth vs with WEGA

Screenshot 2025-03-23 213139.png

Screenshot 2025-03-23 213125.png
 

khumak

Forum Fanatic
Oct 2, 2017
4,024
4,179
488
Well, 97 of my NPCs have 80/80 Melee and Ranged Combat stats or higher, mostly just from guard training. When you are living in Raana, you need to be able to handle a few bandits and raiders. The new house raids are something I have been roleplaying for a bit now, so everyone is strapped the moment they get to Undying affection.
I do that as well in my games, partly for completionist sake but also because guard duty under a good guard captain is still the best way I've found to raise discipline and I want EVERYONE to have good discipline. With the new educators it looks like once you get your trainers up to par you could passively train everyone except your paragons up to 120/120 melee ranged. I haven't gotten that far. I'm starting off by training up everyone who is age 35+ to be a workaholic, 90+ int, and good combat stats so I have a good selection of trainers I can round robin with. Some of those start off with good fame, some don't.

I had bad luck on my int trainers so far. The only people with decent int who were also workaholics in my game are Clea and Gregory. Workin on grinding out workaholic on both Lucky and Stormchild now, although at least Clea can already train people to 80 and Gregory can train them to 95. So that'll do for now. Even makes for a nice way to train up Armand a bit in the early game since he didn't get Nerd this time.

Edit: Actually it looks like Educators can train melee/ranged beyond 120 if their skill is that high. Clea just trained Connor up to 121 ranged in my game. I wonder if they can train it all the way to 150? That would be pretty nice.
 
Last edited:

Azain

Newbie
Mar 25, 2017
56
79
186
Me when i see this forum discussing making hundred of thousands in cash and rep, defeating titans and owning hundreds of slaves while i struggle to feed myself.

 
  • Haha
Reactions: joaodasilva

desmosome

Conversation Conqueror
Sep 5, 2018
6,782
15,355
864
Hmmm, I have the Valkyria captured already. Didn't even realize she was scripted NPC. But I don't remember anything about colt peacemaker. And I don't have that weapon anywhere. Did I do something wrong when capturing her?
 

khumak

Forum Fanatic
Oct 2, 2017
4,024
4,179
488
Hmmm, I have the Valkyria captured already. Didn't even realize she was scripted NPC. But I don't remember anything about colt peacemaker. And I don't have that weapon anywhere. Did I do something wrong when capturing her?
The encounter where you capture her can drop that but it's random. I believe it's just a standard .45 revolver though. Maybe that will change when the Peacemaker update happens. I forget what version that's supposed to be. There are other places to get the .45 if you want it (like if you took the gunslinger trait).
 

khumak

Forum Fanatic
Oct 2, 2017
4,024
4,179
488
Me when i see this forum discussing making hundred of thousands in cash and rep, defeating titans and owning hundreds of slaves while i struggle to feed myself.

Food is actually my largest expense for about the first 3 months usually. Grim likes to hit me repeatedly with that Alien Vermin event often enough to pretty much guaranteed I stay locked at zero prosperity until I get Zapin Fields up and running which means I'm paying roughly $6,000 per day for food until then.
 

Ennoch

Conversation Conqueror
Donor
Respected User
Oct 10, 2017
7,951
24,342
913
Me when i see this forum discussing making hundred of thousands in cash and rep, defeating titans and owning hundreds of slaves while i struggle to feed myself.
We all were there once upon a time :sneaky: Seeking a guide for the walkthrough to learn what the hell we suppose to do!
 

GHOSTMD

Newbie
Aug 5, 2021
36
27
62
right now just judging by the Tags
so

Is there any Chance for a female protagonist and some
Lesdom / Lesbian domination / Lesbian BDSM content?

Given ofc it isn t already in the game i mean
 

Seamonkey

Member
Oct 24, 2017
330
439
249
right now just judging by the Tags
so

Is there any Chance for a female protagonist and some
Lesdom / Lesbian domination / Lesbian BDSM content?

Given ofc it isn t already in the game i mean
Pretty much no chance, the game is reasonably far into development and the devs have shown no appetite to include a female protagonist. If for no other reason than it would be a lot of work at this stage in the game, given it would require doing all new renders for all the characters that have sex scenes to accommodate a female protagonist.

So I certainly wouldn't get your hopes up for it.
 

desmosome

Conversation Conqueror
Sep 5, 2018
6,782
15,355
864
Pretty much no chance, the game is reasonably far into development and the devs have shown no appetite to include a female protagonist. If for no other reason than it would be a lot of work at this stage in the game, given it would require doing all new renders for all the characters that have sex scenes to accommodate a female protagonist.

So I certainly wouldn't get your hopes up for it.
I agree that it shouldn't be a priority until the game is completely done, if it would even be considered. That said, a female gigachad is supported by the lore. The BDSM course at that one place has the history of the Paine lady who wrote all those domination books lol.
 
  • Like
Reactions: Seamonkey

khumak

Forum Fanatic
Oct 2, 2017
4,024
4,179
488
I never noticed before now so I'm not sure if this is a general browser thing or a MoR specific thing but from the recent testing I've done with MoR, Chrome is slow as hell when playing MoR (some pages take several seconds to load), while all pages load almost instantly on Firefox.

I had been playing exclusively on Firefox on my desktop so I never had a reason to test anything else, but recently got a new laptop. Decided to see if Chrome had improved since I last tried it. Seems fine for most pages I visit but not for MoR.

Am I missing something? I have a 4070 based laptop with 32GB of system ram and an SSD for storage (no HD).
 
  • Thinking Face
Reactions: Kunt

Mr_Shaky

Member
Nov 6, 2017
227
235
246
I figured I would share what variables I've found and scripts I've made. I know there are already a couple posts with this stuff but I'm fairly certain I've covered some stuff they've missed.
All variables and scripts are run in the browser console (F12 on Brave, Chrome, Firefox and Edge. For any other browser, google it).
If I don't have what you need check out these other posts:
https://f95zone.to/threads/masters-of-raana-v0-8-4-1-a18b-grimdark.100207/post-8208611 by Selesteen
https://f95zone.to/threads/masters-of-raana-v0-8-4-1-a18b-grimdark.100207/post-14392005 by Porrvald
https://f95zone.to/threads/masters-of-raana-v0-8-4-1-a18b-grimdark.100207/post-14397727 by sipsipsap

Most of this was tested on version 0.8.4.1 A1c

Feedback is fine as long as you're respectful.

You don't have permission to view the spoiler content. Log in or register now.
You don't have permission to view the spoiler content. Log in or register now.
You don't have permission to view the spoiler content. Log in or register now.
You don't have permission to view the spoiler content. Log in or register now.
You don't have permission to view the spoiler content. Log in or register now.
You don't have permission to view the spoiler content. Log in or register now.
You don't have permission to view the spoiler content. Log in or register now.
You don't have permission to view the spoiler content. Log in or register now.
You don't have permission to view the spoiler content. Log in or register now.
 
Last edited:

Kunt

Member
May 6, 2018
219
192
53
I never noticed before now so I'm not sure if this is a general browser thing or a MoR specific thing but from the recent testing I've done with MoR, Chrome is slow as hell when playing MoR (some pages take several seconds to load), while all pages load almost instantly on Firefox.

I had been playing exclusively on Firefox on my desktop so I never had a reason to test anything else, but recently got a new laptop. Decided to see if Chrome had improved since I last tried it. Seems fine for most pages I visit but not for MoR.

Am I missing something? I have a 4070 based laptop with 32GB of system ram and an SSD for storage (no HD).
is it a chrome thing or a chromium thing? does it also happen on edge?
 

Clemency

Well-Known Member
Jan 21, 2024
1,219
1,723
249
Feedback is fine as long as you're respectful.
I would remove the maxhealth for MC and toughness for NPCs. I do not think that stat can be cheated and it will automatically reset the variable anyway. It is a compound skill based on your STR and Stamina. Same goes for NPCs. Lickskill too is based on copulation and kissing, divided by 2(?). And masteradmin is based on INT, Acad, Science, and your power value up to 150, all divided by 4(?).

For the NPC section, check the cheat for melee. It is misspelled. Traitrela and rela2 should be relationship traits, one for Valeria and Greg, one for Erica and Connor. Best not touch it. Same for the Sibling trait -altering it for Lovisa might affect Tori, altering it for Laika might affect Loden). Traitrifle is an upcoming trait for Rifle Savant. There's four upcoming traits (the rifle one, pistoleer, traditionalist, and tech gunner) all in the wiki now.

For the Addiction trait, not included here, it is SugarCube.State.active.variables.npc.av1.reserved2 = 0
 
  • Like
Reactions: ognelab
4.50 star(s) 172 Votes