Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

How do you check the event position in the parallel event? For what you described, I think you use: $gameMap.event(eventId).pos(x, y)...

This is a default call to check event position on map and can be used for push/pull event, but not pickup event.

To check where a pickup event as landed, use: $gamePlayer.hasThrownEvent(eventId, x, y)


The example above will reset player and event position whenever player has thrown the event 8 at position x26, y19.

Ah yes i was using a position check, the call you have shwon works much better and eliminates the chance of a crash :) 


Thanks alot :)