Files
NGECore2/scripts/radial/item/tunable.py
T
2014-04-13 21:46:51 +01:00

16 lines
467 B
Python

from resources.common import RadialOptions
import sys
def createRadial(core, owner, target, radials):
radials.clear()
radials.add(RadialOptions(0, 7, 0, 'Examine'))
radials.add(RadialOptions(0, 15, 0, 'Destroy'))
radials.add(RadialOptions(0, 19, 0, 'Tune'))
return
def handleSelection(core, owner, target, option):
if option == 19 and target:
if owner is not None:
owner.sendSystemMessage('You are not attuned enough with the force yet.',1)
return