~ 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
» Songs of Silence (HoMM like game)
[Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0" Icon_minitimeby Blake01 2024-03-27, 16:52

» Heroes Orchestra's 5th Birthday concerts with Paul Romero
[Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0" Icon_minitimeby rrravyn 2024-03-23, 22:45

» 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 Sir Albe 2024-03-22, 07:15

» fheroes2 General Announcements
[Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0" Icon_minitimeby sirDranik 2024-03-17, 23:35

» Photo Gallery
[Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0" Icon_minitimeby Sir Albe 2024-03-07, 06:57

» Polskie powitanie
[Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0" Icon_minitimeby rrravyn 2024-03-05, 04:02

» Heroes II localisation: how to make no-CD patch.
[Ironfist ver 1.3.0] Bug in lua scripts with IDs "CREATURE_PEASANT" or "0" Icon_minitimeby kiku 2024-02-19, 02:43

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
Forum Admins Feed
The Floody Land
Enrothian Fan Art
Heroes III: The Succession Wars v0.8.1 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 : 778
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 : 288
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 : 778
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 : 778
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.2] Ironfist Editor - Where is my mouse?
» [Ironfist ver 1.3.0] What is the best compatibility setting for ironfist.exe?
» Ironfist 1.3.0
» [Ironfist 1.3.0+] Another bug with SetNumGuildSpells()
» [Ironfist ver 1.2] Last Stand map

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: