mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
26 lines
672 B
C++
Executable File
26 lines
672 B
C++
Executable File
#include "../client.h"
|
|
|
|
void command_disarmtrap(Client *c, const Seperator *sep)
|
|
{
|
|
Mob *target = c->GetTarget();
|
|
|
|
if (!target) {
|
|
c->Message(Chat::Red, "You must have a target.");
|
|
return;
|
|
}
|
|
|
|
if (target->IsNPC()) {
|
|
if (c->HasSkill(EQ::skills::SkillDisarmTraps)) {
|
|
if (DistanceSquaredNoZ(c->GetPosition(), target->GetPosition()) > RuleI(Adventure, LDoNTrapDistanceUse)) {
|
|
c->Message(Chat::Red, "%s is too far away.", target->GetCleanName());
|
|
return;
|
|
}
|
|
c->HandleLDoNDisarm(target->CastToNPC(), c->GetSkill(EQ::skills::SkillDisarmTraps), LDoNTypeMechanical);
|
|
}
|
|
else {
|
|
c->Message(Chat::Red, "You do not have the disarm trap skill.");
|
|
}
|
|
}
|
|
}
|
|
|