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