summaryrefslogtreecommitdiff
path: root/world/map/npc/items/rubber_duck.txt
blob: 9f873e1c1e10d06ea2abbe24e7297316af2f5054 (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 405;
    set @lastbat, gettimetick(2);
    goto L_Return;

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