Femic
First time out of the vault

Hi all,
if you open ACKLINT.SSL located in the BIS Mapper scripts you'll see this:
If you scroll a bit down you'll see this:
If you hover over TEAM_ARROYO and AI_ARROYO_WARRIOR in the Sfall script editor you'll see that they are defined in the files teams.h and AIPacket.h.
But they aren't included into ACKLINT.SSL.
Why aren't they included and how is it nevertheless possible to use TEAM_ARROYO and AI_ARROYO_WARRIOR?
if you open ACKLINT.SSL located in the BIS Mapper scripts you'll see this:
Code:
#include "..\headers\define.h"
//#include "..\headers\<TownName.h>"
#define NAME SCRIPT_ACKLINT
#define TOWN_REP_VAR (GVAR_TOWN_REP_ARROYO)
#include "..\headers\command.h"
#include "..\headers\ModReact.h"
If you scroll a bit down you'll see this:
Code:
procedure map_enter_p_proc begin
variable pole;
Only_Once:=0;
critter_add_trait(self_obj,TRAIT_OBJECT,OBJECT_TEAM_NUM,TEAM_ARROYO);
critter_add_trait(self_obj,TRAIT_OBJECT,OBJECT_AI_PACKET,AI_ARROYO_WARRIOR);
if ((tile_contains_obj_pid(21303,0,PID_TEMPLE_SKULL_POLE)) and (global_var(GVAR_START_ARROYO_TRIAL) != 0)) then begin
pole:=tile_contains_pid_obj(21303,0,PID_TEMPLE_SKULL_POLE);
move_to(pole,19698,0);
end
end
If you hover over TEAM_ARROYO and AI_ARROYO_WARRIOR in the Sfall script editor you'll see that they are defined in the files teams.h and AIPacket.h.
But they aren't included into ACKLINT.SSL.
Why aren't they included and how is it nevertheless possible to use TEAM_ARROYO and AI_ARROYO_WARRIOR?