Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Hello, the script call to check if an event was thrown at a specific spot is:

$gamePlayer.hasThrownEvent(eventId, x, y)


But if you want to 'play' the event when it reach the ground (anywhere), use the notetag: <pickup event: A>  where A is the id of the self switch of that event. So when that event reach the ground after being thrown, it turn it self switch A ON, and whatever happen on the new event page is up to you.

Hope that help.

(1 edit)

so..there is no way to use "this event" instead of event id? okay.

also, this didn't worked for me, sadly :( I used check condition $gamePlayer.hasThrownEvent(1, 16, 12) on position 16,12, and placed an event with ID1 on that spot and didn't worked. I have no idea why.

Edit: but I can manage this by <pickup event: A>, and conditions on that "A" page. Thanks!