Files
NGECore2/scripts/radial/structure/moveable.py
T
Seefo 51a9239889 Fixed several housing issues, see extended
Fixed an issue where players who weren't admins could access the
structure management terminal

Fixed an issue a person requesting the housing status page would see
their own name as the owner even if they weren't

Fixed an issue where the object service would encounter an error when
attempting to view child objects via an attachment

Added getFirstName and getLastName methods to the CreatureObject class

Possibly fixed an issue where items that were moveable would be picked
up via double-clicking
2014-06-11 18:41:14 -04:00

25 lines
697 B
Python

from resources.common import RadialOptions
import sys
def createRadial(core, owner, target, radials):
radials.add(RadialOptions(0, 7, 1, ''))
radials.add(RadialOptions(0, 11, 1, ''))
radials.add(RadialOptions(0, 55, 0, ''))
radials.add(RadialOptions(3, 56, 1, ''))
radials.add(RadialOptions(3, 57, 1, ''))
radials.add(RadialOptions(3, 58, 1, ''))
radials.add(RadialOptions(3, 59, 1, ''))
radials.add(RadialOptions(0, 52, 0, ''))
radials.add(RadialOptions(4, 53, 1, ''))
radials.add(RadialOptions(4, 54, 1, ''))
return
def handleSelection(core, owner, target, option):
if option == 56:
core.commandService.callCommand(owner, 'movefurniture', target, 'forward 10')
return