2016-12-24 08:45:52 +08:00
|
|
|
|
#include "version.h"
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <ctype.h>
|
|
|
|
|
|
|
|
|
|
#include "object.h"
|
|
|
|
|
#include "char_base.h"
|
|
|
|
|
#include "char.h"
|
|
|
|
|
#include "util.h"
|
|
|
|
|
#include "npcutil.h"
|
|
|
|
|
#include "item.h"
|
|
|
|
|
#include "readmap.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define RANGE 2
|
|
|
|
|
void NPC_HealerSpeak( int index, int talker);
|
|
|
|
|
void NPC_HealerAllHeal( int talker );
|
|
|
|
|
BOOL NPC_MoneyCheck(int meindex,int talker);
|
|
|
|
|
int NPC_CostCheck(int talker);
|
|
|
|
|
void NPC_CharCheckPoint(int meindex,int talker);
|
|
|
|
|
int NPC_WorkInput(int meindex,int talker);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**********************************
|
2017-01-13 23:37:03 +08:00
|
|
|
|
赓渝祭
|
2016-12-24 08:45:52 +08:00
|
|
|
|
************************************/
|
|
|
|
|
BOOL NPC_HealerInit( int meindex )
|
|
|
|
|
{
|
2017-01-13 23:37:03 +08:00
|
|
|
|
//正奶皿毛甲□仿□卞涩烂
|
2016-12-24 08:45:52 +08:00
|
|
|
|
CHAR_setInt( meindex , CHAR_WHICHTYPE , CHAR_TYPEHEALER );
|
2017-01-13 23:37:03 +08:00
|
|
|
|
// 猾匹五卅中 邰卅中井手
|
2016-12-24 08:45:52 +08:00
|
|
|
|
CHAR_setFlg( meindex , CHAR_ISATTACKED , 0 );
|
2017-01-13 23:37:03 +08:00
|
|
|
|
//晓卞昙木卅中
|
2016-12-24 08:45:52 +08:00
|
|
|
|
// CHAR_setFlg( meindex , CHAR_ISOVERED , 0 );
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------
|
|
|
|
|
*
|
2017-01-13 23:37:03 +08:00
|
|
|
|
* 今木}HP,MP毛蝈钒卞允月
|
2016-12-24 08:45:52 +08:00
|
|
|
|
*
|
|
|
|
|
--------------------------------------------*/
|
|
|
|
|
void NPC_HealerTalked( int meindex , int talker , char *msg ,int color )
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
char* npcarg;
|
|
|
|
|
char token[32];
|
|
|
|
|
int msgNo;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
npcarg = CHAR_getChar(meindex,CHAR_NPCARGUMENT);
|
|
|
|
|
|
|
|
|
|
getStringFromIndexWithDelim( npcarg, "|", 1, token,sizeof( token));
|
|
|
|
|
msgNo = atoi( token );
|
|
|
|
|
|
2017-01-13 23:37:03 +08:00
|
|
|
|
/*---皿伊奶乩□卞覆仄化分仃 杀允月---*/
|
2016-12-24 08:45:52 +08:00
|
|
|
|
if( CHAR_getInt( talker , CHAR_WHICHTYPE ) != CHAR_TYPEPLAYER ) return;
|
|
|
|
|
|
2017-01-13 23:37:03 +08:00
|
|
|
|
/*--- 区动 井" 区反1引凶反}仄氏匹中月井"---*/
|
|
|
|
|
/* ㄠ弘伉永玉动 及心 */
|
2016-12-24 08:45:52 +08:00
|
|
|
|
if( NPC_Util_CharDistance( talker, meindex ) > 2) return;
|
|
|
|
|
|
|
|
|
|
if( (CHAR_getWorkInt( talker, CHAR_WORKPARTYMODE) == 0)
|
|
|
|
|
|| (CHAR_getWorkInt( talker, CHAR_WORKPARTYMODE) == 2) )
|
|
|
|
|
{
|
2017-01-13 23:37:03 +08:00
|
|
|
|
/*--荚汊今六引仄斤丹--*/
|
2016-12-24 08:45:52 +08:00
|
|
|
|
NPC_HealerAllHeal( talker);
|
|
|
|
|
if(msgNo == 1) {
|
|
|
|
|
CHAR_talkToCli( talker, meindex,
|
2017-01-13 23:37:03 +08:00
|
|
|
|
"已经全部回复。请在下次的比赛中加油唷!",CHAR_COLORWHITE);
|
2016-12-24 08:45:52 +08:00
|
|
|
|
|
|
|
|
|
}else if(msgNo == 2) {
|
|
|
|
|
CHAR_talkToCli( talker, meindex,
|
2017-01-13 23:37:03 +08:00
|
|
|
|
"由於你很诚实,让我帮你回复吧!",CHAR_COLORWHITE);
|
2016-12-24 08:45:52 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}else{
|
|
|
|
|
int i = 0;
|
|
|
|
|
int otherindex;
|
|
|
|
|
|
|
|
|
|
for( i=0 ; i < CHAR_PARTYMAX ; i++)
|
|
|
|
|
{
|
|
|
|
|
otherindex = CHAR_getWorkInt( talker, CHAR_WORKPARTYINDEX1 + i);
|
|
|
|
|
if(otherindex != -1){
|
|
|
|
|
|
|
|
|
|
NPC_HealerAllHeal( otherindex);
|
|
|
|
|
if(msgNo == 1) {
|
|
|
|
|
CHAR_talkToCli( otherindex, meindex,
|
2017-01-13 23:37:03 +08:00
|
|
|
|
"已经全部回复。请在下次的比赛中加油唷!",CHAR_COLORWHITE);
|
2016-12-24 08:45:52 +08:00
|
|
|
|
|
|
|
|
|
}else if(msgNo == 2) {
|
|
|
|
|
CHAR_talkToCli( otherindex, meindex,
|
2017-01-13 23:37:03 +08:00
|
|
|
|
"由於你很诚实,让我帮你回复吧!",CHAR_COLORWHITE);
|
2016-12-24 08:45:52 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*----------------------*/
|
2017-01-13 23:37:03 +08:00
|
|
|
|
/* 荚汊 */
|
2016-12-24 08:45:52 +08:00
|
|
|
|
/*-----------------------*/
|
|
|
|
|
void NPC_HealerAllHeal( int talker )
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
int petindex;
|
|
|
|
|
char petsend[3];
|
|
|
|
|
char msgbuf[5];
|
|
|
|
|
|
|
|
|
|
CHAR_setInt( talker , CHAR_HP ,CHAR_getWorkInt( talker, CHAR_WORKMAXHP ) );
|
|
|
|
|
CHAR_setInt( talker , CHAR_MP ,CHAR_getWorkInt( talker, CHAR_WORKMAXMP ) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for(i = 0 ; i < CHAR_MAXPETHAVE; i ++) {
|
|
|
|
|
petindex = CHAR_getCharPet( talker, i);
|
|
|
|
|
|
|
|
|
|
if( petindex == -1 ) continue;
|
|
|
|
|
|
2017-01-13 23:37:03 +08:00
|
|
|
|
/* 平乓仿及 民尼永弁 */
|
2016-12-24 08:45:52 +08:00
|
|
|
|
if( !CHAR_CHECKINDEX( talker ) ) continue;
|
|
|
|
|
|
2017-01-13 23:37:03 +08:00
|
|
|
|
/* 矢永玄及index民尼永弁毛允月 */
|
2016-12-24 08:45:52 +08:00
|
|
|
|
if( CHAR_CHECKINDEX( petindex) == FALSE ) continue;
|
|
|
|
|
|
2017-01-13 23:37:03 +08:00
|
|
|
|
/*--荚汊--*/
|
2016-12-24 08:45:52 +08:00
|
|
|
|
CHAR_setFlg( petindex, CHAR_ISDIE, 0);
|
|
|
|
|
CHAR_setInt( petindex , CHAR_HP ,CHAR_getWorkInt( petindex, CHAR_WORKMAXHP ) );
|
|
|
|
|
CHAR_setInt( petindex , CHAR_MP ,CHAR_getWorkInt( petindex, CHAR_WORKMAXMP ) );
|
|
|
|
|
|
2017-01-13 23:37:03 +08:00
|
|
|
|
/*--由仿丢□正譬帮--*/
|
2016-12-24 08:45:52 +08:00
|
|
|
|
CHAR_complianceParameter( petindex );
|
|
|
|
|
sprintf( petsend, "K%d", i );
|
|
|
|
|
CHAR_sendStatusString( talker , petsend );
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-13 23:37:03 +08:00
|
|
|
|
/*---醮棉互中木壬醮棉卞手霜耨--*/
|
2016-12-24 08:45:52 +08:00
|
|
|
|
if(CHAR_getWorkInt( talker, CHAR_WORKPARTYMODE) != CHAR_PARTY_NONE )
|
|
|
|
|
{
|
|
|
|
|
int topartyarray = -1;
|
|
|
|
|
int oyaindex = CHAR_getWorkInt( talker , CHAR_WORKPARTYINDEX1);
|
|
|
|
|
|
|
|
|
|
if( CHAR_CHECKINDEX( oyaindex )) {
|
|
|
|
|
int i;
|
|
|
|
|
|
2017-01-13 23:37:03 +08:00
|
|
|
|
/* 愤坌午怂仄凶支勾及醮棉及 及桦赭毛潸 */
|
2016-12-24 08:45:52 +08:00
|
|
|
|
for( i = 0; i < CHAR_PARTYMAX; i ++ ) {
|
|
|
|
|
int workindex = CHAR_getWorkInt( oyaindex, CHAR_WORKPARTYINDEX1 + i);
|
|
|
|
|
if( CHAR_CHECKINDEX( workindex) ) {
|
|
|
|
|
if( workindex == talker ) {
|
|
|
|
|
topartyarray = i;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for( i = 0; i < CHAR_PARTYMAX; i ++ ) {
|
|
|
|
|
int otherindex = CHAR_getPartyIndex( talker, i);
|
2017-01-13 23:37:03 +08:00
|
|
|
|
/* 醮棉由仿丢□正毛霜月 */
|
2016-12-24 08:45:52 +08:00
|
|
|
|
if( CHAR_CHECKINDEX( otherindex) ) {
|
|
|
|
|
snprintf( msgbuf, sizeof( msgbuf), "N%d", topartyarray);
|
|
|
|
|
if( otherindex != talker) {
|
|
|
|
|
CHAR_sendStatusString( otherindex, msgbuf);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-13 23:37:03 +08:00
|
|
|
|
/*--由仿丢□正霜曰--*/
|
2016-12-24 08:45:52 +08:00
|
|
|
|
CHAR_send_P_StatusString( talker, CHAR_P_STRING_HP);
|
|
|
|
|
CHAR_send_P_StatusString( talker, CHAR_P_STRING_MP);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|