18 lines
448 B
C++
18 lines
448 B
C++
![]() |
#include "backend/command.hpp"
|
||
|
#include "natives.hpp"
|
||
|
#include "util/teleport.hpp"
|
||
|
|
||
|
namespace big
|
||
|
{
|
||
|
class teleport_to_objective : command
|
||
|
{
|
||
|
using command::command;
|
||
|
|
||
|
virtual void execute(const std::vector<std::uint64_t>&, const std::shared_ptr<command_context> ctx)
|
||
|
{
|
||
|
teleport::to_objective();
|
||
|
}
|
||
|
};
|
||
|
|
||
|
teleport_to_objective g_teleport_to_objective("objectivetp", "Teleport To Objective", "Teleports you to your mission objective", 0);
|
||
|
}
|