Guten Nachmittag
C
- // 1) Search:
- if (pAttacker && IsStone() && pAttacker->IsPC())
- {
- if (GetEmpire() && GetEmpire() == pAttacker->GetEmpire())
- {
- SendDamagePacket(pAttacker, 0, DAMAGE_BLOCK);
- return false;
- }
- }
- // 2) Before this make a new line and paste:
- #ifdef __MELEY_LAIR_DUNGEON__
- if (pAttacker)
- {
- if ((GetRaceNum() == (WORD)(MeleyLair::STATUE_VNUM)) && (MeleyLair::CMgr::instance().IsMeleyMap(pAttacker->GetMapIndex())) && (!MeleyLair::CMgr::instance().Damage(this, pAttacker->GetGuild())))
- {
- SendDamagePacket(pAttacker, 0, DAMAGE_BLOCK);
- return false;
- }
- else if ((GetRaceNum() == (WORD)(MeleyLair::BOSS_VNUM)) && (MeleyLair::CMgr::instance().IsMeleyMap(pAttacker->GetMapIndex())))
- {
- SendDamagePacket(pAttacker, 0, DAMAGE_BLOCK);
- return false;
- }
- }
- #endif
Bei mir Existiert diese Zeile aber nicht die ich Suchen sollte jemand ne Ahnung wo ichs sonst hin klatschen könnte?