stoneage8.5/石器时代服务器端最新完整源代码/Serv/gmsv/npc_lua/npc_lua_game.c
anson1788 a5b185b7ef Revert "re upload"
This reverts commit 274b7d169c.
2020-06-23 15:23:51 +08:00

111 lines
3.0 KiB
C

#include "npc_lua.h"
#include "util.h"
#include "char.h"
#include "char_base.h"
#include "char_data.h"
#include "anim_tbl.h"
#include "object.h"
#include "battle.h"
#include "npcutil.h"
#include "item.h"
#include "readmap.h"
#include "saacproto_cli.h"
#include "family.h"
int NPC_Lua_Game_FMPOINT_GetData(lua_State *_NLL)
{
CheckEx(_NLL, 2);
CheckIndexNull(_NLL, 1);
int GA_Index = (int)lua_tointeger(_NLL, 1);
int GA_Flg = (int)lua_tointeger(_NLL, 2);
if(GA_Flg >= 0)
{
if(GA_Flg < LUA_DATALINE1)
{
GA_Flg -= LUA_DATALINE0;
char *GA_RetInt = FM_getManorData(GA_Index, GA_Flg);
LRetInt(_NLL, atoi(GA_RetInt));
}else if(GA_Flg < LUA_DATALINE2)
{
GA_Flg -= LUA_DATALINE1;
char *GA_RetPoint = FM_getManorData(GA_Index, GA_Flg);
LRetMsg(_NLL, GA_RetPoint);
}else
{
LRetErrNull(_NLL, "传入的标志是错误的。");
}
}
LRetErrNull(_NLL, "传入的标志是错误的。");
}
int NPC_Lua_Game_FMPOINT_ACSetFMPoint(lua_State *_NLL)
{
CheckEx(_NLL, 5);
CheckIndexNull(_NLL, 1);
int leaderindex = (int)lua_tointeger(_NLL, 1);
int fmpointindex = (int)lua_tointeger(_NLL, 2);
int map = (int)lua_tointeger(_NLL, 3);
int x = (int)lua_tointeger(_NLL, 4);
int y = (int)lua_tointeger(_NLL, 5);
if(!CHAR_CHECKINDEX(leaderindex))
{
LRetErrInt(_NLL, -1, "传入的索引是无效的。");
}
if (fmpointindex < 0 || fmpointindex > 9)
{
LRetErrInt(_NLL, -1, "传入的庄园编号是无效的。");
}
int fd = getfdFromCharaIndex( leaderindex );
if( fd == -1 ){
LRetErrInt(_NLL, -2, "该玩家可能已经下线!");
}
char *tmpbuf = "";
sprintf(tmpbuf, "%d|%d|%d|%d|%d|",leaderindex,fmpointindex,map,x,y);
FAMILY_SetPoint(fd,leaderindex,tmpbuf);
LRetInt(_NLL, 0);
}
int NPC_Lua_Game_FMPOINT_ACFixFMPoint(lua_State *_NLL)
{
CheckEx(_NLL, 3);
CheckIndexNull(_NLL, 1);
int winindex = (int)lua_tointeger(_NLL, 1);
int loseindex = (int)lua_tointeger(_NLL, 2);
int id = (int)lua_tointeger(_NLL, 3);
if(!CHAR_CHECKINDEX(winindex) || !CHAR_CHECKINDEX(loseindex))
{
LRetErrNull(_NLL, "传入的索引是无效的。");
}
if (id < 0 || id > 9)
{
LRetErrNull(_NLL, "传入的庄园编号是无效的。");
}
if(CHAR_getInt( winindex, CHAR_FMLEADERFLAG ) != FMMEMBER_LEADER)//不是族长
{
LRetErrNull(_NLL, "传入的索引对象并不是族长");
}
if(CHAR_getInt( loseindex, CHAR_FMLEADERFLAG ) != FMMEMBER_LEADER)//不是族长
{
LRetErrNull(_NLL, "传入的索引对象并不是族长");
}
saacproto_ACFixFMPoint_send(acfd, CHAR_getChar(winindex,CHAR_FMNAME),CHAR_getInt(winindex,CHAR_FMINDEX) + 1,CHAR_getInt(winindex,CHAR_FMINDEX),
CHAR_getChar(loseindex,CHAR_FMNAME),CHAR_getInt(loseindex,CHAR_FMINDEX) + 1,CHAR_getInt(loseindex,CHAR_FMINDEX),id);
LRetInt(_NLL, 0);
}
/*
int NPC_Lua_Game_FMPOINT_ACCleanFMPoint(lua_State *_NLL)
{
CheckEx(_NLL, 1);
CheckIndexNull(_NLL, 1);
int id = (int)lua_tointeger(_NLL, 1);
if (id < 0 || id > 9)
{
LRetErrNull(_NLL, "传入的庄园编号是无效的。");
}
saacproto_ACDelFmPoint_send(acfd,id);
LRetInt(_NLL, 0);
}
*/