Originally Posted by
serverghost
@Nesox:
Your Fish Bot doesn't work on 64bit versions of Windows because of a simple reason:
Per default the .NET Framework generates platform-independant code. So when you run a .NET application in Windows x64 the .NET framework will create a 64bit process. For technical reasons it is impossible to load a 32bit DLL (-> FASM.DLL) inside a 64bit process.
The solution would be to tell the .NET framework not to create platform-independant code and define x86 as a target plattform. This way your .NET application is using a 32bit process even on x64 Windows versions. So please consider changing your Architecture inside your project settings from plattform-independant to x86.