laugh I managed to get a Script working with an item.

Behold-

Before
[Linked Image]

After (Book was added to inventory due to consuming the Potion)
[Linked Image]


And here is the Item Script that I attached to my Potion's RootTemplate-

Code
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

Last edited by Rhidian; 23/07/14 09:15 PM.