搜索
int AddGPPoint( int nAddGPPoint );///在Mover.h内
这个函数
在其上 添加
//////////////////////////////////////
int GetGPPoint();
///////////////////////////////////////
进入
WORLDSERVER 下的 FunctionsInfo.h
在
typedef int (WINAPI *PFAddGPPoint)( NPCDIALOG_INFO* pInfo , int nAddGPPoint);
其下加上
/////////////////////////////////
typedef int (WINAPI *PFGetGPPoint)( NPCDIALOG_INFO* pInfo );
///////////////////////////////////
在struct Functions这个结构中最下面加上
///////////////////////////////////
PFGetGPPoint GetGPPoint;
///////////////////////////////////