When every i try to install a patron mod it says "invalid patron code or email for this game version" they are the Tayuya,mikasa,and the tenten lee & jalyne mods
Hey something's wrong with the mods. I downloaded the paid version from itch but it keeps saying invalid email or patreon code. I don't think I need one if I already paid for it on Itch
Yes, you don't need the code. Check if you have empty fields for email and code in "Settings - Enter patron code". If fields are not empty, make them empty.
hi im trying to download the mods but they dont want to download. any help? also having trouble getting the patron goodies since i bought the patron version from here but it dont do nothing
update- accidentally deleted the mods thinghy and now i cant get it back pls help me i just spent money and am not able to enjoy the game correctly
Hello. You can re-download the game from itch, if you deleted something. In the Itch version Patron mods already in the game. The mods that came out after the release will be in the next release.
Hello creator I wanted to know if there is a way to pass this mission or if there was a bug, Tenten's mission in which the mission says the following (Buy items for sale from a shady in ichiraku ) I've done everything and I didn't get there was any kind of bug or does version 0.23.1 n go beyond that?
Hello, im trying to learn how to make mods, but i dont understand how to add item to tenten's shop i know about guide on wiki but it dont helps too, i need to know where must be rpym file, and know mod folder structure for adding items in tenten's shop
Hello. Just download some free mod with outfit and check the sources. .rpym file could be anywhere inside mod's folder. Mod folder structure from the wiki:
i tried to reply but itch dont send my message :b i asking how to make basic item not costume like pen in wiki and i get another question about how to remove excess clothes on ino in shop preview and on the character, cuz my costume overlaing on basic costume of ino but i dont need it
If you want your item on preview, add the layer and value to the bottom of the list.
If your outfit conflicts with some other layers, you can fix it with a .json file. A .json file name should be the same as the image name and the files should be in the same folder.
For example, Ino's eva outfit. ino/costume/eva.webp - outfit ino/costume/eva.json - outfit settings, that will hide top and skirt when Ino wears the outfit
init python:
item_pen = Item(
name=__("Pen"),
cost=100,
descr=__("Basic pen"),
shop="tenten",
icon="my_mod_folder/pen.webp",
),
)
class Pen(Module):
subscribe_on_events = ["game_loaded"]
def on_event(self, event):
if not inv_shop.has_item(item_pen):
inv_shop.add(item_pen)
got that problem, whats wrong?(switched render, renamed mod doesnt help, no ignore button) Thank you for your help, understanding and patience And sorry for the large number of questions Folder name is correct in icon
The game glitched on the Ten-Ten part where you wait around the training grounds. I went there and accidentally started the Anko storyline so I went ahead and finished it but when I went there it just said there was nobody there so there is no point of staying. I was wondering if you could fix this and give me the console command for skipping this part?
Hello! game has been running smoothly both mobile and pc version. I do have one problem though, I've been following the wiki for Ino's route and I can't seem to get the third version of "touch your breasts" even with +11 lust, is that a bug or am I doing something wrong?
thanks for the answer. Apparently, I had to progress a bit more in some other quests somehow? I already had the lust at 21 but couldn't get the third version after doing some other quests
Привет, будут ли новые техники? Если да, то это будет только ниндзюцу или ещё и гендзюцу и тайдзюцу? И что там с темой, что главный герой хотел обучиться мягким техникам? Планируется ли развитие боевой системы?
Новые техники будут. Какие именно - будет зависеть от сюжета.
Боёвку будем развивать, но потом, сейчас не в приоритете. Как показал опрос, многие просто пропускают мини-игру с боёвкой, поэтому пока сосредоточимся на сюжете/сценах.
Hello it says that I have to save tenten from arena, but how am I supposed to do that? Whenever I go to arena nothing happens (I have there another quest in arena but it says that in future update) and how should I persuade sakura to train with me, I have trust with her like 70 but still no new options to do with her :/ and then temari quest says that I have to talk to Hokage but when I go there nothing triggers...someone know what to do?
Hi, i've just downloaded the game. The dialogs is in english but for some reason on menu some things are in russian or something. In special training as well, how do i change it?
← Return to game
Comments
Log in with itch.io to leave a comment.
When every i try to install a patron mod it says "invalid patron code or email for this game version" they are the Tayuya,mikasa,and the tenten lee & jalyne mods
You can't install any patron mod that are not already included in the build.
This mods came after the update. It will be included in the next one.
Hey something's wrong with the mods. I downloaded the paid version from itch but it keeps saying invalid email or patreon code. I don't think I need one if I already paid for it on Itch
Yes, you don't need the code. Check if you have empty fields for email and code in "Settings - Enter patron code".
If fields are not empty, make them empty.
hi i would like to ask if you could add kushina please
AGREE 100%
Когда ожидать обновление?
hi im trying to download the mods but they dont want to download. any help? also having trouble getting the patron goodies since i bought the patron version from here but it dont do nothing
update- accidentally deleted the mods thinghy and now i cant get it back pls help me i just spent money and am not able to enjoy the game correctly
Hello. You can re-download the game from itch, if you deleted something.
In the Itch version Patron mods already in the game.
The mods that came out after the release will be in the next release.
Hello creator I wanted to know if there is a way to pass this mission or if there was a bug, Tenten's mission in which the mission says the following (Buy items for sale from a shady in ichiraku ) I've done everything and I didn't get there was any kind of bug or does version 0.23.1 n go beyond that?
Hello. Cheats - Console
then write exit to close console.
Hello, im trying to learn how to make mods, but i dont understand how to add item to tenten's shop i know about guide on wiki but it dont helps too, i need to know where must be rpym file, and know mod folder structure for adding items in tenten's shop
Hello. Just download some free mod with outfit and check the sources.
.rpym file could be anywhere inside mod's folder.
Mod folder structure from the wiki:
item.rpym file
i tried to reply but itch dont send my message :b
i asking how to make basic item not costume like pen in wiki
and i get another question about how to remove excess clothes on ino in shop preview and on the character, cuz my costume overlaing on basic costume of ino but i dont need it
To make basic item just use Item class instead of the Outfit. To add this item to the shop use same module code as I sent in the previous message.
If you want to remove other layers from the preview, just don't add it to the preview layers.
For example, completly naked ino for preview:
If you want your item on preview, add the layer and value to the bottom of the list.
If your outfit conflicts with some other layers, you can fix it with a .json file. A .json file name should be the same as the image name and the files should be in the same folder.
For example, Ino's eva outfit.
ino/costume/eva.webp - outfit
ino/costume/eva.json - outfit settings, that will hide top and skirt when Ino wears the outfit
Use https://grviewer.com/ to check the game sources (inside scripts.rpa archive). Basically all scripts inside events folder are make like mods.
got that problem, whats wrong?(switched render, renamed mod doesnt help, no ignore button)
Thank you for your help, understanding and patience
And sorry for the large number of questions
Folder name is correct in icon
Like so:
When will the next update be
The game glitched on the Ten-Ten part where you wait around the training grounds. I went there and accidentally started the Anko storyline so I went ahead and finished it but when I went there it just said there was nobody there so there is no point of staying. I was wondering if you could fix this and give me the console command for skipping this part?
Have you tried going to the forest? There is a clearing in the forest where Tenten could be.
Yes I’ve checked all over the forest and in the clearing/Meadow
What does it says in the "Progress" window?
To give you a console command I need to know current goal in quest.
Когда обновление?
How do i access the patreon contents afterward purchasing this version?
It should be in the game already. Outfits in the Tenten shop. Events could be started via Cheat menu (Events tab)
Hi, where can i play mod with tayuya? Is it finished?
Hello. This mod is available for Patreon subscribers for now. It will be added to the Itch version in the next public release.
how do you install this I bought it and I'm struggling to install the HD version
https://kunoichi-trainer.ninja/en/dlc/hd#how-to-install
How do u use the justus?
Pick up the scroll in school. Then new icon appears in the top right corner.
Is there any difference between the paid version and the free version?
Yes. In paid version "Patron content" included. See the bottom of the description.
Hello! game has been running smoothly both mobile and pc version. I do have one problem though, I've been following the wiki for Ino's route and I can't seem to get the third version of "touch your breasts" even with +11 lust, is that a bug or am I doing something wrong?
Third scene opens if you have more than 11 lust. Like 12+
You need to watch the second scene with 12+ lust then third scene unlocks.
thanks for the answer. Apparently, I had to progress a bit more in some other quests somehow? I already had the lust at 21 but couldn't get the third version after doing some other quests
That should be it. The only requirement is 12+ lust.
You can fix it by using console in cheats. Enter:
Then "exit" to close console
Alright, I'll keep that in mind for my next playthrough!
I bought this, and it says patreon version, but I can't find the patreon code
You don't need a Patron code for Itch version. Every Patron mod that has been released before the update already build in in to the game.
it doesn't let me add the Mikasa mod though
It was released after the update.
It will be included in the next itch version update (Same date as public release)
ok thanks
Hey Creator can you add the kushina mod in the mods so I can install it plss I just want to have fun with kushina
Hello. Kushina mod is a third-party mod. We don't have access to it
Ohh that's sad but I try another way tkx for the feedback
I bought the patron version but can't find the mod for gallery unlock
Gallery unlock mod is a free mod. So it's not packed with the game.
To download it, open Main menu - Mods - Official - Gallery Unlocker
Is the new update out now I think it's the 24 I think if it's out tell me guys I can't wait the story is so good keep it up men 👍
I've bought and downloaded the Patron version so how do I get the patron code??
Hello. You don't need a Patron code for Itch version. Every Patron mod that has been released before the update already build in in to the game.
How do I access the cheats menu?
And a lot of stuff in game and in the menu is still not in English
Are there scenes of Hinata's transformation other than with Naruto and Watch boobs and masturbating?
Nope
bro make new scences in next update 💀
please add kushina
Good game
how do i update the game without messing up my data
do you have the most update of wiki? i think i got lost in my playthroughh
Free version moved here: https://dinaki.itch.io/naruto-kunoichi-trainer-free-version
how do i update the game
You can copy "saves" folder to the new version.
For pc "saves" folder should be here "KT/game/saves".
is there any scene with hinata's transformation?
Hi, how do i start hanabi mod?
idk really. it's a third party mod. try to find some building that was not active in the main game.
So, I start a new game and I can't access the jutsu menu and also don't have the ability to focus Chakra or train new jutsu, what should I do
Get the scroll in the school. Right door.
Thank you, I'll give that a try
cant belive we still havent stolen Hinata or Sakura away
Привет, будут ли новые техники? Если да, то это будет только ниндзюцу или ещё и гендзюцу и тайдзюцу? И что там с темой, что главный герой хотел обучиться мягким техникам? Планируется ли развитие боевой системы?
Новые техники будут. Какие именно - будет зависеть от сюжета.
Боёвку будем развивать, но потом, сейчас не в приоритете. Как показал опрос, многие просто пропускают мини-игру с боёвкой, поэтому пока сосредоточимся на сюжете/сценах.
Hello it says that I have to save tenten from arena, but how am I supposed to do that? Whenever I go to arena nothing happens (I have there another quest in arena but it says that in future update) and how should I persuade sakura to train with me, I have trust with her like 70 but still no new options to do with her :/ and then temari quest says that I have to talk to Hokage but when I go there nothing triggers...someone know what to do?
Hello. Check our wiki for walkthrough
https://wiki.kunoichi-trainer.ninja/doku.php?id=walkthrough
Hi,
I have the same problems. The end of war celebration doesn't haven. It is like 20 or more days after second date with Sakura.
Arena is also stuck. Is there a way to manually trigger the end of war celebration? Or reset Arena quest?
To start celebration open Cheats - Console and enter
it doesnt work for me, do you know what should i do
My game doesn't open anymore i tried Reinstalling it but it still didn't work
Hi. I bought the game here in Itch.io but cannot download the Mikasa mod
same
Hi, i've just downloaded the game. The dialogs is in english but for some reason on menu some things are in russian or something. In special training as well, how do i change it?
Looks like a bug. We'll check it out.
Are you going to continue Sakura exhibitionist route or is it over there?
We will continue it but right now we are focused on other characters and events.
hello dinaki just a question, are you goin to continue the mikasa futa route?
Maybe in the future. Not our main priority right now.