rathena/doc/sample/getequipid.txt
euphyy d2d9897606 * Standardization of doc\sample\ folder.
* Deleted doc\sample\PCLoginEvent.txt, which contained outdated information.
* Follow-up r16812, fixed file encoding.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@16813 54d463be-8e91-2dee-dedb-b68131a5f0ec
2012-10-03 23:13:33 +00:00

16 lines
595 B
Plaintext

//===== rAthena Script =======================================
//= Sample: Getequipid
//===== By: ==================================================
//= rAthena Dev Team
//===== Current Version: =====================================
//= 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;
}