You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
631 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;
}