rathena/doc/sample/checkoption.txt
Euphy 2fff785894 Modernized syntax and fixed errors in the sample scripts. (Hercules 21fa090)
Signed-off-by: Euphy <euphy.raliel@rathena.org>
2014-02-08 16:34:26 -05:00

19 lines
630 B
Plaintext

//===== rAthena Script =======================================
//= Sample: Checkoption
//===== By: ==================================================
//= rAthena Dev Team
//===== Last Updated: ========================================
//= 20140208
//===== 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;
}