Added more information for atcommand refine (#7803)
This commit is contained in:
parent
5b832de199
commit
38d335a267
@ -1799,5 +1799,13 @@
|
||||
1519: Please enter a position and an amount (usage: @grade <equip position> <+/- amount>).
|
||||
1520: %d items have been graded.
|
||||
|
||||
// @refine
|
||||
1521: %d: Shadow Armor
|
||||
1522: %d: Shadow Weapon
|
||||
1523: %d: Shadow Shield
|
||||
1524: %d: Shadow Shoes
|
||||
1525: %d: Shadow Right Accessory
|
||||
1526: %d: Shadow Left Accessory
|
||||
|
||||
//Custom translations
|
||||
import: conf/msg_conf/import/map_msg_eng_conf.txt
|
||||
|
@ -726,6 +726,12 @@ Refines an equipped item by the specified amount.
|
||||
128: Right Accessory
|
||||
256: Top Headgear
|
||||
512: Mid Headgear
|
||||
65536: Shadow Armor
|
||||
131072: Shadow Weapon
|
||||
262144: Shadow Shield
|
||||
524288: Shadow Shoes
|
||||
1048576: Shadow Right Accessory
|
||||
2097152: Shadow Left Accessory
|
||||
|
||||
---------------------------------------
|
||||
|
||||
|
@ -2382,6 +2382,18 @@ ACMD_FUNC(refine)
|
||||
clif_displaymessage(fd, atcmd_output);
|
||||
sprintf(atcmd_output, msg_txt(sd,1006), EQP_HEAD_MID); // %d: Mid Headgear
|
||||
clif_displaymessage(fd, atcmd_output);
|
||||
sprintf(atcmd_output, msg_txt(sd,1521), EQP_SHADOW_ARMOR); // %d: Shadow Armor
|
||||
clif_displaymessage(fd, atcmd_output);
|
||||
sprintf(atcmd_output, msg_txt(sd,1522), EQP_SHADOW_WEAPON); // %d: Shadow Weapon
|
||||
clif_displaymessage(fd, atcmd_output);
|
||||
sprintf(atcmd_output, msg_txt(sd,1523), EQP_SHADOW_SHIELD); // %d: Shadow Shield
|
||||
clif_displaymessage(fd, atcmd_output);
|
||||
sprintf(atcmd_output, msg_txt(sd,1524), EQP_SHADOW_SHOES); // %d: Shadow Shoes
|
||||
clif_displaymessage(fd, atcmd_output);
|
||||
sprintf(atcmd_output, msg_txt(sd,1525), EQP_SHADOW_ACC_R); // %d: Shadow Right Accessory
|
||||
clif_displaymessage(fd, atcmd_output);
|
||||
sprintf(atcmd_output, msg_txt(sd,1526), EQP_SHADOW_ACC_L); // %d: Shadow Left Accessory
|
||||
clif_displaymessage(fd, atcmd_output);
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user