Browse Source

git-svn-id: https://svn.code.sf.net/p/rathena/svn/athena@295 54d463be-8e91-2dee-dedb-b68131a5f0ec

mc_cameri 20 năm trước cách đây
mục cha
commit
79324826fd
3 tập tin đã thay đổi với 52 bổ sung1 xóa
  1. 1 1
      src/map/atcommand.c
  2. 50 0
      src/map/charcommand.c
  3. 1 0
      src/map/charcommand.h

+ 1 - 1
src/map/atcommand.c

@@ -1103,7 +1103,7 @@ int atcommand_jumpto(
 	char character[100];
 	char output[200];
 	struct map_session_data *pl_sd = NULL;
-	
+
 	nullpo_retr(-1, sd);
 
 	if (!message || !*message || sscanf(message, "%99[^\n]", character) < 1) {

+ 50 - 0
src/map/charcommand.c

@@ -379,3 +379,53 @@ int charcommand_petrename(
 
 	return 0;
 }
+
+
+/*==========================================
+ * 
+ *------------------------------------------
+ */
+int charcommand_petfriendly(
+	const int fd, struct map_session_data* sd,
+	const char* command, const char* message)
+{
+	int friendly = 0;
+	int t = 0;
+
+	if (!message || !*message || (friendly = atoi(message)) < 0) {
+		clif_displaymessage(fd, "Please, enter a valid value (usage: "
+			"#petfriendly <0-1000> <player>).");
+		return 0;
+	}
+
+	if (sd->status.pet_id > 0 && sd->pd) {
+		if (friendly >= 0 && friendly <= 1000) {
+			if (friendly != sd->pet.intimate) {
+				t = sd->pet.intimate;
+				sd->pet.intimate = friendly;
+				clif_send_petstatus(sd);
+				if (battle_config.pet_status_support) {
+					if ((sd->pet.intimate > 0 && t <= 0) ||
+					    (sd->pet.intimate <= 0 && t > 0)) {
+						if (sd->bl.prev != NULL)
+							pc_calcstatus(sd, 0);
+						else
+							pc_calcstatus(sd, 2);
+					}
+				}
+				clif_displaymessage(fd, msg_table[182]); // Pet friendly value changed!
+			} else {
+				clif_displaymessage(fd, msg_table[183]); // Pet friendly is already the good value.
+				return -1;
+			}
+		} else {
+			clif_displaymessage(fd, msg_table[37]); // An invalid number was specified.
+			return -1;
+		}
+	} else {
+		clif_displaymessage(fd, msg_table[184]); // Sorry, but you have no pet.
+		return -1;
+	}
+
+	return 0;
+}

+ 1 - 0
src/map/charcommand.h

@@ -5,6 +5,7 @@ enum CharCommandType {
 	CharCommand_None = -1,
 	CharCommandJobChange,
 	CharCommandPetRename,
+	CharCommandPetFriendly,
 
 #ifdef TXT_ONLY
 /* TXT_ONLY */