getequipid.txt 576 B

123456789101112131415
  1. //===== rAthena Script =======================================
  2. //= Sample: Getequipid
  3. //===== By: ==================================================
  4. //= rAthena Dev Team
  5. //===== Last Updated: ========================================
  6. //= 20170702
  7. //===== Description: =========================================
  8. //= Demonstrates the 'getequipid' command.
  9. //============================================================
  10. prontera,161,181,6 script getequipid sample 105,{
  11. for (.@i = EQI_ACC_L; .@i < EQI_MAX; .@i++)
  12. mes "getequipid(" + .@i + ") : " + getequipid(.@i);
  13. close;
  14. }