Dragonovith Posted November 21, 2016 Share Posted November 21, 2016 How can I create an item that, when clicked on, uses a console command? Let me give an example of what I need: - I created an item called "Radio", now every time I click on the "Radio" item inside my inventory, it uses the console command "stopquest [quest id]". How can I make such item? Link to comment Share on other sites More sharing options...
LoneRaptor Posted November 21, 2016 Share Posted November 21, 2016 (edited) You Create a potion named radio and a magic effect. then you make that potion apply the magic effect. on the magic effect add the following script : Quest Property TheQuestYouWantToStop Auto Event OnEffectStart(Actor akTarget, Actor akCaster) TheQuestYouWantToStop.Stop() endEvent Some more information on the fuctions used: OnEffectStart, Stop Edited November 21, 2016 by LoneRaptor Link to comment Share on other sites More sharing options...
Recommended Posts