mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-09 22:20:24 +00:00
Some quest item and spell work, took out that stupid multiquesting code -> use your brains that's completely doable entirely in quests even perl
This commit is contained in:
@@ -444,8 +444,6 @@ int command_init(void) {
|
||||
command_add("picklock", "Analog for ldon pick lock for the newer clients since we still don't have it working.", 0, command_picklock) ||
|
||||
command_add("mysql", "Mysql CLI, see 'help' for options.", 250, command_mysql) ||
|
||||
command_add("xtargets", "Show your targets Extended Targets and optionally set how many xtargets they can have.", 250, command_xtargets) ||
|
||||
command_add("printquestitems","Returns available quest items for multiquesting currently on the target npc.",200,command_printquestitems) ||
|
||||
command_add("clearquestitems","Clears quest items for multiquesting currently on the target npc.",200,command_clearquestitems) ||
|
||||
command_add("zopp", "Troubleshooting command - Sends a fake item packet to you. No server reference is created.", 250, command_zopp) ||
|
||||
command_add("augmentitem", "Force augments an item. Must have the augment item window open.", 250, command_augmentitem)
|
||||
)
|
||||
@@ -11374,35 +11372,6 @@ void command_xtargets(Client *c, const Seperator *sep)
|
||||
t->ShowXTargets(c);
|
||||
}
|
||||
|
||||
void command_printquestitems(Client *c, const Seperator *sep)
|
||||
{
|
||||
if (c->GetTarget() != 0)
|
||||
{
|
||||
if ( c->GetTarget()->IsNPC() )
|
||||
c->GetTarget()->CastToNPC()->PrintOutQuestItems(c);
|
||||
else
|
||||
c->Message(13,"Pick a NPC target.");
|
||||
}
|
||||
else
|
||||
c->Message(13,"Pick a NPC target.");
|
||||
}
|
||||
|
||||
void command_clearquestitems(Client *c, const Seperator *sep)
|
||||
{
|
||||
if (c->GetTarget() != 0)
|
||||
{
|
||||
if ( c->GetTarget()->IsNPC() )
|
||||
{
|
||||
c->GetTarget()->CastToNPC()->ClearQuestLists();
|
||||
c->Message(5,"Quest item list cleared.");
|
||||
}
|
||||
else
|
||||
c->Message(13,"Pick a NPC target.");
|
||||
}
|
||||
else
|
||||
c->Message(13,"Pick a NPC target.");
|
||||
}
|
||||
|
||||
void command_zopp(Client *c, const Seperator *sep)
|
||||
{ // - Owner only command..non-targetable to eliminate malicious or mischievious activities.
|
||||
if (!c)
|
||||
|
||||
Reference in New Issue
Block a user