• 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 --->

requst: warp plugin code (1 Viewer)

africh75

Member
Joined
May 30, 2005
RedCents
could someone please post the code (and offsets) for a working warp? I like compiling my own stuff hehe
 
Yeah, but /zone won't work of course... I don't think I had to make any other changes to that plug. Since /zone is dead, you don't even have to update the offset. It should work as-is.

-CodeCaster
 
codecaster said:
Yeah, but /zone won't work of course... I don't think I had to make any other changes to that plug. Since /zone is dead, you don't even have to update the offset. It should work as-is.

-CodeCaster

hehe, oh ya thats right it should work as is........ :rolleyes:
 
ompiling...
MQ2Rwarp.cpp
C:\M2\MQ2Rwarp\MQ2Rwarp.cpp(729) : error C2039: 'SafeYLoc' : is not a member of '_ZONEINFO'
C:\M2\MQ2Rwarp\../MQ2Main/EQData.h(1240) : see declaration of '_ZONEINFO'
C:\M2\MQ2Rwarp\MQ2Rwarp.cpp(730) : error C2039: 'SafeXLoc' : is not a member of '_ZONEINFO'
C:\M2\MQ2Rwarp\../MQ2Main/EQData.h(1240) : see declaration of '_ZONEINFO'
C:\M2\MQ2Rwarp\MQ2Rwarp.cpp(731) : error C2039: 'SafeZLoc' : is not a member of '_ZONEINFO'
C:\M2\MQ2Rwarp\../MQ2Main/EQData.h(1240) : see declaration of '_ZONEINFO'
C:\M2\MQ2Rwarp\MQ2Rwarp.cpp(733) : error C2039: 'SafeYLoc' : is not a member of '_ZONEINFO'
C:\M2\MQ2Rwarp\../MQ2Main/EQData.h(1240) : see declaration of '_ZONEINFO'
C:\M2\MQ2Rwarp\MQ2Rwarp.cpp(734) : error C2039: 'SafeXLoc' : is not a member of '_ZONEINFO'
C:\M2\MQ2Rwarp\../MQ2Main/EQData.h(1240) : see declaration of '_ZONEINFO'
C:\M2\MQ2Rwarp\MQ2Rwarp.cpp(735) : error C2039: 'SafeZLoc' : is not a member of '_ZONEINFO'
C:\M2\MQ2Rwarp\../MQ2Main/EQData.h(1240) : see declaration of '_ZONEINFO'
C:\M2\MQ2Rwarp\MQ2Rwarp.cpp(738) : error C2039: 'SafeYLoc' : is not a member of '_ZONEINFO'
C:\M2\MQ2Rwarp\../MQ2Main/EQData.h(1240) : see declaration of '_ZONEINFO'
C:\M2\MQ2Rwarp\MQ2Rwarp.cpp(738) : error C2039: 'SafeXLoc' : is not a member of '_ZONEINFO'
C:\M2\MQ2Rwarp\../MQ2Main/EQData.h(1240) : see declaration of '_ZONEINFO'
C:\M2\MQ2Rwarp\MQ2Rwarp.cpp(738) : error C2039: 'SafeZLoc' : is not a member of '_ZONEINFO'
C:\M2\MQ2Rwarp\../MQ2Main/EQData.h(1240) : see declaration of '_ZONEINFO'
C:\M2\MQ2Rwarp\MQ2Rwarp.cpp(744) : error C2039: 'SafeYLoc' : is not a member of '_ZONEINFO'
C:\M2\MQ2Rwarp\../MQ2Main/EQData.h(1240) : see declaration of '_ZONEINFO'
C:\M2\MQ2Rwarp\MQ2Rwarp.cpp(745) : error C2039: 'SafeXLoc' : is not a member of '_ZONEINFO'
C:\M2\MQ2Rwarp\../MQ2Main/EQData.h(1240) : see declaration of '_ZONEINFO'
C:\M2\MQ2Rwarp\MQ2Rwarp.cpp(746) : error C2039: 'SafeZLoc' : is not a member of '_ZONEINFO'
C:\M2\MQ2Rwarp\../MQ2Main/EQData.h(1240) : see declaration of '_ZONEINFO'
Error executing cl.exe.

MQ2Rwarp.dll - 12 error(s), 0 warning(s)

?
do you still have to do this? cant find it
//////////////////////////////////////////////
eqdata.h and replace
/*0x1ec*/ FLOAT Unknown0x1ec[3];

with

/*0x1ec*/ FLOAT SafeYLoc;
/*0x1f0*/ FLOAT SafeXLoc;
/*0x1f4*/ FLOAT SafeZLoc;
//////////////////////////////////////////////
 
Actually.... The source that he is using has the #undefs at the top of the code, so he shouldn't have to change all those new #define 0's...

The thing is, SafeYLoc *IS* in fact a member of ZONEINFO. I think the only way the compiler would be giving him this message is if it couldn't find the MQ2Plugin.h to include or something of that nature.

-CodeCaster
 
requst: warp plugin code

Users who are viewing this thread

Back
Top