Назад

@emotion X (by Anarchist)

Автор: ZzAQ: Дата: 06.12.2008

Показывает эмотции без задержки. Номера: 1-63
Лезим в папку src\map\ открываем файл atcommand.c


ACMD_FUNC(emotion); // Anarchist


{ AtCommand_Emotion,      "@emotion",      1, atcommand_emotion }, // Anarchist


/*==========================================
* @emotion X by Anarchist
* => Displays the emotions without delay
*------------------------------------------
*/
int atcommand_emotion(
    const int fd, struct map_session_data* sd,
    const char* command, const char* message)
{
    if (!message || !*message) {
  clif_displaymessage(fd, "usage: @emotion 1-63");
  return -1;
    }
    clif_emotion(&sd->bl, atoi(message));
    return 0;
}


Открываем папку src\map\ редактируем файл atcommand.h

AtCommand_Emotion, // Anarchist

Автор: : Дата: 01.01.1970