Any way you could use the obedient skill without going through slave line?
If you have the cheat mod installed, you can change it's code to add titles. If you don't, you can remove the check for this skill.
Here's how to do both.
For the cheat menu, open
www/js/plugins/Cheat_Menu.js
, look for
enable god mode for an actor
.
INSIDE THE FUNCTION, change add
$w.setNum('sexJob3', 1)
. It should look something like
JavaScript:
// enable god mode for an actor
Cheat_Menu.god_mode = function (actor) {
$w.setNum('sexJob3',1);
// rest of the code...
}
After this, you get into the game, open the cheat menu with
1
, go to the god mode cheat and enable it. You can disable it after, it won't revert the change.
For the non cheat menu version, open
www/js/rpg_objects.js
look for
|| $w.getNum('sexJob3') == 0
and replace it with nothing. It should be something like:
JavaScript:
// it will start like this.
case 109:
if ($w.getP('obscene') < 5 || $w.getNum('sexJob3') == 0)
return false;
break;
// after your change, it'll be
case 109:
if ($w.getP('obscene') < 5)
return false;
break;
If your code is all in one line, you can use this website to make it easier to read
You must be registered to see the links