checkoption.txt 631 B

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