rathena/doc/sample/getequipcardid.txt
Atemo ea88ea5054
Emoticons constant name (#2527)
This PR change the emoticons constant name to match emoticonlist from client side.
Note: the previous emoticons names are now deprecated.

Additionnally emotion and unitemote scripts commands are being merged together to the new format
-> emotion <emotion number>{,<target>};
Where target use the target Game ID (GID) of the unit (npc, pet, character etc..).

* unitemote is now deprecated.
* Additionnally fixed incorrect variable in quests_brasilis.txt

Thanks to @aleos89 and @Lemongrass3110 !
2017-11-10 18:35:21 +01:00

28 lines
960 B
Plaintext

//===== rAthena Script =======================================
//= Sample: Getequipcardid
//===== By: ==================================================
//= Lupus
//===== Last Updated: ========================================
//= 20170702
//===== Description: =========================================
//= Demonstrates the 'getequipcardid' command.
//============================================================
prontera,155,177,4 script Check My Hat 810,{
.@slot = EQI_HEAD_TOP;
mes "Checking your head...";
if (getequipisequiped(.@slot)) {
.@id = getequipid(.@slot);
.@ref = getequiprefinerycnt(.@slot);
mes "Your hat is... " + getitemname(.@id) + "...";
if (.@ref)
mes "It has been refined " + .@ref + " times.";
mes "Card Slot 0:" + getequipcardid(.@slot,0) + " 1:" + getequipcardid(.@slot,1);
mes "Card Slot 2:" + getequipcardid(.@slot,2) + " 3:" + getequipcardid(.@slot,3);
close;
}
mes "Nothing?";
emotion ET_SCRATCH;
close;
}