~ 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.2.1+][Script System] OnUnitRecruit(creatureid) Icon_minitimeby Blake01 2024-03-27, 16:52

» Heroes Orchestra's 5th Birthday concerts with Paul Romero
[Ironfist ver 1.2.1+][Script System] OnUnitRecruit(creatureid) Icon_minitimeby rrravyn 2024-03-23, 22:45

» WARNING - The dreaded moment is here: Heroes 6 servers shutting down
[Ironfist ver 1.2.1+][Script System] OnUnitRecruit(creatureid) Icon_minitimeby Sir Albe 2024-03-22, 07:15

» fheroes2 General Announcements
[Ironfist ver 1.2.1+][Script System] OnUnitRecruit(creatureid) Icon_minitimeby sirDranik 2024-03-17, 23:35

» Photo Gallery
[Ironfist ver 1.2.1+][Script System] OnUnitRecruit(creatureid) Icon_minitimeby Sir Albe 2024-03-07, 06:57

» Polskie powitanie
[Ironfist ver 1.2.1+][Script System] OnUnitRecruit(creatureid) Icon_minitimeby rrravyn 2024-03-05, 04:02

» Heroes II localisation: how to make no-CD patch.
[Ironfist ver 1.2.1+][Script System] OnUnitRecruit(creatureid) Icon_minitimeby kiku 2024-02-19, 02:43

Poll
Global announcements should be:
Everlasting, 1 for each project.
[Ironfist ver 1.2.1+][Script System] OnUnitRecruit(creatureid) Redbar110%[Ironfist ver 1.2.1+][Script System] OnUnitRecruit(creatureid) Redbar12
 0% [ 0 ]
Temporary, when there is something new to announce.
[Ironfist ver 1.2.1+][Script System] OnUnitRecruit(creatureid) Redbar11100%[Ironfist ver 1.2.1+][Script System] OnUnitRecruit(creatureid) Redbar12
 100% [ 6 ]
Holalala... No idea where the Ultimate artifact is.
[Ironfist ver 1.2.1+][Script System] OnUnitRecruit(creatureid) Redbar110%[Ironfist ver 1.2.1+][Script System] OnUnitRecruit(creatureid) 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.2.1+][Script System] OnUnitRecruit(creatureid)

Go down 
AuthorMessage
Unknown_Hero
Mage
Mage
Unknown_Hero


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

[Ironfist ver 1.2.1+][Script System] OnUnitRecruit(creatureid) Empty
PostSubject: [Ironfist ver 1.2.1+][Script System] OnUnitRecruit(creatureid)   [Ironfist ver 1.2.1+][Script System] OnUnitRecruit(creatureid) Icon_minitime2017-03-09, 03:40

Tested with Ironifist version 1.2.1+ (version of December 15, 2016).

*

In the scenario "TestScri.mx2" (Massive Test of Project Ironfist Script System), I recruited creatures with this code:

BUG: With OnUnitRecruit(creatureid), whenever a creature is recruited regardless of the name of the creature specified, the instuction is executed (test in a town and at the Ruins).
And (creatureid) cannot be replaced by the number correspondence, per example, "OnUnitRecruit(CREATURE_RANGER)" cannot be replaced by "OnUnitRecruit(2)".

function OnUnitRecruit(CREATURE_RANGER)
 MessageBox("I see you at Ranger.");
end;
--< it does not work, whenever a creature is recruited regardless of the name of the creature specified, the instuction is executed and the message box is displayed (test in a town and at the Ruins).

function OnUnitRecruit(CREATURE_MEDUSA)
 MessageBox("I see you at Medusa.");
end;
--< it does not work, whenever a creature is recruited regardless of the name of the creature specified, the instuction is executed and the message box is displayed (test in a town and at the Ruins).

function OnUnitRecruit(2)
--< it does not work and a Script Error window is displayed.
 MessageBox("I see you at Ranger with 2.");
end;

***** Edited *****

Do not bother, the expression has to be written this way and everything works well: Razz

function OnUnitRecruit(creatureid)
 if creatureid == CREATURE_MEDUSA then
   MessageBox("I see you at Medusa.");
 elseif creatureid == CREATURE_RANGER then
   MessageBox("I see you at Ranger.");
 elseif creatureid == 0 then
   MessageBox("I see you at Peasant.");
 end
end;
Back to top Go down
 
[Ironfist ver 1.2.1+][Script System] OnUnitRecruit(creatureid)
Back to top 
Page 1 of 1
 Similar topics
-
» [Ironfist ver 1.2.1+][Script System] OnLocationVisit(type, x, y)
» Massive Test of Project Ironfist Script System
» [Script System] BuildInCurrentTown(building)
» [Script System][Suggestions] BattleGetCurrentTurn() and more
» [Script System][Suggestions] CancelShareVision(p1, p2)

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: