
* Replaced "Current Version" field with "Last Updated" when a date is provided. * Added Magic Candy (12596) and Spark Candy (14586) to Renewal item_delay database. Signed-off-by: Euphy <euphy.raliel@rathena.org>
16 lines
595 B
Plaintext
16 lines
595 B
Plaintext
//===== 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;
|
|
} |