SphereCommunity
Scrolls not stacking properly? - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: General Help (/Forum-General-Help)
+--- Thread: Scrolls not stacking properly? (/Thread-Scrolls-not-stacking-properly)

Pages: 1 2


RE: Scrolls not stacking properly? - Anarch Cassius - 04-30-2012 06:37 AM

Said another way, the scrolls don't stack because they are not the same. They are at different casting levels. Make the MOREY one static value and delete any existing scrolls and they will be the same.


RE: Scrolls not stacking properly? - Shaklaban - 04-30-2012 06:46 AM

(04-29-2012 11:07 PM)Reflex Wrote:  For some reason my scrolls don't want to stack even though they are exactly the same? For example If I create a scroll .add i_Scroll_harm then i_scroll_harm again.. They wont stack? I'm confused here.. ;p

Code:
[ITEMDEF 01f38]
DEFNAME=i_scroll_harm
RESOURCES=i_scroll_blank, i_reag_nightshade, i_reag_spider_silk
SKILLMAKE=INSCRIPTION 20.0, MAGERY 10.0
TYPE=T_SCROLL
WEIGHT=1
//CIRCLE=2
CATEGORY=Provisions - Alchemy & Magic
SUBSECTION=Scrolls - 2nd Circle
DESCRIPTION=Harm Scroll

ON=@Create
    ATTR=ATTR_MAGIC
    MOREX=s_harm
    MOREY={20 60}

Scrolls crafted with different inscription levels are have different moreys, even you modify the morey under @create, inscription skill will change the morey. You can modify the inscription skill or use @skillmakeitem for the handle scrolls.


RE: Scrolls not stacking properly? - RanXerox - 04-30-2012 07:41 AM

The Wiki has this to say about th scroll type:

Quote:t_scroll 32 This type is used for scrolls. It leverages the following properties:

MOREX = ID of the spell to cast when double-clicked
MOREY = Power of the spell (equivalent to the EFFECT setting of the spell itself?)

Kinda sounds like speculation... now I would like to hear from a developer on the actual implementation of MOREY :-)


RE: Scrolls not stacking properly? - ShiryuX - 04-30-2012 07:58 AM

It's the spell level Tongue


RE: Scrolls not stacking properly? - Reflex - 04-30-2012 11:03 AM

Here was the fix, if for example the MOREY={50 70} we just made it MOREY=60 the average so each scroll is created with a set morey instead of using ranges so that way all scrolls become stackable.

Code:
[ITEMDEF 01f3e]
DEFNAME=i_scroll_fireball
RESOURCES=i_scroll_blank, i_reag_black_pearl, i_reag_sulfur_ash
SKILLMAKE=INSCRIPTION 30.0, MAGERY 20.0
TYPE=T_SCROLL
WEIGHT=1
//CIRCLE=3
CATEGORY=Provisions - Alchemy & Magic
SUBSECTION=Scrolls - 3rd Circle
DESCRIPTION=Fireball Scroll

ON=@Create
    ATTR=ATTR_MAGIC
    MOREX=s_fireball
    MOREY=50



RE: Scrolls not stacking properly? - Khaos - 05-01-2012 11:23 AM

Spell level is inaccurate ShiryuX. Smile. I know what you meant though.

It is the magery value of the scroll. IE the strength of magery that affects the scrolls. High magery yields better effects Smile