
I managed to get a Script working with an item.
Behold-
Before
![[Linked Image]](http://i.imgur.com/fckFbgq.jpg)
After (Book was added to inventory due to consuming the Potion)
![[Linked Image]](http://i.imgur.com/I3DL5Jy.jpg)
And here is the Item Script that I attached to my Potion's RootTemplate-
INIT
ITEM:__Me
EVENTS
EVENT RhidianItem
VARS
CHARACTER:_Char
ON
OnUseItem(_Char, __Me)
ACTIONS
CombatLogText(_Char,"Hello World", 0, 2)
CharacterAddToInventory (_Char, "SKILLBOOK_AbilityPoint")
The CombatLogText command didn't do anything, but the adding to inventory command most definitely had an effect.
Edit:
Updated first post