summaryrefslogblamecommitdiff
path: root/world/map/npc/items/require_stat.txt
blob: ad975e24add724235595a5203420feb9ee41ede5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                                                               




                                                                          


                                                               
                             
 
                                     

                                                            

                                 
 
// ------------------------------------------------------------
// Variables passed to this script:
//  @slotId   The slot in which the item would have been equipped in.
//            This is passed automagically when called in an equip script.
//  @bStat    The stat to check against.
//            Usually one of: bStr, bAgi, bVit, bInt, bDex, bLuk;
//            but can be anything that works with readparam().
//  @minbStatVal The minimum stat value to accept this item.
// ------------------------------------------------------------

function|script|RequireStat|,
{
    set @bStatVal, readparam(@bStat);
    // If the requirement isn't met, then we end the script.
    // Hence, subsequent item modifiers won't be applied.
    if (@bStatVal < @minbStatVal)
        end;
}