1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
prontera.gat,156,183,0 script NPCtimer�e�X�g::npctimerX0000 116,{
mes "�^�C�}�[�l" + getnpctimer(0);
mes "�^�C�}�[���" + getnpctimer(1,"npctimerX0000");
mes "�C�x���g��" + getnpctimer(2);
menu "������",L_INIT,"��~",L_STOP,"�ĊJ",L_START,"�ݒ�",L_SET;
close;
L_INIT:
initnpctimer;
close;
L_STOP:
stopnpctimer;
close;
L_START:
startnpctimer;
close;
L_SET:
input @temp;
setnpctimer @temp;
close;
OnTimer1000:
announce "1�b�o��",0;
end;
OnTimer5000:
announce "5�b�o��",0;
end;
OnTimer10000:
announce "10�b�o��",0;
end;
}
|