Instead of this:
local area = createCombatArea(AREA_SQUARE1X1)
setCombatArea(combat, area)
Use this:
local area = createCombatArea({
{0, 0, 0, 0, 0},
{0, 1, 1, 1, 0},
{0, 1, 3, 1, 0},
{0, 1, 1, 1, 0},
{0, 0, 0, 0, 0}
})
setCombatArea(combat, area)
Number 3 is a center. If you wont use effect...