EQEmulator Forums

EQEmulator Forums (https://www.eqemulator.org/forums/index.php)
-   Support::General Support (https://www.eqemulator.org/forums/forumdisplay.php?f=598)
-   -   healing spells not agroing? (https://www.eqemulator.org/forums/showthread.php?t=25568)

spider661 06-26-2008 01:51 AM

healing spells not agroing?
 
i was watching a raid the tonight and they wiped after the clr healing alot but never hitting. but none of the npcs in the raid agroed the clr even after they wiped the clr walked over rezzed them all and medded back up never getting agro.

i asked about it and they sayed heal spells are not grabing agro they never reported becuase they thought thats the way i set it..

so my question is y are the heal spells not grabing agro?

ChaosSlayer 06-26-2008 01:59 AM

there are server rules which server admin can set. One of them is such that spells generate 0 agro :-D

spider661 06-26-2008 02:10 AM

i looked there is not one for healing spells or if there is i missed it but all the agro stuff had something set in it unless there is one for healing that is not in my db then maybe thats y?

KLS 06-26-2008 02:20 AM

It's a known problem with healing spells, they wont generate aggro unless the character has established aggro already.

spider661 06-26-2008 02:23 AM

is there a fix? or maybe if i add extra hate to the spell its self with a spell editor will that do it?

ChaosSlayer 06-26-2008 03:12 AM

dang thats makes raids ultra easy...
basicly the logic of heal agro should work like this:

if player X has agro with mob Y, then ANY beneficial spell cast on player X will be tracked to ist soruce (the caster) and caster placed on mobs hate list

spider661 06-26-2008 03:20 AM

i wonder if you could use the quest system to make them get agro then if its like it says once they are on the hate list then they build agro..

i remember seeing something about when a spell is cast on the npc.. maybe check if its a heal spell then if it is put them on the hate list with some agro from the heal type. then there on the hate list and build agro?

spider661 06-26-2008 03:29 AM

ya would this not working looking at it i think it would

Added on 4/26/08 quest event EVENT_CAST_ON will trigger if a player casts on a npc.

then use the mob quest object
AddToHateList(other, hate= 0, damage= 0, iYellForHelp= true, bFrenzy= false, iBuffTic= false)

im not sure what other means though

spider661 06-26-2008 03:20 PM

ok so far i have this to test

Code:

sub EVENT_CAST_ON
{
$mob->AddToHateList(other, hate= 100, damage= 1)
}

prob is im still learning the scripting for eqemu.

what is other, would that be the player? and how would i get the player object its the one that last cast the spell so is there an object for that or would it jsut be $client?

Congdar 06-26-2008 04:08 PM

if the heal aggro code is currently broke, maybe fix it like this:

Code:

Existing Code:

else if (IsBeneficialSpell(spell_id) && spelltar->GetHateAmount(this) > 1)
                entity_list.AddHealAggro(spelltar, this, chekHealAggroAmount(spell_id));

Code:

Option A:
else if (IsBeneficialSpell(spell_id) && spelltar->IsEngaged()) {
        Mob* targetstarget = spelltar->GetTarget();
        targetstarget->AddToHateList(this->CastToMob(), CheckHealAggroAmount(spell_id));
}

Code:

Option B:
else if (IsBeneficialSpell(spell_id) && spelltar->IsEngaged()) {
        Mob* targetstarget = spelltar->GetTarget();
        entity_list.AddHealAggro(targetstarget, this, CheckHealAggroAmount(spell_id));
}


spider661 06-26-2008 04:25 PM

Quote:

Originally Posted by Congdar (Post 151496)
if the heal aggro code is currently broke, maybe fix it like this:

Code:

Existing Code:

else if (IsBeneficialSpell(spell_id) && spelltar->GetHateAmount(this) > 1)
                entity_list.AddHealAggro(spelltar, this, chekHealAggroAmount(spell_id));


Where did you get this code from?

is it in one of the source files?

Congdar 06-26-2008 04:26 PM

I think getTarget() could be exploited so maybe use one of the hatelist options GetHateTop() GetHateMost() or GetHateRandom()
Code:

spells.cpp

Option C:
else if (IsBeneficialSpell(spell_id) && spelltar->IsEngaged()) {
        Mob* targetstarget = spelltar->GetHateTop();
        targetstarget->AddToHateList(this->CastToMob(), CheckHealAggroAmount(spell_id));
}


spider661 06-26-2008 05:30 PM

ok i tried adding this and compiling it but i cant get it working this is the first time i tried...

i have a few versions

visual c++ 9.0
vs 6.0 pro
and vs 2008 pro

and none of them work

i even downloaded the dev kit on the forums here im guessing its out of date on the dependency's becuase that did not work either lol

i know this is prob not the best place to ask this but i figure you guys know how to set it up.

what program would be best to use and how should i go about setting it up to compile the latest source on the main site there..

you an just give a quick rundown i know how to use the programs already so its not like explaining it to a complete newbie just newbie to compiling this code itself lol

trevius 06-26-2008 05:38 PM

The dev kit works just fine if you follow the directions. Though, it doesn't hurt to have a little technical experience with compiling in VB when using it. If you got errors while compiling, then most likely the changes you made are what is causing the errors. It is very particular about how changes to the source get handled and they have to be done right or you will get errors. I haven't tried these code changes suggestions, so I don't know if they work or not.

spider661 06-26-2008 06:15 PM

i followed the directions 100%
Code:

#### Dev Kit ####
1)install VC++2008.exe
2)this entire folder needs to be place in C:/EQEmu
3)open Server.sln with VC++ 2008
4)open tools menu click options
5)select Projects and Solutions drop down menu
6)click VC++ and add the Dependencys folder as Executable files,Include Files,Library files
7)on the top bar it will proly see debug change it to Release and then Build Solution
8)watch as its compiled you will notice many warnings this is normal
9)the newly compiled files will be in the Build folder

Notes: This kit includes build files for Pearl 5.8, zlib 1.2.3, mysql 6.0.4, VC++ 8.0, EQEmu 1110. They are the latest working build files that i know of. This Dev Kit was made by Opyrus. This kit is easy to update simply paste the latest source over the current files and if you wish to update any of the other required Build files you can paste them inthe Dependancys folder.

i even tried using a clean version without the changes and still error all over the place and then fails with no zonedebug.exe file or anything in the debug folder

maybe there a ver version of the dev kit i missed somewhere? the file sayed devkit2.0.exe

ill tr again from scratch see what happens

trevius 06-26-2008 06:26 PM

Make sure you are following this step:

Quote:

7)on the top bar it will proly see debug change it to Release and then Build Solution
There is a pull down at the top of the window where you can select Release, Debug and maybe 1 other option. You have to set that to release. It looks like you were compiling the debug version and that is probably where you are failing.

spider661 06-27-2008 01:04 AM

ok i download the devkit installed setup and ran did every step and build

it runs and says this in the log at the bottem

then in the build folder i get shardmem folder world folder and 5 files 1 being world.exe no zone.exe or launcher or anything like that..

also the server file on the server build that comes with the dev kit (says 9 little number on the file itself telling you what version it loads in) the source i download from the site has a 7 on it.. when i load it it does its combatability upgrade thing and gives errors (well warnings not really error.. thats without adding this code thats just the source from the main site.

Code:

1>------ Build started: Project: World, Configuration: Release Win32 ------
2>------ Build started: Project: EMuShareMem, Configuration: Release Win32 ------
2>Compiling...
1>Compiling...
2>timer.cpp
1>XMLParser.cpp
2>SharedLibrary.cpp
1>Utility.cpp
2>Mutex.cpp
1>tinyxmlparser.cpp
1>tinyxmlerror.cpp
1>tinyxml.cpp
1>tinystr.cpp
1>timer.cpp
2>debug.cpp
2>Spells.cpp
1>timeoutmgr.cpp
1>TCPServer.cpp
2>SkillCaps.cpp
1>TCPConnection.cpp
2>Opcodes.cpp
1>StructStrategy.cpp
2>NPCTypes.cpp
2>NPCFactionLists.cpp
1>socket_include.cpp
1>SharedLibrary.cpp
1>shareddb.cpp
2>MMF.cpp
2>.\MMF.cpp(325) : warning C4532: 'return' : jump out of __finally block has undefined behavior during termination handling
2>Loot.cpp
1>serverinfo.cpp
2>Items.cpp
1>rulesys.cpp
2>Doors.cpp
1>races.cpp
2>DLLMain.cpp
1>perl_EQDBRes.cpp
2>Generating Code...
2>Linking...
1>perl_EQDB.cpp
2>LINK : warning LNK4044: unrecognized option '/MANIFESTUAC:level='asInvoker' uiAccess='false''; ignored
2>  Creating library .\../Build/EMuShareMem.lib and object .\../Build/EMuShareMem.exp
2>Linking...
2>LINK : warning LNK4044: unrecognized option '/MANIFESTUAC:level='asInvoker' uiAccess='false''; ignored
2>  Creating library .\../Build/EMuShareMem.lib and object .\../Build/EMuShareMem.exp
2>Embedding manifest...
1>Parse.cpp
1>Generating Code...
2>Build log was saved at "file://c:\Documents and Settings\spider\Desktop\EQEmu-0.7.0-1118-source\EQEmu-0.7.0-1118\Build\EMuShareMem\Release\BuildLog.htm"
2>EMuShareMem - 0 error(s), 3 warning(s)
1>Compiling...
1>packet_functions.cpp
3>------ Skipped Build: Project: Zone ------
3>
1>packet_dump_file.cpp
1>packet_dump.cpp
1>opcodemgr.cpp
1>Mutex.cpp
1>moremath.cpp
1>MiscFunctions.cpp
1>misc.cpp
1>Mime.cpp
1>MemFile.cpp
1>md5.cpp
1>logsys_eqemu.cpp
1>logsys.cpp
1>Item.cpp
1>HTTPSocket.cpp
1>HttpdSocket.cpp
1>HttpdForm.cpp
1>HttpdCookies.cpp
1>guilds.cpp
1>guild_base.cpp
1>Generating Code...
1>c:\documents and settings\spider\desktop\eqemu-0.7.0-1118-source\eqemu-0.7.0-1118\common\socketlib\httpsocket.cpp(113) : warning C4715: 'HTTPSocket::ProcessReceivedData' : not all control paths return a value
1>Compiling...
1>File.cpp
1>extprofile.cpp
1>eqtime.cpp
1>EQStreamProxy.cpp
1>EQStreamIdent.cpp
1>EQStreamFactory.cpp
1>EQStream.cpp
1>EQPacket.cpp
1>EQEMuError.cpp
1>EQEmuConfig.cpp
1>EQDBRes.cpp
1>EQDB.cpp
1>EmuTCPServer.cpp
1>EmuTCPConnection.cpp
1>EMuShareMem.cpp
1>emu_opcodes.cpp
1>debug.cpp
1>DBMemLeak.cpp
1>dbcore.cpp
1>dbasync.cpp
1>Generating Code...
1>Compiling...
1>database.cpp
1>crc32.cpp
1>CRC16.cpp
1>Condition.cpp
1>classes.cpp
1>BasePacket.cpp
1>Base64.cpp
1>Titanium.cpp
1>Patches.cpp
1>Live.cpp
1>Client62.cpp
1>Anniversary.cpp
1>zoneserver.cpp
1>zonelist.cpp
1>worlddb.cpp
1>WorldConfig.cpp
1>world_logsys.cpp
1>wguild_mgr.cpp
1>perl_HTTPRequest.cpp
1>perl_EQW.cpp
1>Generating Code...
1>Compiling...
1>perl_EQLConfig.cpp
1>net.cpp
1>LoginServer.cpp
1>LauncherList.cpp
1>LauncherLink.cpp
1>HTTPRequest.cpp
1>EQWParser.cpp
1>EQWHTTPHandler.cpp
1>EQW.cpp
1>EQLConfig.cpp
1>console.cpp
1>clientlist.cpp
1>cliententry.cpp
1>client.cpp
1>Generating Code...
1>Linking...
1>LINK : warning LNK4044: unrecognized option '/MANIFESTUAC:level='asInvoker' uiAccess='false''; ignored
1>Embedding manifest...
1>Creating browse information file...
1>Microsoft Browse Information Maintenance Utility Version 8.00.50727
1>Copyright (C) Microsoft Corporation. All rights reserved.
1>Build log was saved at "file://c:\Documents and Settings\spider\Desktop\EQEmu-0.7.0-1118-source\EQEmu-0.7.0-1118\Build\World\Release\BuildLog.htm"
1>World - 0 error(s), 2 warning(s)
========== Build: 2 succeeded, 0 failed, 0 up-to-date, 1 skipped ==========


spider661 06-27-2008 03:00 AM

i have tried everything i can think of i mean im not a complete newbie but i can figure this out it keeps skipping zone in the build i have tried everything i can think of and im out of options.

trevius 06-27-2008 03:18 AM

Sounds like you are most of the way there. It might be skipping zone because of the debug builds you did first. I think I did that by mistake at one point and was running into the same issue for a while. I think to get around it, I downloaded the latest source code and pasted it in that directory to overwrite everything that was in there. But, you might also need to delete some of the files. I think some of the files it generates will make VB look at those files and think that part is already completed so it won't do them again.

spider661 06-27-2008 03:38 AM

i have a releaseperl version where it says change to release .. actually im trying with the cvs right now and i have raid addicts debug release releaseperl and zone is being skiped with all of them but if i build zone with releaseperl it builds.. but fails with lots of errors..

i took the cvs download pasted it over everything in the folder deleted all the files that where added from the last time i tryed to build.. the conversion file and all then tryed again and still skipped it..

i dont know whats up but i cant figer it out guess i was just not mint to build the source lol..

not im not building it on a computer thats running the server could that be the problem is something required i dont have.. i know i have perl on this computer but i dont have a mysql database installed or anything like that..

spider661 06-27-2008 05:35 AM

ok k got it working half way better i followed the guide for setting up c++ 2005 of the site then after playing around abit i found a poet on this

Quote:

I do not remove anything from any of the projects to get it to compile. If it's not a mysql/perl/zlib dependency, I am out of answers. Sorry :(

The only thing I have to do on the Windows SLN is in order to build Release, I have to remove Zone.vcproj and re-add it, otherwise I get a "skipped" on zone build. Other than that, my Windows compiles are flawless (VC2005 Pro)
so i loaded it up removed the file put it back it reloaded and did not skip zone

now this is all using the cvs no changes..

but they still fail to compile with 1 success any clues? here is the log i know its long but please see if you can find the problem?

Code:

1>------ Build started: Project: World, Configuration: Release Win32 ------
2>------ Build started: Project: EMuShareMem, Configuration: Release Win32 ------
2>Compiling...
1>Compiling...
2>timer.cpp
1>XMLParser.cpp
2>SharedLibrary.cpp
1>Utility.cpp
1>..\common\SocketLib\Utility.cpp(59) : warning C4996: 'sprintf' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(345) : see declaration of 'sprintf'
1>        Message: 'This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
2>..\common\SharedLibrary.cpp(110) : warning C4996: 'sprintf' was declared deprecated
2>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(345) : see declaration of 'sprintf'
2>        Message: 'This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
2>Mutex.cpp
1>tinyxmlparser.cpp
1>c:\eqemu\common\tinyxml\tinyxml.h(280) : warning C4996: 'strncpy' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(156) : see declaration of 'strncpy'
1>        Message: 'This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>tinyxmlerror.cpp
1>c:\eqemu\common\tinyxml\tinyxml.h(280) : warning C4996: 'strncpy' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(156) : see declaration of 'strncpy'
1>        Message: 'This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>tinyxml.cpp
1>c:\eqemu\common\tinyxml\tinyxml.h(280) : warning C4996: 'strncpy' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(156) : see declaration of 'strncpy'
1>        Message: 'This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\common\tinyxml\tinyxml.cpp(103) : warning C4996: 'sprintf' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(345) : see declaration of 'sprintf'
1>        Message: 'This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\common\tinyxml\tinyxml.cpp(126) : warning C4996: 'strcpy' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
1>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\common\tinyxml\tinyxml.cpp(718) : warning C4996: 'sprintf' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(345) : see declaration of 'sprintf'
1>        Message: 'This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\common\tinyxml\tinyxml.cpp(726) : warning C4996: 'sprintf' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(345) : see declaration of 'sprintf'
1>        Message: 'This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\common\tinyxml\tinyxml.cpp(944) : warning C4996: 'fopen' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(234) : see declaration of 'fopen'
1>        Message: 'This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\common\tinyxml\tinyxml.cpp(989) : warning C4996: 'fopen' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(234) : see declaration of 'fopen'
1>        Message: 'This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\common\tinyxml\tinyxml.cpp(1122) : warning C4996: 'sscanf' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(311) : see declaration of 'sscanf'
1>        Message: 'This function or variable may be unsafe. Consider using sscanf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\common\tinyxml\tinyxml.cpp(1129) : warning C4996: 'sscanf' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(311) : see declaration of 'sscanf'
1>        Message: 'This function or variable may be unsafe. Consider using sscanf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\common\tinyxml\tinyxml.cpp(1137) : warning C4996: 'sprintf' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(345) : see declaration of 'sprintf'
1>        Message: 'This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\common\tinyxml\tinyxml.cpp(1144) : warning C4996: 'sprintf' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(345) : see declaration of 'sprintf'
1>        Message: 'This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>tinystr.cpp
1>c:\eqemu\common\tinyxml\tinyxml.h(280) : warning C4996: 'strncpy' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(156) : see declaration of 'strncpy'
1>        Message: 'This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>timer.cpp
2>debug.cpp
1>timeoutmgr.cpp
2>Spells.cpp
1>TCPServer.cpp
2>SkillCaps.cpp
1>TCPConnection.cpp
2>Opcodes.cpp
1>StructStrategy.cpp
2>NPCTypes.cpp
1>socket_include.cpp
2>NPCFactionLists.cpp
1>..\common\SocketLib\socket_include.cpp(85) : warning C4996: 'sprintf' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(345) : see declaration of 'sprintf'
1>        Message: 'This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>SharedLibrary.cpp
1>..\common\SharedLibrary.cpp(110) : warning C4996: 'sprintf' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(345) : see declaration of 'sprintf'
1>        Message: 'This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>shareddb.cpp
2>MMF.cpp
2>.\MMF.cpp(53) : warning C4996: '_snprintf' was declared deprecated
2>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(339) : see declaration of '_snprintf'
2>        Message: 'This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
2>.\MMF.cpp(59) : warning C4996: '_snprintf' was declared deprecated
2>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(339) : see declaration of '_snprintf'
2>        Message: 'This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
2>.\MMF.cpp(325) : warning C4532: 'return' : jump out of __finally block has undefined behavior during termination handling
2>Loot.cpp
1>serverinfo.cpp
1>..\common\serverinfo.cpp(32) : warning C4996: 'strcpy' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
1>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\common\serverinfo.cpp(48) : warning C4996: 'strcpy' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
1>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\common\serverinfo.cpp(53) : warning C4996: 'strcpy' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
1>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\common\serverinfo.cpp(57) : warning C4996: 'strcpy' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
1>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\common\serverinfo.cpp(61) : warning C4996: 'strcpy' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
1>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\common\serverinfo.cpp(66) : warning C4996: 'strcpy' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
1>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\common\serverinfo.cpp(70) : warning C4996: 'strcpy' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
1>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\common\serverinfo.cpp(74) : warning C4996: 'strcpy' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
1>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\common\serverinfo.cpp(81) : warning C4996: 'strcpy' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
1>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\common\serverinfo.cpp(85) : warning C4996: 'strcpy' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
1>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\common\serverinfo.cpp(89) : warning C4996: 'strcpy' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
1>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\common\serverinfo.cpp(93) : warning C4996: 'strcpy' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
1>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\common\serverinfo.cpp(97) : warning C4996: 'strcpy' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
1>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>rulesys.cpp
2>Items.cpp
1>c:\eqemu\common\ruletypes.h : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
1>races.cpp
2>Doors.cpp
1>perl_EQDBRes.cpp
2>DLLMain.cpp
2>Generating Code...
1>perl_EQDB.cpp
1>Parse.cpp
1>Generating Code...
2>Linking...
2>  Creating library .\../Build/EMuShareMem.lib and object .\../Build/EMuShareMem.exp
2>Embedding manifest...
2>Build log was saved at "file://c:\EQEmu\Build\EMuShareMem\Release\BuildLog.htm"
2>EMuShareMem - 0 error(s), 4 warning(s)
3>------ Build started: Project: Zone, Configuration: ReleasePerl Win32 ------
3>Compiling...
3>XMLParser.cpp
1>Compiling...
1>packet_functions.cpp
3>worldconn.cpp
1>packet_dump_file.cpp
3>tinyxmlparser.cpp
3>c:\eqemu\common\tinyxml\tinyxml.h(280) : warning C4996: 'strncpy' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(156) : see declaration of 'strncpy'
3>        Message: 'This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>tinyxmlerror.cpp
3>c:\eqemu\common\tinyxml\tinyxml.h(280) : warning C4996: 'strncpy' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(156) : see declaration of 'strncpy'
3>        Message: 'This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>tinyxml.cpp
3>c:\eqemu\common\tinyxml\tinyxml.h(280) : warning C4996: 'strncpy' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(156) : see declaration of 'strncpy'
3>        Message: 'This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>..\common\tinyxml\tinyxml.cpp(103) : warning C4996: 'sprintf' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(345) : see declaration of 'sprintf'
3>        Message: 'This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>..\common\tinyxml\tinyxml.cpp(126) : warning C4996: 'strcpy' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
3>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>..\common\tinyxml\tinyxml.cpp(718) : warning C4996: 'sprintf' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(345) : see declaration of 'sprintf'
3>        Message: 'This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>..\common\tinyxml\tinyxml.cpp(726) : warning C4996: 'sprintf' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(345) : see declaration of 'sprintf'
3>        Message: 'This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>..\common\tinyxml\tinyxml.cpp(944) : warning C4996: 'fopen' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(234) : see declaration of 'fopen'
3>        Message: 'This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>..\common\tinyxml\tinyxml.cpp(989) : warning C4996: 'fopen' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(234) : see declaration of 'fopen'
3>        Message: 'This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>..\common\tinyxml\tinyxml.cpp(1122) : warning C4996: 'sscanf' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(311) : see declaration of 'sscanf'
3>        Message: 'This function or variable may be unsafe. Consider using sscanf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>..\common\tinyxml\tinyxml.cpp(1129) : warning C4996: 'sscanf' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(311) : see declaration of 'sscanf'
3>        Message: 'This function or variable may be unsafe. Consider using sscanf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>..\common\tinyxml\tinyxml.cpp(1137) : warning C4996: 'sprintf' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(345) : see declaration of 'sprintf'
3>        Message: 'This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>..\common\tinyxml\tinyxml.cpp(1144) : warning C4996: 'sprintf' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(345) : see declaration of 'sprintf'
3>        Message: 'This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>tinystr.cpp
3>c:\eqemu\common\tinyxml\tinyxml.h(280) : warning C4996: 'strncpy' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(156) : see declaration of 'strncpy'
3>        Message: 'This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>timer.cpp
1>packet_dump.cpp
3>timeoutmgr.cpp
1>opcodemgr.cpp
3>TCPServer.cpp
1>Mutex.cpp
3>TCPConnection.cpp
1>moremath.cpp
3>StructStrategy.cpp
1>MiscFunctions.cpp
3>SharedLibrary.cpp
1>misc.cpp
3>..\common\SharedLibrary.cpp(110) : warning C4996: 'sprintf' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(345) : see declaration of 'sprintf'
3>        Message: 'This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>shareddb.cpp
1>Mime.cpp
1>..\common\SocketLib\Mime.cpp(40) : warning C4996: 'fopen' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(234) : see declaration of 'fopen'
1>        Message: 'This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>MemFile.cpp
3>serverinfo.cpp
1>..\common\SocketLib\MemFile.cpp(188) : warning C4996: 'vsprintf' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(345) : see declaration of 'vsprintf'
1>        Message: 'This function or variable may be unsafe. Consider using vsprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>md5.cpp
1>c:\eqemu\common\../common/seperator.h(42) : warning C4996: 'strcpy' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
1>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\common\md5.cpp(61) : warning C4996: '_snprintf' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(339) : see declaration of '_snprintf'
1>        Message: 'This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>logsys_eqemu.cpp
3>..\common\serverinfo.cpp(32) : warning C4996: 'strcpy' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
3>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>..\common\serverinfo.cpp(48) : warning C4996: 'strcpy' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
3>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>..\common\serverinfo.cpp(53) : warning C4996: 'strcpy' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
3>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>..\common\serverinfo.cpp(57) : warning C4996: 'strcpy' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
3>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>..\common\serverinfo.cpp(61) : warning C4996: 'strcpy' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
3>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>..\common\serverinfo.cpp(66) : warning C4996: 'strcpy' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
3>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>..\common\serverinfo.cpp(70) : warning C4996: 'strcpy' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
3>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>..\common\serverinfo.cpp(74) : warning C4996: 'strcpy' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
3>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>..\common\serverinfo.cpp(81) : warning C4996: 'strcpy' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
3>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>..\common\serverinfo.cpp(85) : warning C4996: 'strcpy' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
3>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>..\common\serverinfo.cpp(89) : warning C4996: 'strcpy' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
3>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>..\common\serverinfo.cpp(93) : warning C4996: 'strcpy' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
3>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>..\common\serverinfo.cpp(97) : warning C4996: 'strcpy' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
3>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>rulesys.cpp
3>c:\eqemu\common\ruletypes.h : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
1>logsys.cpp
3>rdtsc.cpp
1>Item.cpp
3>races.cpp
3>packet_functions.cpp
1>HTTPSocket.cpp
3>packet_dump_file.cpp
1>HttpdSocket.cpp
3>packet_dump.cpp
1>HttpdForm.cpp
1>..\common\SocketLib\HttpdForm.cpp(49) : warning C4996: 'getenv' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdlib.h(483) : see declaration of 'getenv'
1>        Message: 'This function or variable may be unsafe. Consider using _dupenv_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\common\SocketLib\HttpdForm.cpp(50) : warning C4996: 'getenv' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdlib.h(483) : see declaration of 'getenv'
1>        Message: 'This function or variable may be unsafe. Consider using _dupenv_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\common\SocketLib\HttpdForm.cpp(203) : warning C4996: 'strcat' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(78) : see declaration of 'strcat'
1>        Message: 'This function or variable may be unsafe. Consider using strcat_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\common\SocketLib\HttpdForm.cpp(205) : warning C4996: 'sprintf' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(345) : see declaration of 'sprintf'
1>        Message: 'This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\common\SocketLib\HttpdForm.cpp(210) : warning C4996: 'fopen' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(234) : see declaration of 'fopen'
1>        Message: 'This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\common\SocketLib\HttpdForm.cpp(248) : warning C4996: 'strcpy' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
1>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\common\SocketLib\HttpdForm.cpp(290) : warning C4996: 'strcpy' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
1>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\common\SocketLib\HttpdForm.cpp(376) : warning C4996: 'strcpy' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
1>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>Generating Code...
1>HttpdCookies.cpp
1>guilds.cpp
1>guild_base.cpp
1>Generating Code...
3>Compiling...
3>opcodemgr.cpp
1>c:\eqemu\common\socketlib\httpsocket.cpp(113) : warning C4715: 'HTTPSocket::ProcessReceivedData' : not all control paths return a value
3>Mutex.cpp
3>moremath.cpp
3>MiscFunctions.cpp
3>misc.cpp
3>md5.cpp
3>c:\eqemu\common\../common/seperator.h(42) : warning C4996: 'strcpy' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
3>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>..\common\md5.cpp(61) : warning C4996: '_snprintf' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(339) : see declaration of '_snprintf'
3>        Message: 'This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>logsys_eqemu.cpp
3>logsys.cpp
1>Compiling...
1>File.cpp
3>Item.cpp
1>..\common\SocketLib\File.cpp(60) : warning C4996: 'fopen' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\stdio.h(234) : see declaration of 'fopen'
1>        Message: 'This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>extprofile.cpp
1>eqtime.cpp
3>guilds.cpp
1>EQStreamProxy.cpp
3>guild_base.cpp
1>EQStreamIdent.cpp
3>extprofile.cpp
3>eqtime.cpp
1>EQStreamFactory.cpp
3>EQStreamProxy.cpp
1>EQStream.cpp
3>EQStreamIdent.cpp
1>EQPacket.cpp
3>EQStreamFactory.cpp
1>EQEMuError.cpp
1>..\common\EQEMuError.cpp(93) : warning C4996: 'strcpy' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
1>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\common\EQEMuError.cpp(134) : warning C4996: 'getch' was declared deprecated
1>        C:\Program Files\Microsoft Visual Studio 8\VC\include\conio.h(145) : see declaration of 'getch'
1>        Message: 'The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _getch. See online help for details.'
1>EQEmuConfig.cpp
3>EQStream.cpp
1>EQDBRes.cpp
3>EQPacket.cpp
1>EQDB.cpp
3>EQEmuConfig.cpp
1>EmuTCPServer.cpp
3>EmuTCPServer.cpp
1>EmuTCPConnection.cpp
3>Generating Code...
1>EMuShareMem.cpp
1>emu_opcodes.cpp
1>debug.cpp
1>DBMemLeak.cpp
1>dbcore.cpp
1>dbasync.cpp
1>Generating Code...
3>Compiling...
3>EmuTCPConnection.cpp
3>EMuShareMem.cpp
3>emu_opcodes.cpp
3>debug.cpp
1>Compiling...
1>database.cpp
3>DBMemLeak.cpp
3>dbcore.cpp
1>crc32.cpp
1>CRC16.cpp
3>dbasync.cpp
1>Condition.cpp
1>classes.cpp
3>database.cpp
1>BasePacket.cpp
3>crc32.cpp
3>CRC16.cpp
1>Base64.cpp
3>Condition.cpp
1>Titanium.cpp
3>classes.cpp
3>BasePacket.cpp
1>patches.cpp
3>Titanium.cpp
1>Live.cpp
3>patches.cpp
1>Client62.cpp
3>Live.cpp
1>Anniversary.cpp
3>Client62.cpp
1>zoneserver.cpp
3>Anniversary.cpp
1>c:\eqemu\common\ruletypes.h : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
1>zonelist.cpp
3>zoning.cpp
1>worlddb.cpp
1>WorldConfig.cpp
3>c:\eqemu\common\ruletypes.h : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
3>zonedbasync.cpp
1>world_logsys.cpp
1>wguild_mgr.cpp
3>Generating Code...
1>c:\eqemu\common\ruletypes.h : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
1>perl_HTTPRequest.cpp
1>perl_EQW.cpp
1>Generating Code...
3>Compiling...
3>zonedb.cpp
3>.\zonedb.cpp : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
3>ZoneConfig.cpp
3>zone_logsys.cpp
3>zone.cpp
1>Compiling...
1>perl_EQLConfig.cpp
3>worldserver.cpp
1>net.cpp
1>c:\eqemu\common\ruletypes.h : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
1>LoginServer.cpp
3>waypoints.cpp
1>c:\eqemu\common\ruletypes.h : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
1>LauncherList.cpp
3>c:\eqemu\common\ruletypes.h : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
3>watermap.cpp
1>LauncherLink.cpp
3>tribute.cpp
1>HTTPRequest.cpp
3>trap.cpp
1>EQWParser.cpp
3>trading.cpp
1>EQWHTTPHandler.cpp
1>EQW.cpp
3>tradeskills.cpp
1>c:\eqemu\common\ruletypes.h : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
1>EQLConfig.cpp
3>titles.cpp
1>console.cpp
3>spells.cpp
1>c:\eqemu\common\ruletypes.h : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
1>clientlist.cpp
1>c:\eqemu\common\ruletypes.h : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
1>cliententry.cpp
3>c:\eqemu\common\ruletypes.h : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
3>spell_effects.cpp
1>c:\eqemu\common\ruletypes.h : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
1>client.cpp
3>c:\eqemu\common\ruletypes.h : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
3>special_attacks.cpp
1>c:\eqemu\common\ruletypes.h : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
1>Generating Code...
3>c:\eqemu\common\ruletypes.h : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
3>spdat.cpp
3>spawngroup.cpp
3>spawn2.cpp
1>Creating browse information file...
3>questmgr.cpp
3>ptimer.cpp
3>Generating Code...
3>Compiling...
3>PlayerCorpse.cpp
3>c:\eqemu\common\ruletypes.h : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
3>pets.cpp
3>petitions.cpp
3>perlparser.cpp
3>perlpacket.cpp
3>perl_PlayerCorpse.cpp
3>perl_perlpacket.cpp
3>perl_npc.cpp
3>perl_mob.cpp
3>perl_groups.cpp
3>perl_entity.cpp
3>perl_client.cpp
3>pathing.cpp
3>parser.cpp
3>Object.cpp
3>npc.cpp
3>c:\eqemu\common\ruletypes.h : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
3>net.cpp
1>Microsoft Browse Information Maintenance Utility Version 8.00.50727
1>Copyright (C) Microsoft Corporation. All rights reserved.
3>c:\eqemu\common\ruletypes.h : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
1>Build log was saved at "file://c:\EQEmu\Build\World\Release\BuildLog.htm"
1>World - 10 error(s), 46 warning(s)
3>MobAI.cpp
3>c:\eqemu\common\ruletypes.h : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
3>mob.cpp
3>Map.cpp
3>Generating Code...
3>Compiling...
3>loottables.cpp
3>inventory.cpp
3>horse.cpp
3>hate_list.cpp
3>c:\eqemu\common\ruletypes.h : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
3>guild_mgr.cpp
3>guild.cpp
3>groups.cpp
3>forage.cpp
3>c:\eqemu\common\ruletypes.h : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
3>fearpath.cpp
3>c:\eqemu\common\ruletypes.h : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
3>faction.cpp
3>exp.cpp
3>c:\eqemu\common\ruletypes.h : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
3>EQEMuError.cpp
3>..\common\EQEMuError.cpp(93) : warning C4996: 'strcpy' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
3>        Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
3>..\common\EQEMuError.cpp(134) : warning C4996: 'getch' was declared deprecated
3>        C:\Program Files\Microsoft Visual Studio 8\VC\include\conio.h(145) : see declaration of 'getch'
3>        Message: 'The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _getch. See online help for details.'
3>entity.cpp
3>embxs.cpp
3>embperl.cpp
3>embparser.cpp
3>effects.cpp
3>doors.cpp
3>command.cpp
3>c:\eqemu\common\ruletypes.h : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
3>client_process.cpp
3>c:\eqemu\common\ruletypes.h : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
3>Generating Code...
3>Compiling...
3>client_packet.cpp
3>c:\eqemu\common\ruletypes.h : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
3>client_mods.cpp
3>client_logs.cpp
3>client.cpp
3>c:\eqemu\common\ruletypes.h : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
3>bonuses.cpp
3>c:\eqemu\common\ruletypes.h : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
3>beacon.cpp
3>attack.cpp
3>c:\eqemu\common\ruletypes.h : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
3>aggro.cpp
3>c:\eqemu\common\ruletypes.h : error C4335: Mac file format detected: please convert the source file to either DOS or UNIX format
3>AA.cpp
3>Generating Code...
3>Creating browse information file...
3>Microsoft Browse Information Maintenance Utility Version 8.00.50727
3>Copyright (C) Microsoft Corporation. All rights reserved.
3>Build log was saved at "file://c:\EQEmu\Build\Zone\Release\BuildLog.htm"
3>Zone - 22 error(s), 32 warning(s)
========== Build: 1 succeeded, 2 failed, 0 up-to-date, 0 skipped ==========


spider661 06-27-2008 05:55 AM

ok forget all that i got it to compile useing the source off the main site rather then the checkout. so now that i got it working i can put this fix in and test it :P

question i noticed non of the healing spells have a hate modifier in the box at where it goes.. is that built into the client or do i have to put it there?

one more thing when i built the source it gave me a 3 folders
EMuShareMem
World
Zone
then it gave me 7 files
EMuShareMem.dll
EMuShareMem.exp
EMuShareMem.lib
World.bsc
World.exe
Zone.bsc
Zone.exe

now i only recognize 3 of these filse EMuShareMem.dll, World.exe, and Zone.exe what are the others for?
and where are the files that come with the win32 binary download
that download has like a few folders a bunch of config files i thought all that stuff came in the build.
are they just stuffed somewhere in the source folder.. do i even need to worry about them or just the 3 files i recognized?

also i want to say sorry for turning this into more of a how to build post then a fix it post i probably should have started a new topic but this is where i ran into the problems and was getting frustrated to much to think about it.. if a dev would you can delete all the post about that stuff and just leave the rel event post.

again sorry about that.


All times are GMT -4. The time now is 01:51 AM.

Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.