mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-14 00:02:07 -04:00
The System has been more generalized, but also deals with special cases of Krayt Pearls/Power Crystals. More itemscripts created
16 lines
467 B
Python
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
|