Either I'm stupid or i can't find those lines in the RemtairyEnemy file. I found the IDs in the RemitairyCombat file but chnging those didn't change the animation only change was the text. Can someone help me where they are to change the animation? I'm playing v.4u
I found another way.
In RemtairyEnemySex.js you can change enemies sex initiation skills.
So for example you can replace a hj pose with bj:
Game_Enemy.prototype.beforeEval_start_hj_standing1_rightarm = function(target) {
target.setStandingHJSexPose();
target.addStunTillEndOfTurnState();
target.setRightHandInserted(true, this);
target.enableRightHandjobPoseSkills(this);
target.stripOffPanties();
target.stripOffClothing();
this.addJustJoinedState();
this.setPoseStatusMaster();
this.setPoseMasterSkillID(SKILL_ENEMY_POSESTART_STANDINGHJ_ID);
this.addSexPoseState_RightHand();
this.setBodySlotWithPenis(RIGHT_HAND_ID);
this.setValidTargetForHandjob();
this.setPoseSkillTarget(target);
this.setPoseSkills([SKILL_ENEMY_POSESKILL_RIGHTHAND_ID]);
this.setOrgasmSkills([SKILL_ENEMY_EJACULATE_BOOBS_ID,SKILL_ENEMY_EJACULATE_RIGHTARM_ID]);
this.addToEnemyHandjobCountRecord(target);
};
You need to change the text below this line
"Game_Enemy.prototype.beforeEval_start_hj_standing1_rightarm = function(target)."
It will look like that.
Game_Enemy.prototype.beforeEval_start_hj_standing1_rightarm = function(target) {
target.setKneelingBJSexPose();
target.addStunTillEndOfTurnState();
target.setMouthInserted(true, this);
target.enableBlowjobPoseSkills(this);
target.stripOffPanties();
target.stripOffClothing();
target._cockMouthTarget = this;
this.addJustJoinedState();
this.setPoseStatusMaster();
this.setPoseMasterSkillID(SKILL_ENEMY_POSESTART_KNEELINGBJ_ID);
this.addSexPoseState_Blowjob();
this.setBodySlotWithPenis(MOUTH_ID);
this.setValidTargetForBlowjob();
this.setPoseSkillTarget(target);
this.setPoseSkills([SKILL_ENEMY_POSESKILL_MOUTH_ID]);
this.setOrgasmSkills([SKILL_ENEMY_EJACULATE_FACE_ID,SKILL_ENEMY_EJACULATE_MOUTH_ID]);
this.addToEnemyBlowjobCountRecord(target);
};
So when enemies (like guard) will initiate hj,you will get a bj instead or whatever you added.
You could replace almost every skills there (except slime).
All that will work only for enemies tho,so Karryn sex skills will be the same.
But surely there is better way to do that,i just don't understand how the tags work here.