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

36 lines
835 B
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifndef __NPC_MAGICCARD_H__
#define __NPC_MAGICCARD_H__
#define BANKERTOTAL 2 // °­©J¹Ö¡õ
struct BANKER
{
short starttotal;
short playertotal;
short state;
int waittime; //Æû¡õ¼ª¶µ¡õ¹©
int turntime; //¡õÓÞ¡õ¹©
short turn;
int hp[7];
char cdkey[6][CDKEYLEN];
char name[6][CHARNAMELEN];
unsigned int hand;
unsigned int history;
short select;
short action;
short process;
short pauseflag[7];
};
extern struct BANKER banker[];
extern int Bettotal[BANKERTOTAL];
extern int Wintotal[BANKERTOTAL];
extern int tickettotal[BANKERTOTAL];
BOOL NPC_Magiccard_Init( int meindex );
void NPC_Magiccard_Loop( int meindex );
void NPC_Magiccard_WindowTalked( int meindex, int talkerindex, int seqno, int select, char *data);
void NPC_Magiccard_Talked( int meindex , int talkerindex , char *szMes , int color );
#endif