mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-31 01:15:57 -04:00
Rare loot system stage in effect for every loot session. Added legendary,exceptional,rare loot chests
13 lines
365 B
Python
13 lines
365 B
Python
from resources.common import RadialOptions
|
|
import sys
|
|
|
|
def createRadial(core, owner, target, radials):
|
|
radials.add(RadialOptions(0, 21, 1, 'Open'))
|
|
radials.add(RadialOptions(0, 7, 1, ''))
|
|
return
|
|
|
|
def handleSelection(core, owner, target, option):
|
|
if option == 21 and target:
|
|
owner.sendSystemMessage('RLS chest content system not yet implemented.',1)
|
|
return
|
|
|