getequipid.txt 595 B

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