blob: d35c7d4c31bd2ae05c8bb985ff25020a0119c7cd (
plain) (
tree)
|
|
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;
}
|