summaryrefslogtreecommitdiff
path: root/world/map/npc/items/rubber_duck.txt
blob: 3f591c15984c104959542612e015cdacc4f2d714 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
function|script|rubberDuck
{
    if (gettimetick(2) - @lastbat < 2) goto L_Return;
    misceffect 406;
    set @lastbat, gettimetick(2);
    goto L_Return;

L_Return:
    getitem "RubberDucky", 1;
    return;
}