Connection ErrorBad RequestThis page went staleSession ExpiredSign in requiredForbiddenNot FoundToo Many RequestsServer ErrorBad GatewayService UnavailableGateway TimeoutHTTP Version Not Supported
Session Expired
Your session has expired. Please log in to continue.
Sign in required
You need an account to do that. Sign in or create one — it only takes a minute.
This page went stale
Your security token was rejected, usually because the page sat open too long or you signed in elsewhere. Nothing was saved. Reload the page and try again.
Request Failed
We encountered an issue while processing your request.
Please check your internet connection and try again.
And how do you determine the hero who activated all this and will receive the reward in the final function?
TalkBox is for the player, so the hero's name isn't involved in it. But if it's called when entering a building or interacting with a creature, then all three touch triggers pass the hero's name; you can remember it and use it later.
GetAttackerCreatures returns the creatures on the attacking side... but how exactly do you use this to refer to a specific stack?
local units = GetAttackerCreatures(); for i, unit in units do local unit_id = GetCreatureType(unit); -- you can also get the number of creatures, coordinates, etc. using the unit name. end