Fulqrum Publishing Home   |   Register   |   Today Posts   |   Members   |   UserCP   |   Calendar   |   Search   |   FAQ

Go Back   Official Fulqrum Publishing forum > Fulqrum Publishing > King's Bounty > King`s Bounty: Warriors of the North

King`s Bounty: Warriors of the North Next game in the award-winning King’s Bounty series

Reply
 
Thread Tools Display Modes
  #1  
Old 11-28-2012, 05:01 PM
LegendMaker LegendMaker is offline
Approved Member
 
Join Date: Nov 2012
Posts: 20
Default

@camelotcrusade: My last few contributions to this thread seem to have been simply ignored, they were neither added, nor discussed... Any particular reason for that, or is it just an omission?

To recap:

- All active battlefield objects are now immortal, unless a melee unit attacks them directly (no range, spell, rage or area effect can damage them).

- Catacombs in Verlon Wastelands stay open after quest completion, trapping the player forever if he enters it again.

- The Ice Wall (from rage skill "Ice Blades") also returns range and indirect damage, not just melee, despite its description saying "if attacked by melee, the ice wall returns __% of the damage it suffers." Either a bug or a very misleading description.

- Regina's Messenger animation takes at least twice longer to complete than any other Valkyrie's.

Using game started on day 1 (Oct 26th), but playing build 6249. Vanilla install. No add-ons or mods. Hope this helps (but if he doesn't, please let me know why). Thanks.
Reply With Quote
  #2  
Old 11-28-2012, 07:07 PM
Nirual Nirual is offline
Approved Member
 
Join Date: Nov 2012
Posts: 170
Default

Quote:
Originally Posted by LegendMaker View Post
- All active battlefield objects are now immortal, unless a melee unit attacks them directly (no range, spell, rage or area effect can damage them).
Ranged attacks seem to work fine for me, including abilities like Spear of Wrath.

Quote:
- Catacombs in Verlon Wastelands stay open after quest completion, trapping the player forever if he enters it again.
I went in after completing the quest and I could simply leave again.
Reply With Quote
  #3  
Old 11-29-2012, 02:42 PM
Youpiya Youpiya is offline
Approved Member
 
Join Date: Oct 2012
Posts: 40
Default

Butcher award count is bugging...
I try to lose my Phenix to be sure the count goes up. I did it regularly, I was about 7/25 or 8/25 and today I'm looking the count is 0/25...
Reply With Quote
  #4  
Old 11-29-2012, 06:28 PM
Youpiya Youpiya is offline
Approved Member
 
Join Date: Oct 2012
Posts: 40
Default

Quote:
Originally Posted by Youpiya View Post
Butcher award count is bugging...
I try to lose my Phenix to be sure the count goes up. I did it regularly, I was about 7/25 or 8/25 and today I'm looking the count is 0/25...
Pfff I understand why now : I play on 2 computers on Steam. The count of butcher award is not in the save file... So each time I pass the save file from one PC to another, the count restart to zero...
Wow, develop with hands, not with feet...
Reply With Quote
  #5  
Old 12-18-2012, 12:12 AM
Maximus Bukie Maximus Bukie is offline
Registered Member
 
Join Date: Nov 2012
Posts: 4
Default ****winged helmet bug****

I found A new Bug with the Winged Helmet. When you equip the helmet, its supposed to give you 2-3 Vikings after a battle. It actually says that it has given me vikings after my battles (usually 3 Skalds). But It never actually does give them to me. I still have the same number of skalds each time. Please Fix.
Reply With Quote
  #6  
Old 12-31-2012, 09:45 AM
messiahgov messiahgov is offline
Approved Member
 
Join Date: Dec 2012
Posts: 24
Default

Quote:
Originally Posted by Maximus Bukie View Post
I found A new Bug with the Winged Helmet. When you equip the helmet, its supposed to give you 2-3 Vikings after a battle. It actually says that it has given me vikings after my battles (usually 3 Skalds). But It never actually does give them to me. I still have the same number of skalds each time. Please Fix.
Yea it seem to have no special code for that:
Code:
addon2_helmet_winged_helmet {
  category=o
  image=heroitem_addon2_helmet_winged_helmet.png
  hint_config=object_item
  label=itm_addon2_helmet_winged_helmet_name
  hint=itm_addon2_helmet_winged_helmet_hint
  information_label=itm_addon2_helmet_winged_helmet_info
  maphint=
  mapinfo=
  price=18000
  maxcount=1
  level=3
  race=viking
  setref=set_valkyrie
  use {}
  mods {
    defense=count,2
    leadership=count,100
  }
  propbits=helmet
  params {}
}
Is there any other item, which has this "give troops" bonus (and it works), so it could be compared in any way?

EDIT: Another item with a equal function is "itm_addon2_regalia_orc_banner", but it looks the same, no special code for that. So it have to be in some other file (not just items.txt). Otherwise you wouldn't see any message at all.

EDIT2:
The right code can be found in "addon_arena.lua":

Code:
  if Logic.hero_lu_item_on_body("addon2_helmet_winged_helmet") then
    local data = { --[[Ïðåäìåò Êðûëàòûé Øëåì]]
      {n = "slinger_man",       minc = 3, maxc = 3, prob = 50},
      {n = "viking",            minc = 2, maxc = 3, prob = 40},
      {n = "skald",             minc = 3, maxc = 3, prob = 30}
    }
    table.insert(tab_verbovka, data)
  end
  if Logic.hero_lu_item_on_body("addon2_regalia_orc_banner") then
    local data = { --[[Ïðåäìåò Çíàìÿ Îðäû]]
      {n = "goblin",            minc = 3, maxc = 3, prob = 50},
      {n = "goblin2",           minc = 3, maxc = 3, prob = 50},
      {n = "orc",               minc = 2, maxc = 3, prob = 40},
      {n = "goblin_shaman",     minc = 2, maxc = 3, prob = 20},
      {n = "catapult",          minc = 3, maxc = 3, prob = 20}
    }
    table.insert(tab_verbovka, data)
  end

Last edited by messiahgov; 12-31-2012 at 09:56 AM.
Reply With Quote
  #7  
Old 03-09-2013, 04:24 PM
infael infael is offline
Approved Member
 
Join Date: Oct 2008
Posts: 19
Default

King Asvald doesn't see that I have Odin's flag. I upgraded from Horn of Odin banner to Odin's Flag. The flag doesn't identify as a quest item.
Reply With Quote
  #8  
Old 03-11-2013, 01:55 PM
Sneaksie Sneaksie is offline
Approved Member
 
Join Date: Mar 2008
Posts: 823
Default

Quote:
Originally Posted by infael View Post
King Asvald doesn't see that I have Odin's flag. I upgraded from Horn of Odin banner to Odin's Flag. The flag doesn't identify as a quest item.
I was told this is working as intended. The king wanted the original item, but you chose to upgrade it instead to use yourself. No big deal, this is an optional quest.
Reply With Quote
  #9  
Old 05-28-2013, 12:01 PM
Brian5dg Brian5dg is offline
Registered Member
 
Join Date: May 2013
Posts: 1
Default

This makes the skill a DETRIMENT to your character, and is a major flaw.
Reply With Quote
  #10  
Old 05-31-2014, 09:19 PM
Gloomshade Gloomshade is offline
Registered Member
 
Join Date: Mar 2011
Posts: 2
Default

Ice and Fire 1.2.1

It seems the Skaald Paean ability is still bugged. It tends to freeze the game when I use it. It casts the buffs that looks like a silver-blue set of wings then hangs until I reload last saved game.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 12:22 AM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright © 2007 Fulqrum Publishing. All rights reserved.