rathena/doc/sample/getequipid.txt
Euphy 2fff785894 Modernized syntax and fixed errors in the sample scripts. (Hercules 21fa090)
Signed-off-by: Euphy <euphy.raliel@rathena.org>
2014-02-08 16:34:26 -05:00

15 lines
562 B
Plaintext

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