summaryrefslogblamecommitdiff
path: root/npc/functions/shops.txt
blob: d5dabca7db1a46d182c816c40c71bd2b5535fe15 (plain) (tree)
1
2
3
4
5
6
7
8
9
10


                  
               


                             
                                      

                                         
                                    








                                              

           
// Evol functions.
// Author:
//    4144
//    Jesusalva
// Description:
//    Shops utility functions
// Variables:
//    Item ID, Item Price, Item Amount

function	script	restoreshopitem	{
    if (getarg(2, -1337) == -1337) {
        .@amount=getarg(1);
        .@price=-1;
    } else {
        .@amount=getarg(2);
        .@price=getarg(1);
    }

    if (shopcount(getarg(0)) < .@amount)
        sellitem getarg(0), .@price, .@amount;
    return;
}