RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
[RMXP] Combining Two Items to make Animation - 'Setting Drink on Fire'

0 Members and 1 Guest are viewing this topic.

**
Rep:
Level 67
TheNeonHeart.com
check this video for setup

http://youtu.be/hLox0ia8HDU

you get matches and a bottle of whiskey

and then... you combine the matches and the drink to make a fire.

but I don't know how to do that...?
And if you stare for long enough into the abyss... you just might stare it down.

My Games: ExXception Draft
My Awesome Homepage The Neon Heart.com Host to My Writing / Music / Reviews / and More

*
A-pow 2015
Rep:
Level 81
2014 Best RPG Maker User - GraphicsFor frequently finding and reporting spam and spam bots2013 Most Unsung MemberSecret Santa 2013 ParticipantFor taking arms in the name of your breakfast.How can I help you? :Da^2 + b^2 = c^2Secret Santa 2012 ParticipantSilver - GIAW 10Silver - GIAW 9Bronze - GIAW HalloweenGold - Game In A Week VII
Do you want it to be able to be combined anywhere, or just during one specific event?
There are several alchemy scripts that will allow you to combine items to create other items.

If it's for one event, you can use conditional branches in that event to check if the player has each item necessary. If both conditions are met, remove each item and go forward with the event (lighting the drink on fire and distracting him).

It should look something like

Conditional branch: Matches in inventory
       Conditional branch: alcohol in inventory

           remove item: matches
           remove item: alcohol

          (whatever you want to put for the actual event, like dialog, an animation, ect.)

        Else
           (the player says something like "I still need alcohol!)

        branch end
   Else

  (still need matches)
branch end