Added more information for atcommand refine (#7803)

This commit is contained in:
Atemo 2023-06-08 14:01:43 +02:00 committed by GitHub
parent 5b832de199
commit 38d335a267
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 26 additions and 0 deletions

View File

@ -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

View File

@ -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
---------------------------------------

View File

@ -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;
}