~ Forums of Enroth ~
Would you like to react to this message? Create an account in a few clicks or log in to continue.

~ Forums of Enroth ~

The Enroth diehard fan community
 
HomeHome  Latest imagesLatest images  SearchSearch  RegisterRegister  Log inLog in  
Latest topics
» Fanstratics
[Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0" Icon_minitimeby Blake01 2024-10-06, 04:19

» Nowy silnik do Heroes 1?
[Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0" Icon_minitimeby Baronus 2024-10-05, 05:36

» Polskie powitanie
[Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0" Icon_minitimeby zaisty 2024-10-04, 13:20

» [H3SW v0.8.2] Desert Isle
[Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0" Icon_minitimeby Sir Albe 2024-10-02, 03:03

» New Heroes of Might and Magic!
[Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0" Icon_minitimeby Blake01 2024-09-28, 00:54

» Silence of the Siren (HoMM like scifi game)
[Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0" Icon_minitimeby Blake01 2024-09-27, 23:41

» WARNING - The dreaded moment is here: Heroes 6 servers shutting down
[Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0" Icon_minitimeby Blake01 2024-09-22, 18:51

Poll
Global announcements should be:
Everlasting, 1 for each project.
[Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0" Redbar110%[Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0" Redbar12
 0% [ 0 ]
Temporary, when there is something new to announce.
[Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0" Redbar11100%[Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0" Redbar12
 100% [ 6 ]
Holalala... No idea where the Ultimate artifact is.
[Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0" Redbar110%[Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0" Redbar12
 0% [ 0 ]
Total Votes : 6
Most Viewed Topics
H3SW: General Graphics discussion
Ragoon's Graphics For HoMM3SW
Introduce yourself
H3SW General Discussion
H3SW Map List: Work in progress
H3SW: Dwelling Development
The Floody Land
Forum Admins Feed
Enrothian Fan Art
Heroes III: The Succession Wars v0.8.2 Beta

 

 [Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0"

Go down 
3 posters
AuthorMessage
Unknown_Hero
Mage
Mage
Unknown_Hero


Messages : 780
Quality Points : 78
Registration Date : 2015-09-06

[Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0" Empty
PostSubject: [Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0"   [Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0" Icon_minitime2018-10-07, 23:02

The creature IDs "CREATURE_PEASANT" or "0" do not work in scripts.

This does not work:

Code:
hero = GetCurrentHero();
if HasTroop(hero, CREATURE_PEASANT, 1) == true then
  numberPeasant = GetCreatureAmount(hero, CREATURE_PEASANT);
  MessageBox("The hero has "..numberPeasant.." Peasants.");
end;

This does not work:

Code:
hero = GetCurrentHero();
if HasTroop(hero, 0, 1) == true then
  numberPeasant = GetCreatureAmount(hero, 0);
  MessageBox("The hero has "..numberPeasant.." Peasants.");
end;

This works:

Code:
hero = GetCurrentHero();
if HasTroop(hero, CREATURE_ARCHER, 1) == true then
  numberArcher = GetCreatureAmount(hero, CREATURE_ARCHER);
  MessageBox("The hero has "..numberArcher.." Archers.");
end;

This works:

Code:
hero = GetCurrentHero();
if HasTroop(hero, 1, 1) == true then
  numberArcher = GetCreatureAmount(hero, 1);
  MessageBox("The hero has "..numberArcher.." Archers.");
end;

Why so much hate towards peasants? Razz
Back to top Go down
Darmani
Master Modder
Master Modder
Darmani


Messages : 289
Quality Points : 47
Registration Date : 2014-12-27

[Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0" Empty
PostSubject: Re: [Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0"   [Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0" Icon_minitime2018-10-12, 17:32

Good catch. Already spotted the bug; will be fixed shortly.
Back to top Go down
Unknown_Hero
Mage
Mage
Unknown_Hero


Messages : 780
Quality Points : 78
Registration Date : 2015-09-06

[Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0" Empty
PostSubject: Re: [Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0"   [Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0" Icon_minitime2018-10-13, 04:48

Thanks. Very Happy
Back to top Go down
XT3RM1N8R
Gargoyle
Gargoyle
XT3RM1N8R


Messages : 23
Quality Points : 1
Registration Date : 2016-11-06
Age : 27
Location : USA

[Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0" Empty
PostSubject: Bug Fixed   [Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0" Icon_minitime2018-10-16, 16:56

Thanks for letting us know! This bug has been fixed!

________________________
Lazy Signature
Back to top Go down
Unknown_Hero
Mage
Mage
Unknown_Hero


Messages : 780
Quality Points : 78
Registration Date : 2015-09-06

[Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0" Empty
PostSubject: Re: [Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0"   [Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0" Icon_minitime2018-10-16, 23:35

Thanks, it works well with the latest version of October 16, 2018. Very Happy
Back to top Go down
Sponsored content





[Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0" Empty
PostSubject: Re: [Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0"   [Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0" Icon_minitime

Back to top Go down
 
[Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0"
Back to top 
Page 1 of 1
 Similar topics
-
» [Ironfist ver 1.3.0] What is the best compatibility setting for ironfist.exe?
» [Ironfist ver 1.2] Ironfist Editor - Where is my mouse?
» Ironfist 1.3.0
» [Ironfist 1.3.0+] Another bug with SetNumGuildSpells()
» Stability of ironfist.exe ver 0.8.4

Permissions in this forum:You cannot reply to topics in this forum
~ Forums of Enroth ~ :: Modding Guild :: Heroes of Might and Magic II: Project Ironfist :: Bug Reports-
Jump to: