blob: 77c0a3105964f68f113d5c3878f514b69bdacafb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//===== Hercules Script =======================================
//= Sample: Checkoption
//===== By: ==================================================
//= Hercules Dev Team
//===== Current Version: =====================================
//= 20131225
//===== Description: =========================================
//= Demonstrates the 'checkoption' command.
//============================================================
prontera,156,89,6 script test_checkoption 4_F_KAFRA1,{
mes "Please enter a value of type!";
input .@value;
if(checkoption(.@value) == 1)
mes "True!";
else if(checkoption(.@value) == 0)
mes "False!";
close;
}
|