HomeUser Control Panel (unavailable in archive)ForumsTutorialsArt GalleryResourcesMaps

Item Help PLZ :D

04-30-2005, 01:07 AM#1
arachnos
I hope this post is in the right forum..... anyway i was wonderin if anyone knows how to make it so an item carrried gives the hero an increase in stat....

Not a stat bonus so that it appears in green.....but like u know if u consume a tome of strength +2 per say ..ur strength goes up 2 but its not shown in green. How would i accomplish the same efffect but only when the person is wielding an item......anyone know?? ive seen it done before so i know it can be done im jus not sure how.

ANy suggestions would help thnx :D
04-30-2005, 02:36 AM#2
Guest
Code:
Stat boost
    Events
        Unit - A unit Acquires an item
    Conditions
        (Item-type of (Item being manipulated)) Equal to Claws of Attack +15
    Actions
        Hero - Modify Strength of (Triggering unit): Add 10

Then...

Code:
Stat reset
    Events
        Unit - A unit Loses an item
    Conditions
        (Item-type of (Item being manipulated)) Equal to Claws of Attack +15
    Actions
        Hero - Modify Strength of (Triggering unit): Subtract 10

Replace item type to whatever your item is, and replace 10 by whatever you want.
04-30-2005, 03:21 AM#3
arachnos
K Thnx :d