Files
NGECore2/scripts/radial/tunable.py
T
CharonInferar 118d622c6d More Junk, Krayt Pearls added
The System has been more generalized, but also deals with special cases
of Krayt Pearls/Power Crystals.
More itemscripts created
2014-04-09 21:16:28 +02: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