blob: 0af9b2d36f1321bb28ee2fae34deaf5136b0f1c3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//===== rAthena Script =======================================
//= Sample: Checkoption
//===== By: ==================================================
//= rAthena 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;
}
|