• You've discovered RedGuides 📕 an EverQuest multi-boxing community 🛡️🧙🗡️. We want you to play several EQ characters at once, come join us and say hello! 👋
  • IS THIS SITE UGLY? Change the look. To dismiss this notice, click the X --->

instacamp plugin (1 Viewer)

kaneda86

New member
Joined
Aug 12, 2005
RedCents
anyone have the instacamp plugin compiled i could get? or a link to a place if its already posted would be awesome
 
Do you have/know where I could find the source? I can't find it here or on the mq boards. If you post it I'll compile it.

(btw what ever happened to /keypress instant_camp? That went out a while ago didn't it? Or does it still work?)
 
Not sure really, afaik all it does is tell the client to skip past the 30 seconds you would normally wait. Really dunno how risky it would be, doesn't seem it would be.
 
Here's the plugin code... shamelessly ripped from another site only for the purpose of helping a fellow MQ2'er.

Rich (BB code):
#include "../MQ2Plugin.h"

VOID InstaCamp(PSPAWNINFO pSpawn,PCHAR szLine)
{
   send_message(EQADDR_GWORLD,0x1A64,0,0,1);
}

PLUGIN_API VOID InitializePlugin(VOID)
{
   AddCommand("/fastcamp",InstaCamp);
}

PLUGIN_API VOID ShutdownPlugin(VOID)
{
   RemoveCommand("/fastcamp");
}

Not sure what good it is given that /keypress still works... *shrug*

-CodeCaster
 
For the lazy! Ghetto instacamp!

Rich (BB code):
#include "../MQ2Plugin.h"

VOID InstaCamp(PSPAWNINFO pSpawn,PCHAR szLine)
{
   DoCommand(GetCharInfo()->pSpawn, "/keypress instant_camp");
}

PLUGIN_API VOID InitializePlugin(VOID)
{
   AddCommand("/instacamp",InstaCamp);
}

PLUGIN_API VOID ShutdownPlugin(VOID)
{
   RemoveCommand("/instacamp");
}
 
instacamp plugin

Users who are viewing this thread

Back
Top