Skip to content

Scripts for beginners.

#234
Auto-translated
Good afternoon! Colleagues, could you suggest a script for the following event: When entering a region, a battle begins with 6 Crystal Dragons. I created something like this (see below), but it doesn't work. ``` function Def( heroname ) if heroname == hero then StartCombat(hero,nil,1,CREATURE_CRYSTAL_DRAGON,6,nil,nil,nil,nil); Trigger( REGION_ENTER_AND_STOP_TRIGGER, "def", nil ); end; end; Trigger( REGION_ENTER_AND_STOP_TRIGGER, "def", "Def" );