Total War: WARHAMMER III

Total War: WARHAMMER III

Bad Legendary Characters - Legendary Lords / Legendary Heroes
805 kommentarer
jenosite  [ophavsmand] 7. nov. kl. 20:14 
@SgtSAVAGE
What do you mean tiny?
SgtSAVAGE 7. nov. kl. 19:44 
are the orks still tiny?
Buffalo 5. nov. kl. 7:25 
Need an updated SFO submod someone please :wh::chug:
jenosite  [ophavsmand] 27. okt. kl. 11:20 
@ArepotenetoperA
That sub mod wasn't made by me. So there's nothing I can do even if you explain it to me. And play the campaign and check it again. Maybe "the hunger" for ghouls doesn't exist.
ArepotenetoperA 27. okt. kl. 11:12 
Hey hey! I loaded up the Ushoran faction and it still has "the hunger" for ghouls and crypt ghouls in his army as an ability listed, even though they have it as a tech. Not a big deal either way, Just wanted to let you know! Is there anywhere I can take a look at their skill trees ?
ChopChop 27. okt. kl. 10:56 
Thank you for the quick fix and updating the mod :WH3_clasp: I have tested now after mod update together with Cataph's Kraka Drak and Porkenstein's Malakain Start position change and i confirm that everything works perfect and as intended. Thank you for your work Jenosite, amazing stuff :TalismanCrown:
jenosite  [ophavsmand] 27. okt. kl. 9:21 
@ChopChop
I fixed it. Thank you for letting me know. If you have any other issues, please let me know again.
ChopChop 27. okt. kl. 0:35 
Hello Jenosite, a friendly user let me know that they discovered an incompatibility that appeared recently as it wasnt the case before. I already let know Porkenstein, but something happened between the lines that his mod is no longer comaptible with your mod: "Malakai Makaisson in Karak Dum - Start Position Change" https://steamcommunity.yuanyoumao.com/sharedfiles/filedetails/?id=3236424832 :steamthumbsup:
ArepotenetoperA 26. okt. kl. 13:19 
Thank you for the quick response!
jenosite  [ophavsmand] 26. okt. kl. 12:35 
@ArepotenetoperA
I understand. But that is out of date. So don't worry.
ArepotenetoperA 26. okt. kl. 12:00 
It says on the submod that lets you start as him that he gives ghouls "The Hunger" as a faction effect. But thats already possible through a Technology, sorry if that info is out of date!
jenosite  [ophavsmand] 25. okt. kl. 3:00 
@ArepotenetoperA
I don't know what you're talking about. Are you talking about giving himself hunger?
ArepotenetoperA 24. okt. kl. 14:43 
why does ushoran give the hunger when they have a tech that does it already?
jenosite  [ophavsmand] 24. okt. kl. 12:06 
@PAGODA
제 모드 구독 해제했다가 다시 구독한 다음 테스트해보시겠어요? 그리고 혹시 MCT가 같이 켜져있는 건 아니죠? 그렇다면 MCT옵션을 확인해주세요.
PAGODA 24. okt. kl. 11:04 
I’m playing on version 6.3.3, and I only enabled this mod and the Korean translation mod, but there’s no change in the Immortal Empires campaign. Is there another mod that needs to be enabled with it? Why isn’t there any effect from the mod?
Gaz 21. okt. kl. 1:17 
Infanta Leanora Navrre's sail looks a bit clean, is there any way you could give it a dirtier more torn texture to fit in with other vamp coast vibes?
RazorChain 15. okt. kl. 17:16 
@VORACtheRED You do realize that there is a whole mod called the Skaven Clans that are full of skaven....both lords, heroes and playable factions.
VORACtheRED 13. okt. kl. 16:41 
@jenosite any chance you're working on one for skaven legendary lords and heroes? this mod is really good but just no skaven
jenosite  [ophavsmand] 11. okt. kl. 2:31 
@PenisHuman
All right. Keep it up.
PenisHuman 11. okt. kl. 1:45 
@jenosite I'm making/made a Submod that adds the Lord Hero Swap mechanic to your Lords. So Lord Hero Swap and this mod will be requirements.
jenosite  [ophavsmand] 11. okt. kl. 1:09 
@PenisHuman
As long as your mod has my mod as a required items, that's fine. What mod are you going to make?
PenisHuman 11. okt. kl. 0:28 
@jenosite Hey, is it ok for me to make a Submod for this?
Exarquz 10. okt. kl. 7:06 
@jenosite Looks good to me. I dont get the error when loading my saved game where i got the error before and when i start a new game with noctilus the agent is spawned into his army.
jenosite  [ophavsmand] 9. okt. kl. 11:31 
@Exarquz
Thank you for your kind explanation. I fixed it as you told me, can you check if the problem has been solved?
Exarquz 9. okt. kl. 11:06 
I think the error message comes if you have elimited noctilus. The script "script/campaign/mod/bad_legend_agent12_il_potente_granchio.lua"
tries to get his current army with the line "local force = faction:faction_leader():military_force()"

If noctilus dosnt exist when the script runs then it fails.

the change i made checks if he dosnt exist or if he dosnt have an army and then just dosnt run the rest of the script instead of failing.

all you have to do is to replace the line "local force = faction:faction_leader():military_force()"

in the "script/campaign/mod/bad_legend_agent12_il_potente_granchio.lua" with this part:

"local leader = faction and faction:faction_leader()

if not leader or leader:is_null_interface() then
return -- Exit early if leader doesn't exist
end

local force = leader:military_force()
if not force or force:is_null_interface() then
return -- Exit early if force doesn't exist
end"
jenosite  [ophavsmand] 9. okt. kl. 9:20 
@Exarquz
Sorry I don't know scripts very well so please explain more about what I should do. And even now, there should be no problem with gameplay itself. And where do you get the error message?
Exarquz 9. okt. kl. 8:12 
@jenosite im still getting the error that @bstar mentioned.

Maybe this will fix the error from occuring:

local faction = cm:get_faction("wh2_dlc11_cst_noctilus")
local leader = faction and faction:faction_leader()

if not leader or leader:is_null_interface() then
return -- Exit early if leader doesn't exist
end

local force = leader:military_force()
if not force or force:is_null_interface() then
return -- Exit early if force doesn't exist
end
REITERPALLASCH 7. okt. kl. 12:52 
Thank you bro great work on the mod
jenosite  [ophavsmand] 6. okt. kl. 21:40 
@REITERPALLASCH
That I didn't notice means a very minor update that you don't have to know. I made some modifications to the modeling of one of the characters.
REITERPALLASCH 6. okt. kl. 12:14 
What did the last update do? Doesn't say anything in the change notes.
jenosite  [ophavsmand] 5. okt. kl. 12:54 
@darthrandy1
Maybe mod conflict would have been resolved. But please ask the mod creator to delete the part related to 'merovech'.

@bstar
Maybe it's fixed. It won't interfere with gameplay anyway.
bstar 5. okt. kl. 5:52 
Hi there, love the mod!

After the latest update, I'm getting a script error message for:

"[ string/"script/campaign/mod/bad_legend_agent12_il_potente_granchio.lua/" ]
darthrandy1 4. okt. kl. 20:26 
Better Alliance - Foreign Heroes this is the mod that causes the bug
jenosite  [ophavsmand] 3. okt. kl. 0:45 
@darthrandy1
Let me know when you find out what mod is causing the crash.
darthrandy1 2. okt. kl. 15:13 
no that didnt fix it either, it only happens on the campaign map
jenosite  [ophavsmand] 1. okt. kl. 0:16 
@darthrandy1
Maybe mod conflict would have been resolved. Check it out.
darthrandy1 30. sep. kl. 22:07 
it might be a conflict with one of my other mods
jenosite  [ophavsmand] 30. sep. kl. 21:37 
@darthrandy1
Whant do you mean? He is wight king.
darthrandy1 30. sep. kl. 21:01 
is estroth the silent supposed to be a vampire with a wight kings voice
jenosite  [ophavsmand] 26. sep. kl. 21:50 
@XHAlpha
Test with only my mod. Still have problem?
XHAlpha 26. sep. kl. 18:53 
Kiknik's mount currently needs a point to unlock
jenosite  [ophavsmand] 26. sep. kl. 8:03 
@Leon'Ardog
AI can recruit them, too. If he's with two factions, one faction randomly recruited him. There are no plans to add quests.
Leon'Ardog 26. sep. kl. 5:51 
Mod looks fantastic! I'd just ask can the AI recruit them, if so what about the ones with 2 factions? and do you plan on adding quests or objectives for recruiting them?
드로우달스 24. sep. kl. 23:47 
실바니아 신캐 퇴근후 해보갰습니다.
신규 업뎃 감사합니다.
XHAlpha 22. sep. kl. 22:14 
Alright that makes a lot of sense, Gitilla is disabled and I was looking for a different name. Thanks for the help!
jenosite  [ophavsmand] 22. sep. kl. 20:54 
@XHAlpha
In the game file, it's named Gittila da hunter. And if play the game with only my mod, it still doesn't spawn? If it doesn't, try checking MCT options. Still have problam deleting my and re-sub it.
XHAlpha 22. sep. kl. 15:02 
Kiknik Toofsnatcha seems to be bugged, he's not in the mod manager mod files, and he doesn't spawn when playing as Azhag or with console commands
jenosite  [ophavsmand] 21. sep. kl. 9:52 
@스퍼스진혁
직접 상대하게 되시면 추가된 애들 때문에 빡세실 수 있을 것 같은데, 판도 자체에는 제 모드가 끼치는 영향이 크지 않습니다.
스퍼스진혁 21. sep. kl. 9:41 
선생님 모드 정말 잘 쓰고있습니다.

혹시 믹수모드 없이 바닐라로 이 모드 적용하면 악세력 판도가 너무 유리해질까요??
jenosite  [ophavsmand] 20. sep. kl. 21:24 
@XHAlpha
Thank you for report. I fix it now.