cmd_emotion.cpp içinde, // Ara ACMD(do_emotion) { // Altına Ekle bool bAttacking = (get_dword_time() - ch->GetLastAttackTime()) < 750; bool bMoving = (get_dword_time() - ch->GetLastMoveTime()) < 750; // Ara if (ch->IsRiding()) { ch->ChatPacket(CHAT_TYPE_INFO, LC_TEXT("말을 탄 상태에서 감정표현을 할 수 없습니다.")); return; } // Altına Ekle if (bAttacking || bMoving) { ch->ChatPacket(CHAT_TYPE_INFO, LC_TEXT("Duyguları kullanmak için hareketsiz durmalısın.")); return; }