Ocassionally having CTDs when i open the map (only when I press hotkey and before the window is drawn), but only on my cleric. Yes, using a clean, latest-zip build. Same build works fine on other characters I've logged in. Crashes don't happen always, about 1 in 10-15 openings of the map. It's a CTD...
Off the top of my head it's something along the lines of: char szTemp[MAX_STRING]; if (psTarget) { sprintf(szTemp, "Target location: %f %f %f", psTarget->x, psTarget->y, psTarget->z); WriteChatColor(szTemp, USERCOLOR_DEFAULT); } else { WriteChatColor("No Target!", USERCOLOR_DEFAU...
In MQ2MacroCommands.cpp Line 709 replace: if ((Arg1[0]==0) || (Arg2[0]==0) || ((!strnicmp(Arg1,"down",strlen(Arg1))) && (!strnicmp(Arg1,"up",strlen(Arg1))))) { with if ((Arg1[0]==0) || (Arg2[0]==0) || (strnicmp(Arg1,"down",strlen(Arg1)) && strnicmp(Arg1,...
The reason the above macro doesn't work currently is $char(gem,) and I believe $spell() cause client crashes. Or at least they do with my build, I need to update CVS and see if there's been a fix made.
When you Alt-Click a memorized gem or a spell icon in the book it will show something like: Spell: Translocate Cobalt Scar Skill: Alteration Mana Cost 35 Normal Cast Time: 4.5 [b]Your Cast Time: 3.8[/b] Spell Effect: Covers you in resistant skin that proects you from poison and disease The Your Cast...
To an extent any form of targetting (innate to EQ at least) transmits something to/from the server. One of the SEQ options allows you to set it to highlight your target (happens automatically, so there must be some info about your switch of targets in the network transfers) The question is if the da...
/delay $Delay
should work, but bad form to use function names as variable names in general. but the idea is good to use a define or variable to make it easy to adjust throughout the script
It's still very much in a concept phase, so far the only things iI've got done is basically move to target (see above), part of the KiteRun (runs away from mob till it reaches an optimal distance), an almost tuned routine to keep it still while a spell casts (which recognises fizzles and doesn't wai...
I have a druid auto-kite script I'm working on, started it based on grimjack's auto-hunter here: http://macroquest2.com/phpBB2/viewtopic.php?t=2313&sid=ad75d4519e77cf72ccbb08674708ae64 Pasting the bits related to movement / obstacle avoidance. #define MyXLOC v23 #define MyYLOC v24 #define RunSta...
Well, I'm no expert on linux and the mechanics of copiling/linking, but since it uses the Detours libary from M$ and needs to make a Windows executable I don't think it would generate anything useful under Linux.
As far as compiler I believe you need VC6, VC.net (VC7) or VS 2003
? Because it won't work. The code is outdated and the offsets are outdated. Even if you get it to start it will be useless and might even potentially get you banned.