You have to change the "python22.dll" to the "python27.dll" (don't rename but download the new file) in the client folder (obviously) and then change in the source in the UserInterface.cpp
Code:
#pragma comment( lib, "python22.lib" )
->
Code:
#pragma comment( lib, "python27.lib" )
Now open the StdAfx.h in the project called "scriptLib" and replace all the
Code:
#include <Python22/x.h>
->
Code:
#include <Python27/x.h>
Well now open "PythonUtils.cpp" in the same project and insert
Code:
#define PyLong_AsLong PyLong_AsLongLong
#define Pylong_AsUnsignedLong PyLong_AsUnsignedLongLong
after the includes.
I think that's all, I hope I haven't forgotten something important but u'll see (:
Kind Regards