checkoption.txt 621 B

1234567891011121314151617
  1. //===== rAthena Script =======================================
  2. //= Sample: Checkoption
  3. //===== By: ==================================================
  4. //= rAthena Dev Team
  5. //===== Last Updated: ========================================
  6. //= 20070315
  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) mes "True!";
  14. else if(checkoption(@value) == 0) mes "False!";
  15. close;
  16. }