rathena/npc/sample/npc_testchkoption.txt
amber d479e29aee Fixed some file types
git-svn-id: https://svn.code.sf.net/p/rathena/svn/athena@172 54d463be-8e91-2dee-dedb-b68131a5f0ec
2004-11-14 16:18:26 +00:00

15 lines
261 B
Plaintext

prontera.gat,156,89,6 script test_chkoption 117,{
mes "Please enter a value of type!";
input @value;
if(checkoption(@value) == 1) goto L1;
if(checkoption(@value) == 0) goto L0;
end;
L1:
mes "True!";
close;
end;
L0:
mes "False!";
close;
end;
}