TeachersPet
Well-known member
- Joined
- Jul 27, 2005
- RedCents
- 71¢
I was originally going to sell this to people but I kind of got bored of propositioning people.
How to trade no drop items on EQemu servers:
1) Compile MQ2Droppable (code is below)
2) Put the item you want to trade on your cursor
3) Type /droppable
4) Put the item in a bag
5) Trade that bag to another player
6) Donate to me either sexually or monetarily
How to trade no drop items on EQemu servers:
1) Compile MQ2Droppable (code is below)
2) Put the item you want to trade on your cursor
3) Type /droppable
4) Put the item in a bag
5) Trade that bag to another player
6) Donate to me either sexually or monetarily
Rich (BB code):
/*
MQ2Droppable
By: TeachersPet
Makes an Item droppable clientside
*/
#include "../MQ2Plugin.h"
PreSetup("MQ2Droppable");
VOID Droppable(PSPAWNINFO pChar, PCHAR szLine) {
GetCharInfo()->Cursor->Item->NoDrop = 1;
}
PLUGIN_API VOID InitializePlugin(VOID)
{
AddCommand("/droppable",Droppable);
}
PLUGIN_API VOID ShutdownPlugin(VOID)
{
RemoveCommand("/droppable");
}


