summaryrefslogtreecommitdiff
path: root/world/map/npc/items/rubber_bat.txt
blob: 9eb3725dcdb7c21121eacd3ef7ce600a65697ae5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
function|script|rubberBat
{
    if (gettimetick(2) - @lastbat < 2) goto L_Return;
    misceffect 403;
    set @lastbat, gettimetick(2);
    goto L_Return;

L_Return:
    getitem "RubberBat", 1;
    debugmes "Check";
    if ($DOOMSDAY == 3)
        addtimer 10, "#TMWFinalExam::OnRubberBat";
    return;
}