12345678910111213141516 |
- //===== rAthena Script =======================================
- //= Sample: Getequipid
- //===== By: ==================================================
- //= rAthena Dev Team
- //===== Last Updated: ========================================
- //= 20121003
- //===== Description: =========================================
- //= Demonstrates the 'getequipid' command.
- //============================================================
- prontera,161,181,6 script GetEquipID Sample 105,{
- mes "[GetEquipID Sample]";
- for(set .@i,1; .@i<11; set .@i,.@i+1)
- mes "GetEquipID(" + .@i + ") : " + getequipid(1);
- close;
- }
|