10 lines
419 B
Python
10 lines
419 B
Python
from net.swordie.ms.enums import InvType
|
|
|
|
sm.setSpeakerID(9062004)
|
|
if sm.getExpandableSlots(InvType.INSTALL) <= 0:
|
|
sm.sendSayOkay("You have already maxed your slots.")
|
|
sm.dispose()
|
|
if (sm.sendAskYesNo("#rYou may add up to " + str(sm.getExpandableSlots(InvType.INSTALL)) +
|
|
" slots to your inventory, would you like to continue?")):
|
|
sm.addInventorySlotsByInvType(8, 3)
|
|
sm.consumeItem() |