
* Replaced "Current Version" field with "Last Updated" when a date is provided. * Added Magic Candy (12596) and Spark Candy (14586) to Renewal item_delay database. Signed-off-by: Euphy <euphy.raliel@rathena.org>
17 lines
621 B
Plaintext
17 lines
621 B
Plaintext
//===== rAthena Script =======================================
|
|
//= Sample: Checkoption
|
|
//===== By: ==================================================
|
|
//= rAthena Dev Team
|
|
//===== Last Updated: ========================================
|
|
//= 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;
|
|
} |