|
@@ -8169,6 +8169,17 @@ int atcommand_feelreset(const int fd, struct map_session_data* sd, const char* c
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+/*==========================================
|
|
|
|
+ * AUCTION SYSTEM
|
|
|
|
+ *------------------------------------------*/
|
|
|
|
+int atcommand_auction(const int fd, struct map_session_data *sd, const char *command, const char *message)
|
|
|
|
+{
|
|
|
|
+ nullpo_retr(0,sd);
|
|
|
|
+
|
|
|
|
+ clif_Auction_openwindow(sd);
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
/*==========================================
|
|
/*==========================================
|
|
* Kill Steal Protection
|
|
* Kill Steal Protection
|
|
*------------------------------------------*/
|
|
*------------------------------------------*/
|
|
@@ -8509,6 +8520,7 @@ AtCommandInfo atcommand_info[] = {
|
|
{ "homshuffle", 60, atcommand_homshuffle },
|
|
{ "homshuffle", 60, atcommand_homshuffle },
|
|
{ "showmobs", 10, atcommand_showmobs },
|
|
{ "showmobs", 10, atcommand_showmobs },
|
|
{ "feelreset", 10, atcommand_feelreset },
|
|
{ "feelreset", 10, atcommand_feelreset },
|
|
|
|
+ { "auction", 60, atcommand_auction },
|
|
{ "mail", 1, atcommand_mail },
|
|
{ "mail", 1, atcommand_mail },
|
|
{ "noks", 0, atcommand_ksprotection },
|
|
{ "noks", 0, atcommand_ksprotection },
|
|
{ "allowks", 6, atcommand_allowks },
|
|
{ "allowks", 6, atcommand_allowks },
|