Getting .Net Bots to work on x64 systems Some bots such as ClubLiveLBI do not work on x64 systems. This is due to the exe compiling as an x64 assembly. It will then use the x64 version of internet explorer. The problem is adobe does not have a version of flash player that works with x64 webbrowsers. So what is the solution? It is simple really, just edit your exe to always compile as a x86 assembly.
To do so you need ot use CorFlags on your compiled, but not yet obbed, exe. CorFlags should be located in one of three locations:
C:\Program Files\Microsoft SDKs\Windows\v6.0\Bin\(either x64 or x86)\CorFlags.exe
or
C:\Program Files\Microsoft Visual Studio 9\SDK\v3.5\Bin\CorFlags.exe
copy your bot to that folder.
navigate there with command prompt.
After doing so type:
CorFlags bot.exe /32BIT+ /Force
Now, your bot will always compile as a x86 exe. |