You can subscribe to this list here.
| 2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2006 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Drunkdwarf <dru...@us...> - 2006-04-22 02:21:19
|
Update of /cvsroot/mq2plugin/MQ2Targets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10959 Added Files: MQ2Targets.cpp MQ2Targets.dsp Log Message: Initial Add to project - 21 April 2006 - 1.13 --- NEW FILE: MQ2Targets.dsp --- # Microsoft Developer Studio Project File - Name="MQ2Targets" - Package Owner=<4> # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 CFG=MQ2Targets - Win32 Release !MESSAGE This is not a valid makefile. To build this project using NMAKE, !MESSAGE use the Export Makefile command and run !MESSAGE !MESSAGE NMAKE /f "MQ2Targets.mak". !MESSAGE !MESSAGE You can specify a configuration when running NMAKE !MESSAGE by defining the macro CFG on the command line. For example: !MESSAGE !MESSAGE NMAKE /f "MQ2Targets.mak" CFG="MQ2Targets - Win32 Release" !MESSAGE !MESSAGE Possible choices for configuration are: !MESSAGE !MESSAGE "MQ2Targets - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") !MESSAGE # Begin Project # PROP AllowPerConfigDependencies 0 # PROP Scc_ProjName "" # PROP Scc_LocalPath "" CPP=cl.exe MTL=midl.exe RSC=rc.exe # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 0 # PROP BASE Output_Dir "../Release" # PROP BASE Intermediate_Dir "Intermediate" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 # PROP Output_Dir "../Release" # PROP Intermediate_Dir "Intermediate" # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" # ADD BASE CPP /nologo /Zi /Zp1 /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "CINTERFACE" /YX /FD /c # ADD CPP /nologo /Zi /Zp1 /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "CINTERFACE" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" # ADD RSC /l 0x409 /d "NDEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ..\Detours\lib60\detours.lib ..\Release\MQ2Main.lib /nologo /dll /map /debug /machine:I386 /OPT:ICF # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ..\Detours\lib60\detours.lib ..\Release\MQ2Main.lib /nologo /dll /map /debug /machine:I386 /OPT:NOICF /OPT:NOREF # SUBTRACT LINK32 /pdb:none # Begin Target # Name "MQ2Targets - Win32 Release" # Begin Group "Source Files" # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" # Begin Source File SOURCE=.\MQ2Targets.cpp # End Source File # End Group # Begin Group "Header Files" # PROP Default_Filter "h;hpp;hxx;hm;inl" # End Group # Begin Group "Resource Files" # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" # End Group # End Target # End Project --- NEW FILE: MQ2Targets.cpp --- // MQ2Targets.cpp : Defines the entry point for the DLL application. // // PLUGIN_API is only to be used for callbacks. All existing callbacks at this time // are shown below. Remove the ones your plugin does not use. Always use Initialize // and Shutdown for setup and cleanup, do NOT do it in DllMain. #define MQ2Targets_Version "MQ2Targets \ar1.13\ax by \agDrunkDwarf\ax" #define MQ2TargetsTitle "Targets" #define MakeUpper(yourstring) transform (yourstring.begin(),yourstring.end(), yourstring.begin(), toupper); //some defaults #define NUMTARGETS 5 // display closest <x> targets to user #define HUDXSTART 165 #define HUDYSTART 5 #define HUDYINCREMENT 12 #define HUDCOLOR 0xFFFFEA08 // yellow #define GUILDHUDCOLOR 0xFFFF00FF // purple [...1437 lines suppressed...] { if(false == pItem->bNotified) { char szText[MAX_STRING]; sprintf(szText, "%s spawned\n", pItem->pSpawn->DisplayedName); strcat(szList, szText); nShown++; } // mark it as handled pItem->bNotified = true; pItem++; } if(nShown > 0) { DebugSpewAlways("MQ2Targets::PopupNotifyTarget() %s", szList); //EzCommand("/beep"); //PlaySound("SomeSound.wav",0,SND_ASYNC); DisplayOverlayText(szList, CONCOLOR_GREEN, 100, 500, 500, 1900); } } } |
|
From: Digitalxero <dig...@th...> - 2004-08-26 18:21:46
|
This is a tes |