Valjean83 2 Posted May 21, 2017 hey all. Need some help with using a shovel item. at one point in the adventure, the hero receives a shovel. It can be used in two areas. Im sure I have to use a common event, but was having difficulty. I do not want to use the action button to trigger the event. I need the player to select the shovel from their inventory in order to dig. When they are standing on a correct spot and use the shovel, I want it to say "You dig into the dirt... "and found an item!" In all other areas of the world, I want it to say: "You dig into the dirt... "but find nothing!" thanks for reading this and hope you can help! Share this post Link to post Share on other sites
lonequeso 1,921 Posted May 22, 2017 Yes, you will need a Common Event to run when the shovel is used. Create a conditional branch with this: $game_player.x == $game_map.events[x].x && $game_player.y == $game_map.events[x].y "You dig into the dirt... "and found an item!" Replace the x in the brackets with the Event ID. Then under else copy and past the conditional and change the ID to the second dig spot. Under that else add the text: "You dig into the dirt... "but find nothing!" Share this post Link to post Share on other sites
Valjean83 2 Posted May 22, 2017 thank you so much! 1 Share this post Link to post Share on other sites