1147 lines
31 KiB
C
1147 lines
31 KiB
C
![]() |
#include "version.h"
|
|||
|
#include <string.h>
|
|||
|
#include "char.h"
|
|||
|
#include "object.h"
|
|||
|
#include "char_base.h"
|
|||
|
#include "npcutil.h"
|
|||
|
#include "configfile.h"
|
|||
|
#include "lssproto_serv.h"
|
|||
|
#include "saacproto_cli.h"
|
|||
|
#include "npc_riderman.h"
|
|||
|
#include "family.h"
|
|||
|
#include "log.h"
|
|||
|
|
|||
|
extern int familyNumTotal;
|
|||
|
extern char familyListBuf[MAXFAMILYLIST];
|
|||
|
extern tagRidePetTable ridePetTable[296];
|
|||
|
extern struct FM_POINTLIST fmpointlist;
|
|||
|
|
|||
|
char sendbuf[1024];
|
|||
|
char buf[1024];
|
|||
|
char subbuf[128];
|
|||
|
int i, j;
|
|||
|
|
|||
|
/*
|
|||
|
* ɬ<EFBFBD>ý<EFBFBD>ľ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ū<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ë<EFBFBD><EFBFBD><EFBFBD><EFBFBD>NPC
|
|||
|
* <EFBFBD><EFBFBD><EFBFBD><EFBFBD> ƽ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD><EFBFBD>ì<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ҡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ئ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ľ<EFBFBD>¾<EFBFBD><EFBFBD>֣<EFBFBD>
|
|||
|
*
|
|||
|
*/
|
|||
|
|
|||
|
struct {
|
|||
|
int windowno;
|
|||
|
int windowtype;
|
|||
|
int buttontype;
|
|||
|
int takeitem;
|
|||
|
int giveitem;
|
|||
|
int takegold;
|
|||
|
char message[4096];
|
|||
|
int letter[4];
|
|||
|
}w;
|
|||
|
|
|||
|
struct {
|
|||
|
BOOL use;
|
|||
|
int checkhaveitem;
|
|||
|
int checkhaveitemgotowin;
|
|||
|
int checkdonthaveitem;
|
|||
|
int checkdonthaveitemgotowin;
|
|||
|
int warp;
|
|||
|
int battle;
|
|||
|
int gotowin;
|
|||
|
}buttonproc[13]; /* ok,cancel, yes,no,prev,next <20><><EFBFBD>ݼ<EFBFBD><DDBC><EFBFBD> */
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
enum {
|
|||
|
CHAR_WORK_MSGCOLOR = CHAR_NPCWORKINT1,
|
|||
|
};
|
|||
|
|
|||
|
static void NPC_Riderman_selectWindow( int meindex, int toindex, int num);
|
|||
|
static BOOL NPC_Riderman_readData( int meindex, int windowno, BOOL chkflg);
|
|||
|
static int NPC_Riderman_restoreButtontype( char *data );
|
|||
|
// static BOOL getLetter(int meindex,int talker );
|
|||
|
// static BOOL checkLetter(int meindex,int talker );
|
|||
|
|
|||
|
/*********************************
|
|||
|
* <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
*********************************/
|
|||
|
BOOL NPC_RidermanInit( int meindex )
|
|||
|
{
|
|||
|
char argstr[NPC_UTIL_GETARGSTR_BUFSIZE];
|
|||
|
char buf[1024];
|
|||
|
//int i;
|
|||
|
//char secondToken[1024];
|
|||
|
|
|||
|
// Robin test
|
|||
|
// print(" riderman_Init ");
|
|||
|
|
|||
|
NPC_Util_GetArgStr( meindex, argstr, sizeof( argstr));
|
|||
|
|
|||
|
if( NPC_Util_GetStrFromStrWithDelim( argstr, "conff", buf, sizeof( buf))
|
|||
|
== NULL )
|
|||
|
{
|
|||
|
print( "riderman:û<><C3BB>ָ<EFBFBD><D6B8><EFBFBD>趨<EFBFBD>ĵ<EFBFBD><C4B5><EFBFBD> <20><>\n");
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
/* <20><><EFBFBD><EFBFBD><EFBFBD>ݱ<EFBFBD>ɬ<EFBFBD>÷<EFBFBD><C3B7><EFBFBD><EFBFBD><EFBFBD>ë<EFBFBD><C3AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƻ<EFBFBD>֧<EFBFBD><D6A7> */
|
|||
|
if( !NPC_Riderman_readData( meindex, -1, TRUE) ) {
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
|
|||
|
CHAR_setInt( meindex , CHAR_WHICHTYPE , CHAR_TYPEWINDOWMAN );
|
|||
|
|
|||
|
return TRUE;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
/*********************************
|
|||
|
* <EFBFBD>ƾ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ľ<EFBFBD><EFBFBD><EFBFBD>ݼ<EFBFBD><EFBFBD><EFBFBD>
|
|||
|
*********************************/
|
|||
|
void NPC_RidermanTalked( int meindex , int talkerindex , char *szMes ,int color )
|
|||
|
{
|
|||
|
//print(" Rideman_fmindex:%d ", CHAR_getInt( meindex, CHAR_FMINDEX) );
|
|||
|
|
|||
|
NPC_Riderman_selectWindow( meindex, talkerindex, 1 );
|
|||
|
|
|||
|
}
|
|||
|
/*********************************
|
|||
|
* έ<EFBFBD><EFBFBD>ľ<EFBFBD><EFBFBD><EFBFBD>ݼ<EFBFBD><EFBFBD><EFBFBD>
|
|||
|
*********************************/
|
|||
|
void NPC_RidermanLooked( int meindex , int lookedindex)
|
|||
|
{
|
|||
|
|
|||
|
//print(" Look:me:%d,looked:%d ",meindex,lookedindex);
|
|||
|
NPC_Riderman_selectWindow( meindex, lookedindex,1 );
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
static void NPC_Riderman_selectWindow( int meindex, int toindex, int num)
|
|||
|
{
|
|||
|
|
|||
|
int fd;
|
|||
|
char buf[256];
|
|||
|
|
|||
|
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>帲<EFBFBD>ƻ<EFBFBD><C6BB><EFBFBD><EFBFBD><EFBFBD> ɱ<><C9B1><EFBFBD><EFBFBD> */
|
|||
|
if( CHAR_getInt( toindex , CHAR_WHICHTYPE ) != CHAR_TYPEPLAYER ) {
|
|||
|
return;
|
|||
|
}
|
|||
|
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> */
|
|||
|
if( !NPC_Util_charIsInFrontOfChar( toindex, meindex, 1 )) return;
|
|||
|
|
|||
|
if( !NPC_Riderman_readData( meindex, num, FALSE) ) {
|
|||
|
print( "riderman:readdata error\n");
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
fd = getfdFromCharaIndex( toindex);
|
|||
|
if( fd != -1 ) {
|
|||
|
lssproto_WN_send( fd, w.windowtype,
|
|||
|
w.buttontype,
|
|||
|
w.windowno+100,
|
|||
|
CHAR_getWorkInt( meindex, CHAR_WORKOBJINDEX),
|
|||
|
makeEscapeString( w.message, buf, sizeof(buf)));
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void NPC_RidermanWindowTalked( int meindex, int talkerindex,
|
|||
|
int seqno, int select, char *data)
|
|||
|
|
|||
|
{
|
|||
|
|
|||
|
|
|||
|
int button = -1;
|
|||
|
char buf[512];
|
|||
|
|
|||
|
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> */
|
|||
|
if( NPC_Util_CharDistance( talkerindex, meindex ) > 1) return;
|
|||
|
|
|||
|
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ū<EFBFBD><C5AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD> į<><C4AF><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ë <20><> <20><> */
|
|||
|
if( !NPC_Riderman_readData( meindex, seqno - 100, FALSE) ) {
|
|||
|
print( "riderman:readdata error\n");
|
|||
|
return;
|
|||
|
}
|
|||
|
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʾ<EFBFBD><CABE><EFBFBD><EFBFBD>ëƩ<C3AB><C6A9><EFBFBD><EFBFBD> */
|
|||
|
if( w.windowtype == WINDOW_MESSAGETYPE_SELECT ) {
|
|||
|
button = atoi( data)+5;
|
|||
|
if( button > 12 ) {
|
|||
|
print( "riderman:invalid button[%d]\n", button);
|
|||
|
return;
|
|||
|
}
|
|||
|
}
|
|||
|
else if( select & WINDOW_BUTTONTYPE_OK) button = 0;
|
|||
|
else if( select & WINDOW_BUTTONTYPE_CANCEL) button = 1;
|
|||
|
else if( select & WINDOW_BUTTONTYPE_YES) button = 2;
|
|||
|
else if( select & WINDOW_BUTTONTYPE_NO) button = 3;
|
|||
|
else if( select & WINDOW_BUTTONTYPE_PREV) button = 4;
|
|||
|
else if( select & WINDOW_BUTTONTYPE_NEXT) button = 5;
|
|||
|
else {
|
|||
|
print( "riderman:invalid button[%d]\n", select);
|
|||
|
return;
|
|||
|
}
|
|||
|
if( buttonproc[button].use == TRUE ) {
|
|||
|
int fd;
|
|||
|
int newwin = -1;
|
|||
|
|
|||
|
fd = getfdFromCharaIndex( talkerindex);
|
|||
|
|
|||
|
/* ʾ<><CABE><EFBFBD><EFBFBD><EFBFBD>巽<EFBFBD>Ȼ<EFBFBD><C8BB><EFBFBD> ë<><C3AB>Ի<EFBFBD><D4BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
|||
|
if( newwin == -1 ) {
|
|||
|
newwin = buttonproc[button].gotowin;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
//print(" takegold:%d ", w.takegold );
|
|||
|
|
|||
|
// Robin
|
|||
|
// ѧϰ Lv 40
|
|||
|
if( newwin == 6 ) {
|
|||
|
|
|||
|
int charImg;
|
|||
|
// int i, petindex, bFind = 0;
|
|||
|
|
|||
|
charImg = CHAR_getInt( talkerindex, CHAR_BASEBASEIMAGENUMBER);
|
|||
|
if( CHAR_getInt( talkerindex, CHAR_LEARNRIDE ) >= 40 )
|
|||
|
{
|
|||
|
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
|
|||
|
WINDOW_BUTTONTYPE_OK, -1, -1,
|
|||
|
makeEscapeString( "\n\n<EFBFBD><EFBFBD><EFBFBD>Ѿ<EFBFBD>ѧ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѽ<EFBFBD><EFBFBD>\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><EFBFBD>ѧ<EFBFBD>ˡ<EFBFBD>",
|
|||
|
buf, sizeof(buf)));
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
#if 0
|
|||
|
if( !checkLetter( meindex, talkerindex) )
|
|||
|
{
|
|||
|
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
|
|||
|
WINDOW_BUTTONTYPE_OK, -1, -1,
|
|||
|
makeEscapeString( "\n\n<EFBFBD>ܱ<EFBFBD>Ǹร<EFBFBD>\nѧϰ<EFBFBD><EFBFBD><EFBFBD>˳<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><EFBFBD>ׯ<EFBFBD>峤<EFBFBD><EFBFBD>ͬ<EFBFBD><EFBFBD><EFBFBD>顣",
|
|||
|
buf, sizeof(buf)));
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
for( i=0; i<CHAR_MAXPETHAVE ; i++)
|
|||
|
{
|
|||
|
if( bFind ) break;
|
|||
|
petindex = CHAR_getCharPet( talkerindex, i );
|
|||
|
if( CHAR_CHECKINDEX(petindex) )
|
|||
|
{
|
|||
|
int petImg, j;
|
|||
|
|
|||
|
//if( CHAR_getWorkInt( petindex, CHAR_WORKFIXAI ) < 100 )
|
|||
|
// continue;
|
|||
|
petImg = CHAR_getInt( petindex, CHAR_BASEBASEIMAGENUMBER);
|
|||
|
for( j=0; j<arraysizeof(ridePetTable); j++)
|
|||
|
{
|
|||
|
if( ridePetTable[j].charNo == charImg
|
|||
|
&& ridePetTable[j].petNo == petImg )
|
|||
|
{
|
|||
|
bFind = 1;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
if( bFind != 1 )
|
|||
|
{
|
|||
|
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
|
|||
|
WINDOW_BUTTONTYPE_OK, -1, -1,
|
|||
|
makeEscapeString( "\n\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>û<EFBFBD><EFBFBD><EFBFBD>ʺ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>˵ij<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һֻ<EFBFBD><EFBFBD>",
|
|||
|
buf, sizeof(buf)));
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
if( !getLetter( meindex, talkerindex) ) return;
|
|||
|
#endif
|
|||
|
|
|||
|
if( CHAR_getInt( talkerindex, CHAR_GOLD ) < w.takegold )
|
|||
|
{
|
|||
|
char buf2[512];
|
|||
|
|
|||
|
sprintf( buf2, "\n<EFBFBD>ܱ<EFBFBD>Ǹร<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѧ<EFBFBD>Ѳ<EFBFBD><EFBFBD>㣡\nѧϰ<EFBFBD><EFBFBD><EFBFBD>˳<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ%dʯ<64>ҡ<EFBFBD>", w.takegold);
|
|||
|
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
|
|||
|
WINDOW_BUTTONTYPE_OK, -1, -1,
|
|||
|
makeEscapeString( buf2, buf, sizeof(buf)));
|
|||
|
return;
|
|||
|
}
|
|||
|
CHAR_DelGold( talkerindex, w.takegold );
|
|||
|
|
|||
|
CHAR_setInt( talkerindex, CHAR_LEARNRIDE, 40 );
|
|||
|
CHAR_send_P_StatusString( talkerindex, CHAR_P_STRING_GOLD );
|
|||
|
CHAR_send_P_StatusString( talkerindex, CHAR_P_STRING_LEARNRIDE );
|
|||
|
|
|||
|
//sprintf( buf, "R|L|1" );
|
|||
|
//lssproto_FM_send( fd, buf );
|
|||
|
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
|
|||
|
WINDOW_BUTTONTYPE_OK, -1, -1,
|
|||
|
makeEscapeString(
|
|||
|
"\n\n<EFBFBD><EFBFBD>ϲ<EFBFBD>㣡<EFBFBD><EFBFBD><EFBFBD>Ѿ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˳<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ˡ<EFBFBD>\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Lv40 <20><><EFBFBD>µij<C2B5><C4B3>\n<EFBFBD><EFBFBD>С<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ร<EFBFBD>",
|
|||
|
buf, sizeof(buf)));
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
{
|
|||
|
int fmindex, fmindexi, village, i;
|
|||
|
char fmname[256], token[256], buf2[64];
|
|||
|
|
|||
|
sprintf( buf2, "%d", w.takegold/5 );
|
|||
|
for( i=0 ; i<FMPOINTNUM ; i++ ) {
|
|||
|
getStringFromIndexWithDelim(fmpointlist.pointlistarray[i], "|", 9, token, sizeof(token));
|
|||
|
village = atoi(token);
|
|||
|
if( village == CHAR_getInt( meindex, CHAR_FMINDEX ) ) {
|
|||
|
getStringFromIndexWithDelim(fmpointlist.pointlistarray[i], "|", 5, token, sizeof(token));
|
|||
|
fmindex = atoi(token);
|
|||
|
getStringFromIndexWithDelim(fmpointlist.pointlistarray[i], "|", 6, token, sizeof(token));
|
|||
|
strcpy(fmname, token);
|
|||
|
getStringFromIndexWithDelim(fmpointlist.pointlistarray[i], "|", 8, token, sizeof(token));
|
|||
|
fmindexi = atoi(token);
|
|||
|
saacproto_ACFixFMData_send( acfd, fmname, fmindex, fmindexi,
|
|||
|
FM_FIX_FMGOLD, buf2 , "",
|
|||
|
CHAR_getWorkInt(meindex, CHAR_WORKFMCHARINDEX),
|
|||
|
CONNECT_getFdid(fd) );
|
|||
|
|
|||
|
//print(" rider_fm:%s ", fmname);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
// ѧϰ Lv 80
|
|||
|
if( newwin == 7 ) {
|
|||
|
|
|||
|
int charImg;
|
|||
|
// int i, petindex, bFind = 0;
|
|||
|
|
|||
|
|
|||
|
charImg = CHAR_getInt( talkerindex, CHAR_BASEBASEIMAGENUMBER);
|
|||
|
if( CHAR_getInt( talkerindex, CHAR_LEARNRIDE ) >= 80 )
|
|||
|
{
|
|||
|
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
|
|||
|
WINDOW_BUTTONTYPE_OK, -1, -1,
|
|||
|
makeEscapeString( "\n\n<EFBFBD><EFBFBD><EFBFBD>Ѿ<EFBFBD>ѧ<EFBFBD><EFBFBD><EFBFBD>м<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѽ<EFBFBD><EFBFBD>\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><EFBFBD>ѧ<EFBFBD>ˡ<EFBFBD>",
|
|||
|
buf, sizeof(buf)));
|
|||
|
return;
|
|||
|
}
|
|||
|
else if( CHAR_getInt( talkerindex, CHAR_LEARNRIDE ) < 40 )
|
|||
|
{
|
|||
|
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
|
|||
|
WINDOW_BUTTONTYPE_OK, -1, -1,
|
|||
|
makeEscapeString( "\n\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѧ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>м<EFBFBD><EFBFBD><EFBFBD>ࡡ<EFBFBD>",
|
|||
|
buf, sizeof(buf)));
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
#if 0
|
|||
|
if( !checkLetter( meindex, talkerindex) )
|
|||
|
{
|
|||
|
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
|
|||
|
WINDOW_BUTTONTYPE_OK, -1, -1,
|
|||
|
makeEscapeString( "\n\n<EFBFBD>ܱ<EFBFBD>Ǹร<EFBFBD>\nѧϰ<EFBFBD><EFBFBD><EFBFBD>˳<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><EFBFBD>ׯ<EFBFBD>峤<EFBFBD><EFBFBD>ͬ<EFBFBD><EFBFBD><EFBFBD>顣",
|
|||
|
buf, sizeof(buf)));
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
for( i=0; i<CHAR_MAXPETHAVE ; i++)
|
|||
|
{
|
|||
|
if( bFind ) break;
|
|||
|
petindex = CHAR_getCharPet( talkerindex, i );
|
|||
|
if( CHAR_CHECKINDEX(petindex) )
|
|||
|
{
|
|||
|
int petImg, j;
|
|||
|
|
|||
|
petImg = CHAR_getInt( petindex, CHAR_BASEBASEIMAGENUMBER);
|
|||
|
for( j=0; j<arraysizeof(ridePetTable); j++)
|
|||
|
{
|
|||
|
if( ridePetTable[j].charNo == charImg
|
|||
|
&& ridePetTable[j].petNo == petImg )
|
|||
|
{
|
|||
|
bFind = 1;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
if( bFind != 1 )
|
|||
|
{
|
|||
|
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
|
|||
|
WINDOW_BUTTONTYPE_OK, -1, -1,
|
|||
|
makeEscapeString( "\n\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һֻ<EFBFBD>ʺ<EFBFBD><EFBFBD>Լ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>˵ij<EFBFBD><EFBFBD>",
|
|||
|
buf, sizeof(buf)));
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
if( !getLetter( meindex, talkerindex) ) return;
|
|||
|
#endif
|
|||
|
|
|||
|
if( CHAR_getInt( talkerindex, CHAR_GOLD ) < w.takegold )
|
|||
|
{
|
|||
|
char buf2[512];
|
|||
|
|
|||
|
sprintf( buf2, "\n<EFBFBD>ܱ<EFBFBD>Ǹร<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѧ<EFBFBD>Ѳ<EFBFBD><EFBFBD>㣡\nѧϰ<EFBFBD><EFBFBD><EFBFBD>˳<EFBFBD><EFBFBD><EFBFBD><EFBFBD>м<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ%dʯ<64><CAAF>", w.takegold);
|
|||
|
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
|
|||
|
WINDOW_BUTTONTYPE_OK, -1, -1,
|
|||
|
makeEscapeString( buf2, buf, sizeof(buf)));
|
|||
|
return;
|
|||
|
}
|
|||
|
CHAR_DelGold( talkerindex, w.takegold );
|
|||
|
|
|||
|
CHAR_setInt( talkerindex, CHAR_LEARNRIDE, 80 );
|
|||
|
CHAR_send_P_StatusString( talkerindex, CHAR_P_STRING_GOLD );
|
|||
|
CHAR_send_P_StatusString( talkerindex, CHAR_P_STRING_LEARNRIDE );
|
|||
|
|
|||
|
//sprintf( buf, "R|L|1" );
|
|||
|
//lssproto_FM_send( fd, buf );
|
|||
|
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
|
|||
|
WINDOW_BUTTONTYPE_OK, -1, -1,
|
|||
|
makeEscapeString( "\n\n<EFBFBD><EFBFBD>ϲ<EFBFBD>㣡<EFBFBD><EFBFBD><EFBFBD>Ѿ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>м<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ˡ<EFBFBD>\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Lv80 <20><><EFBFBD>µij<C2B5><C4B3>\n<EFBFBD><EFBFBD>С<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ร<EFBFBD>",
|
|||
|
buf, sizeof(buf)));
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
{
|
|||
|
int fmindex, fmindexi, village, i;
|
|||
|
char fmname[256], token[256], buf2[64];
|
|||
|
|
|||
|
sprintf( buf2, "%d", w.takegold/5 );
|
|||
|
for( i=0 ; i<FMPOINTNUM ; i++ ) {
|
|||
|
getStringFromIndexWithDelim(fmpointlist.pointlistarray[i], "|", 9, token, sizeof(token));
|
|||
|
village = atoi(token);
|
|||
|
if( village == CHAR_getInt( meindex, CHAR_FMINDEX ) ) {
|
|||
|
getStringFromIndexWithDelim(fmpointlist.pointlistarray[i], "|", 5, token, sizeof(token));
|
|||
|
fmindex = atoi(token);
|
|||
|
getStringFromIndexWithDelim(fmpointlist.pointlistarray[i], "|", 6, token, sizeof(token));
|
|||
|
strcpy(fmname, token);
|
|||
|
getStringFromIndexWithDelim(fmpointlist.pointlistarray[i], "|", 8, token, sizeof(token));
|
|||
|
fmindexi = atoi(token);
|
|||
|
saacproto_ACFixFMData_send( acfd, fmname, fmindex, fmindexi,
|
|||
|
FM_FIX_FMGOLD, buf2 , "",
|
|||
|
CHAR_getWorkInt(meindex, CHAR_WORKFMCHARINDEX),
|
|||
|
CONNECT_getFdid(fd) );
|
|||
|
|
|||
|
//print(" rider_fm:%s ", fmname);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
// ѧϰ Lv 120
|
|||
|
if( newwin == 8 ) {
|
|||
|
|
|||
|
int charImg;
|
|||
|
// int i, petindex, bFind = 0;
|
|||
|
|
|||
|
|
|||
|
charImg = CHAR_getInt( talkerindex, CHAR_BASEBASEIMAGENUMBER);
|
|||
|
if( CHAR_getInt( talkerindex, CHAR_LEARNRIDE ) >= 120 )
|
|||
|
{
|
|||
|
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
|
|||
|
WINDOW_BUTTONTYPE_OK, -1, -1,
|
|||
|
makeEscapeString( "\n\n<EFBFBD><EFBFBD><EFBFBD>Ѿ<EFBFBD>ѧ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѽ<EFBFBD><EFBFBD>\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><EFBFBD>ѧ<EFBFBD>ˡ<EFBFBD>",
|
|||
|
buf, sizeof(buf)));
|
|||
|
return;
|
|||
|
}
|
|||
|
else if( CHAR_getInt( talkerindex, CHAR_LEARNRIDE ) < 80 )
|
|||
|
{
|
|||
|
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
|
|||
|
WINDOW_BUTTONTYPE_OK, -1, -1,
|
|||
|
makeEscapeString( "\n\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѧ<EFBFBD><EFBFBD><EFBFBD>м<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ࡡ<EFBFBD>",
|
|||
|
buf, sizeof(buf)));
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
#if 0
|
|||
|
if( !checkLetter( meindex, talkerindex) )
|
|||
|
{
|
|||
|
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
|
|||
|
WINDOW_BUTTONTYPE_OK, -1, -1,
|
|||
|
makeEscapeString( "\n\n<EFBFBD>ܱ<EFBFBD>Ǹร<EFBFBD>\nѧϰ<EFBFBD><EFBFBD><EFBFBD>˳<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><EFBFBD>ׯ<EFBFBD>峤<EFBFBD><EFBFBD>ͬ<EFBFBD><EFBFBD><EFBFBD>顣",
|
|||
|
buf, sizeof(buf)));
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
for( i=0; i<CHAR_MAXPETHAVE ; i++)
|
|||
|
{
|
|||
|
if( bFind ) break;
|
|||
|
petindex = CHAR_getCharPet( talkerindex, i );
|
|||
|
if( CHAR_CHECKINDEX(petindex) )
|
|||
|
{
|
|||
|
int petImg, j;
|
|||
|
|
|||
|
petImg = CHAR_getInt( petindex, CHAR_BASEBASEIMAGENUMBER);
|
|||
|
for( j=0; j<arraysizeof(ridePetTable); j++)
|
|||
|
{
|
|||
|
if( ridePetTable[j].charNo == charImg
|
|||
|
&& ridePetTable[j].petNo == petImg )
|
|||
|
{
|
|||
|
bFind = 1;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
if( bFind != 1 )
|
|||
|
{
|
|||
|
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
|
|||
|
WINDOW_BUTTONTYPE_OK, -1, -1,
|
|||
|
makeEscapeString( "\n\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һֻ<EFBFBD>ʺ<EFBFBD><EFBFBD>Լ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>˵ij<EFBFBD><EFBFBD>",
|
|||
|
buf, sizeof(buf)));
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
if( !getLetter( meindex, talkerindex) ) return;
|
|||
|
#endif
|
|||
|
|
|||
|
if( CHAR_getInt( talkerindex, CHAR_GOLD ) < w.takegold )
|
|||
|
{
|
|||
|
char buf2[512];
|
|||
|
|
|||
|
sprintf( buf2, "\n<EFBFBD>ܱ<EFBFBD>Ǹร<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѧ<EFBFBD>Ѳ<EFBFBD><EFBFBD>㣡\nѧϰ<EFBFBD><EFBFBD><EFBFBD>˳<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ%dʯ<64><CAAF>", w.takegold);
|
|||
|
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
|
|||
|
WINDOW_BUTTONTYPE_OK, -1, -1,
|
|||
|
makeEscapeString( buf2, buf, sizeof(buf)));
|
|||
|
return;
|
|||
|
}
|
|||
|
CHAR_DelGold( talkerindex, w.takegold );
|
|||
|
|
|||
|
CHAR_setInt( talkerindex, CHAR_LEARNRIDE, 120 );
|
|||
|
CHAR_send_P_StatusString( talkerindex, CHAR_P_STRING_GOLD );
|
|||
|
CHAR_send_P_StatusString( talkerindex, CHAR_P_STRING_LEARNRIDE );
|
|||
|
|
|||
|
//sprintf( buf, "R|L|1" );
|
|||
|
//lssproto_FM_send( fd, buf );
|
|||
|
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
|
|||
|
WINDOW_BUTTONTYPE_OK, -1, -1,
|
|||
|
makeEscapeString( "\n\n<EFBFBD><EFBFBD>ϲ<EFBFBD>㣡<EFBFBD><EFBFBD><EFBFBD>Ѿ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˸<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ˡ<EFBFBD>\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Lv120 <20><><EFBFBD>µij<C2B5><C4B3>\n<EFBFBD><EFBFBD>С<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ร<EFBFBD>",
|
|||
|
buf, sizeof(buf)));
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
{
|
|||
|
int fmindex, fmindexi, village, i;
|
|||
|
char fmname[256], token[256], buf2[64];
|
|||
|
|
|||
|
sprintf( buf2, "%d", w.takegold/5 );
|
|||
|
for( i=0 ; i<FMPOINTNUM ; i++ ) {
|
|||
|
getStringFromIndexWithDelim(fmpointlist.pointlistarray[i], "|", 9, token, sizeof(token));
|
|||
|
village = atoi(token);
|
|||
|
if( village == CHAR_getInt( meindex, CHAR_FMINDEX ) ) {
|
|||
|
getStringFromIndexWithDelim(fmpointlist.pointlistarray[i], "|", 5, token, sizeof(token));
|
|||
|
fmindex = atoi(token);
|
|||
|
getStringFromIndexWithDelim(fmpointlist.pointlistarray[i], "|", 6, token, sizeof(token));
|
|||
|
strcpy(fmname, token);
|
|||
|
getStringFromIndexWithDelim(fmpointlist.pointlistarray[i], "|", 8, token, sizeof(token));
|
|||
|
fmindexi = atoi(token);
|
|||
|
saacproto_ACFixFMData_send( acfd, fmname, fmindex, fmindexi,
|
|||
|
FM_FIX_FMGOLD, buf2 , "",
|
|||
|
CHAR_getWorkInt(meindex, CHAR_WORKFMCHARINDEX),
|
|||
|
CONNECT_getFdid(fd) );
|
|||
|
|
|||
|
//print(" rider_fm:%s ", fmname);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
// ѧϰ Lv All
|
|||
|
if( newwin == 9 ) {
|
|||
|
|
|||
|
int charImg;
|
|||
|
// int petindex, i, bFind = 0;
|
|||
|
|
|||
|
charImg = CHAR_getInt( talkerindex, CHAR_BASEBASEIMAGENUMBER);
|
|||
|
if( CHAR_getInt( talkerindex, CHAR_LEARNRIDE ) > 120 )
|
|||
|
{
|
|||
|
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
|
|||
|
WINDOW_BUTTONTYPE_OK, -1, -1,
|
|||
|
makeEscapeString( "\n\n<EFBFBD><EFBFBD><EFBFBD>Ѿ<EFBFBD>ѧ<EFBFBD><EFBFBD><EFBFBD>ؼ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѽ<EFBFBD><EFBFBD>\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><EFBFBD>ѧ<EFBFBD>ˡ<EFBFBD>",
|
|||
|
buf, sizeof(buf)));
|
|||
|
return;
|
|||
|
}
|
|||
|
else if( CHAR_getInt( talkerindex, CHAR_LEARNRIDE ) < 120 )
|
|||
|
{
|
|||
|
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
|
|||
|
WINDOW_BUTTONTYPE_OK, -1, -1,
|
|||
|
makeEscapeString( "\n\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѧ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ؼ<EFBFBD><EFBFBD><EFBFBD>ࡡ<EFBFBD>",
|
|||
|
buf, sizeof(buf)));
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
#if 0
|
|||
|
if( !checkLetter( meindex, talkerindex) )
|
|||
|
{
|
|||
|
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
|
|||
|
WINDOW_BUTTONTYPE_OK, -1, -1,
|
|||
|
makeEscapeString( "\n\n<EFBFBD>ܱ<EFBFBD>Ǹร<EFBFBD>\nѧϰ<EFBFBD><EFBFBD><EFBFBD>˳<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><EFBFBD>ׯ<EFBFBD>峤<EFBFBD><EFBFBD>ͬ<EFBFBD><EFBFBD><EFBFBD>顣",
|
|||
|
buf, sizeof(buf)));
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
for( i=0; i<CHAR_MAXPETHAVE ; i++)
|
|||
|
{
|
|||
|
if( bFind ) break;
|
|||
|
petindex = CHAR_getCharPet( talkerindex, i );
|
|||
|
if( CHAR_CHECKINDEX(petindex) )
|
|||
|
{
|
|||
|
int petImg, j;
|
|||
|
|
|||
|
petImg = CHAR_getInt( petindex, CHAR_BASEBASEIMAGENUMBER);
|
|||
|
for( j=0; j<arraysizeof(ridePetTable); j++)
|
|||
|
{
|
|||
|
if( ridePetTable[j].charNo == charImg
|
|||
|
&& ridePetTable[j].petNo == petImg )
|
|||
|
{
|
|||
|
bFind = 1;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
if( bFind != 1 )
|
|||
|
{
|
|||
|
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
|
|||
|
WINDOW_BUTTONTYPE_OK, -1, -1,
|
|||
|
makeEscapeString( "\n\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һֻ<EFBFBD>ʺ<EFBFBD><EFBFBD>Լ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>˵ij<EFBFBD><EFBFBD>",
|
|||
|
buf, sizeof(buf)));
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
if( !getLetter( meindex, talkerindex) ) return;
|
|||
|
#endif
|
|||
|
|
|||
|
if( CHAR_getInt( talkerindex, CHAR_GOLD ) < w.takegold )
|
|||
|
{
|
|||
|
char buf2[512];
|
|||
|
|
|||
|
sprintf( buf2, "\n<EFBFBD>ܱ<EFBFBD>Ǹร<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѧ<EFBFBD>Ѳ<EFBFBD><EFBFBD>㣡\nѧϰ<EFBFBD><EFBFBD><EFBFBD>˳<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ؼ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ%dʯ<64><CAAF>", w.takegold);
|
|||
|
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
|
|||
|
WINDOW_BUTTONTYPE_OK, -1, -1,
|
|||
|
makeEscapeString( buf2, buf, sizeof(buf)));
|
|||
|
return;
|
|||
|
}
|
|||
|
CHAR_DelGold( talkerindex, w.takegold );
|
|||
|
|
|||
|
CHAR_setInt( talkerindex, CHAR_LEARNRIDE, 200 );
|
|||
|
CHAR_send_P_StatusString( talkerindex, CHAR_P_STRING_GOLD );
|
|||
|
CHAR_send_P_StatusString( talkerindex, CHAR_P_STRING_LEARNRIDE );
|
|||
|
|
|||
|
//sprintf( buf, "R|L|1" );
|
|||
|
//lssproto_FM_send( fd, buf );
|
|||
|
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
|
|||
|
WINDOW_BUTTONTYPE_OK, -1, -1,
|
|||
|
makeEscapeString( "\n\n<EFBFBD><EFBFBD>ϲ<EFBFBD>㣡<EFBFBD><EFBFBD><EFBFBD>Ѿ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ؼ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ˡ<EFBFBD>\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>еȼ<EFBFBD><EFBFBD>ij<EFBFBD><EFBFBD>\n<EFBFBD><EFBFBD>С<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ร<EFBFBD>",
|
|||
|
buf, sizeof(buf)));
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
{
|
|||
|
int fmindex, fmindexi, village, i;
|
|||
|
char fmname[256], token[256], buf2[64];
|
|||
|
|
|||
|
sprintf( buf2, "%d", w.takegold/5 );
|
|||
|
for( i=0 ; i<FMPOINTNUM ; i++ ) {
|
|||
|
getStringFromIndexWithDelim(fmpointlist.pointlistarray[i], "|", 9, token, sizeof(token));
|
|||
|
village = atoi(token);
|
|||
|
if( village == CHAR_getInt( meindex, CHAR_FMINDEX ) ) {
|
|||
|
getStringFromIndexWithDelim(fmpointlist.pointlistarray[i], "|", 5, token, sizeof(token));
|
|||
|
fmindex = atoi(token);
|
|||
|
getStringFromIndexWithDelim(fmpointlist.pointlistarray[i], "|", 6, token, sizeof(token));
|
|||
|
strcpy(fmname, token);
|
|||
|
getStringFromIndexWithDelim(fmpointlist.pointlistarray[i], "|", 8, token, sizeof(token));
|
|||
|
fmindexi = atoi(token);
|
|||
|
saacproto_ACFixFMData_send( acfd, fmname, fmindex, fmindexi,
|
|||
|
FM_FIX_FMGOLD, buf2 , "",
|
|||
|
CHAR_getWorkInt(meindex, CHAR_WORKFMCHARINDEX),
|
|||
|
CONNECT_getFdid(fd) );
|
|||
|
|
|||
|
//print(" rider_fm:%s ", fmname);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
// ˵<><CBB5> , <20>б<EFBFBD>
|
|||
|
if( newwin == 5 )
|
|||
|
{
|
|||
|
|
|||
|
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_SHOWRIDEPET,
|
|||
|
WINDOW_BUTTONTYPE_OK, -1, -1,
|
|||
|
"" );
|
|||
|
return;
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
if( !NPC_Riderman_readData( meindex, newwin, FALSE) ) {
|
|||
|
print( "riderman:readdata error\n");
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
#if 0
|
|||
|
|
|||
|
#endif
|
|||
|
|
|||
|
//fd = getfdFromCharaIndex( talkerindex);
|
|||
|
if( fd != -1 ) {
|
|||
|
lssproto_WN_send( fd, w.windowtype,
|
|||
|
w.buttontype,
|
|||
|
w.windowno+100,
|
|||
|
CHAR_getWorkInt( meindex, CHAR_WORKOBJINDEX),
|
|||
|
makeEscapeString( w.message, buf, sizeof(buf)));
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
/*
|
|||
|
* ɬ<EFBFBD>ð<EFBFBD><EFBFBD><EFBFBD><EFBFBD>̻<EFBFBD>ë <EFBFBD><EFBFBD>ƥ϶<EFBFBD>ý<EFBFBD>ľ<EFBFBD><EFBFBD>windowno<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ë<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
*
|
|||
|
* ¦<EFBFBD>ѡ<EFBFBD>
|
|||
|
* meindex int <EFBFBD><EFBFBD><EFBFBD><EFBFBD>NPC<EFBFBD><EFBFBD>charaindex
|
|||
|
* windowno int <EFBFBD><EFBFBD>ū<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> į
|
|||
|
*
|
|||
|
*/
|
|||
|
static BOOL NPC_Riderman_readData( int meindex, int windowno, BOOL chkflg)
|
|||
|
{
|
|||
|
|
|||
|
int i;
|
|||
|
int linenum = 0;
|
|||
|
int endflg = FALSE;
|
|||
|
int buttonendflg;
|
|||
|
int winno = -1;
|
|||
|
int buttonconfmode;
|
|||
|
int b_mode;
|
|||
|
int selectnum ;
|
|||
|
int messagepos;
|
|||
|
BOOL errflg = FALSE;
|
|||
|
BOOL readflg = TRUE;
|
|||
|
FILE *fp;
|
|||
|
char argstr[NPC_UTIL_GETARGSTR_BUFSIZE];
|
|||
|
char filename[64];
|
|||
|
char opfile[128];
|
|||
|
char line[1024];
|
|||
|
char firstToken[1024];
|
|||
|
char secondToken[1024];
|
|||
|
|
|||
|
/* <20><>ū<EFBFBD><C5AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɬ<EFBFBD><C9AC>ë Ի <20><><EFBFBD><EFBFBD>հ */
|
|||
|
|
|||
|
NPC_Util_GetArgStr( meindex, argstr, sizeof( argstr));
|
|||
|
/* ɬ<>ð<EFBFBD><C3B0><EFBFBD><EFBFBD>̻<EFBFBD> <20><> */
|
|||
|
NPC_Util_GetStrFromStrWithDelim( argstr, "conff", filename, sizeof( filename));
|
|||
|
|
|||
|
sprintf( opfile, "%s/", getNpcdir( ) );
|
|||
|
strcat( opfile, filename);
|
|||
|
|
|||
|
fp = fopen( opfile, "r");
|
|||
|
if( fp == NULL ) {
|
|||
|
print( "riderman:file open error [%s]\n", opfile);
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
|
|||
|
while( readflg == TRUE ) {
|
|||
|
endflg = FALSE;
|
|||
|
buttonendflg = TRUE;
|
|||
|
buttonconfmode = FALSE;
|
|||
|
selectnum = 0;
|
|||
|
messagepos = 0;
|
|||
|
winno = -1;
|
|||
|
b_mode = -1;
|
|||
|
errflg = FALSE;
|
|||
|
|
|||
|
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
|||
|
w.windowno = -1;
|
|||
|
w.windowtype = -1;
|
|||
|
w.buttontype = -1;
|
|||
|
w.takeitem = -1;
|
|||
|
w.giveitem = -1;
|
|||
|
w.takegold = 0;
|
|||
|
w.message[0] = '\0';
|
|||
|
|
|||
|
for( i = 0; i < arraysizeof( buttonproc); i ++ ) {
|
|||
|
buttonproc[i].use = FALSE;
|
|||
|
buttonproc[i].checkhaveitem = -1;
|
|||
|
buttonproc[i].checkhaveitemgotowin = -1;
|
|||
|
buttonproc[i].checkdonthaveitem = -1;
|
|||
|
buttonproc[i].checkdonthaveitemgotowin = -1;
|
|||
|
buttonproc[i].warp = -1;
|
|||
|
buttonproc[i].battle = -1;
|
|||
|
buttonproc[i].gotowin = -1;
|
|||
|
}
|
|||
|
|
|||
|
while( 1) {
|
|||
|
char buf[256];
|
|||
|
int ret;
|
|||
|
if( !fgets( line, sizeof( line), fp)){
|
|||
|
readflg = FALSE;
|
|||
|
break;
|
|||
|
}
|
|||
|
|
|||
|
linenum ++;
|
|||
|
|
|||
|
/* <20>춪<EFBFBD><ECB6AA><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> */
|
|||
|
if( line[0] == '#' || line[0] == '\n') continue;
|
|||
|
/* ݱ<><DDB1><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
|||
|
chomp( line );
|
|||
|
|
|||
|
/* <20><>ë<EFBFBD><C3AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
|||
|
/* <20><><EFBFBD><EFBFBD> tab ë " " <20><> <20>徧<EFBFBD><E5BEA7><EFBFBD><EFBFBD> */
|
|||
|
replaceString( line, '\t' , ' ' );
|
|||
|
/* <20><> <20><><EFBFBD><EFBFBD>ʸ<EFBFBD><CAB8><EFBFBD><EFBFBD>ë<EFBFBD><C3AB><EFBFBD>£<EFBFBD>*/
|
|||
|
for( i = 0; i < strlen( line); i ++) {
|
|||
|
if( line[i] != ' ' ) {
|
|||
|
break;
|
|||
|
}
|
|||
|
strcpy( buf, &line[i]);
|
|||
|
}
|
|||
|
if( i != 0 ) strcpy( line, buf);
|
|||
|
|
|||
|
/* delim "=" ƥ <20><>(1)<29><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͼ<EFBFBD>ë <20><>*/
|
|||
|
ret = getStringFromIndexWithDelim( line, "=", 1, firstToken,
|
|||
|
sizeof( firstToken ) );
|
|||
|
if( ret == FALSE ){
|
|||
|
print( "Find error at %s in line %d. Ignore\n",
|
|||
|
filename , linenum);
|
|||
|
continue;
|
|||
|
}
|
|||
|
/* delim "=" ƥ2 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͼ<EFBFBD>ë <20><>*/
|
|||
|
ret = getStringFromIndexWithDelim( line, "=", 2, secondToken,
|
|||
|
sizeof( secondToken ) );
|
|||
|
if( ret == FALSE ){
|
|||
|
print( "Find error at %s in line %d. Ignore\n",
|
|||
|
filename , linenum);
|
|||
|
continue;
|
|||
|
}
|
|||
|
|
|||
|
if( strcasecmp( firstToken, "winno") == 0 ) {
|
|||
|
if( winno != -1 ) {
|
|||
|
print( "riderman:<3A><><EFBFBD><EFBFBD>winnoȴ<6F><C8B4><EFBFBD>¶<EFBFBD><C2B6><EFBFBD>winno\n");
|
|||
|
print( "filename:[%s] line[%d]\n", filename, linenum);
|
|||
|
errflg = TRUE;
|
|||
|
readflg = FALSE;
|
|||
|
break;
|
|||
|
}
|
|||
|
/* <20><>ū<EFBFBD><C5AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Noë<6F><C3AB><EFBFBD><EFBFBD> */
|
|||
|
winno = atoi( secondToken);
|
|||
|
continue;
|
|||
|
}
|
|||
|
|
|||
|
/* <20><>ū<EFBFBD><C5AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>No <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȼ<EFBFBD><C8BB><EFBFBD>ئ<EFBFBD><D8A6><EFBFBD>ݼ<EFBFBD><DDBC>淴 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
|||
|
if( winno == -1 ) {
|
|||
|
print( "riderman:winno <20><>δ<EFBFBD><CEB4><EFBFBD>壬<EFBFBD><E5A3AC><EFBFBD><EFBFBD>ȴ<EFBFBD><C8B4><EFBFBD>趨<EFBFBD><E8B6A8>\n");
|
|||
|
print( "filename:[%s] line[%d]\n", filename, linenum);
|
|||
|
readflg = FALSE;
|
|||
|
errflg = FALSE;
|
|||
|
break;
|
|||
|
}
|
|||
|
/* <20><>ū<EFBFBD><C5AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>No <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݷ<EFBFBD><DDB7><EFBFBD><EFBFBD><EFBFBD>ë <20><><EFBFBD><EFBFBD>
|
|||
|
* <EFBFBD><EFBFBD>ľ<EFBFBD><EFBFBD>½<EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
|||
|
if( (chkflg == FALSE && winno == windowno )||
|
|||
|
chkflg == TRUE)
|
|||
|
{
|
|||
|
if( buttonconfmode == TRUE ) {
|
|||
|
if( strcasecmp( firstToken, "gotowin") == 0 ) {
|
|||
|
buttonproc[b_mode].gotowin = atoi( secondToken);
|
|||
|
}
|
|||
|
else if( strcasecmp( firstToken, "checkhaveitem") == 0 ) {
|
|||
|
buttonproc[b_mode].checkhaveitem = atoi( secondToken);
|
|||
|
}
|
|||
|
else if( strcasecmp( firstToken, "haveitemgotowin") == 0 ) {
|
|||
|
buttonproc[b_mode].checkhaveitemgotowin = atoi( secondToken);
|
|||
|
}
|
|||
|
else if( strcasecmp( firstToken, "checkdonthaveitem") == 0 ) {
|
|||
|
buttonproc[b_mode].checkdonthaveitem = atoi( secondToken);
|
|||
|
}
|
|||
|
else if( strcasecmp( firstToken, "donthaveitemgotowin") == 0 ) {
|
|||
|
buttonproc[b_mode].checkdonthaveitemgotowin = atoi( secondToken);
|
|||
|
}
|
|||
|
else if( strcasecmp( firstToken, "endbutton") == 0 ) {
|
|||
|
if( buttonproc[b_mode].gotowin == - 1 ) {
|
|||
|
if( buttonproc[b_mode].checkhaveitem == -1 &&
|
|||
|
buttonproc[b_mode].checkdonthaveitem == -1)
|
|||
|
{
|
|||
|
errflg = TRUE;
|
|||
|
}
|
|||
|
else {
|
|||
|
/* <20><><EFBFBD><EFBFBD><EFBFBD>о<EFBFBD><D0BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȵ<EFBFBD><C8B5><EFBFBD><EFBFBD><EFBFBD>ƥ<EFBFBD><C6A5>ɬ<EFBFBD>ý<EFBFBD>ľ<EFBFBD><C4BE><EFBFBD><EFBFBD>ľ<EFBFBD><C4BE> */
|
|||
|
if( !((buttonproc[b_mode].checkhaveitem != -1 &&
|
|||
|
buttonproc[b_mode].checkhaveitemgotowin != -1)
|
|||
|
|| (buttonproc[b_mode].checkdonthaveitem != -1 &&
|
|||
|
buttonproc[b_mode].checkdonthaveitemgotowin != -1)))
|
|||
|
{
|
|||
|
errflg = TRUE;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
if( errflg == TRUE) {
|
|||
|
print( "riderman: <20>Ҳ<EFBFBD><D2B2><EFBFBD>gotowin\n");
|
|||
|
print( "filename:[%s] line[%d]\n", filename, linenum);
|
|||
|
readflg = FALSE;
|
|||
|
errflg = TRUE;
|
|||
|
break;
|
|||
|
}
|
|||
|
buttonproc[b_mode].use = TRUE;
|
|||
|
buttonconfmode = FALSE;
|
|||
|
buttonendflg = TRUE;
|
|||
|
}
|
|||
|
}
|
|||
|
else {
|
|||
|
|
|||
|
w.windowno = winno;
|
|||
|
/* <20><>ū<EFBFBD><C5AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɬ<EFBFBD><C9AC> */
|
|||
|
if( strcasecmp( firstToken, "wintype") == 0 ) {
|
|||
|
w.windowtype = atoi( secondToken);
|
|||
|
}
|
|||
|
/* ʾ<><CABE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɬ<EFBFBD><C9AC> */
|
|||
|
else if( strcasecmp( firstToken, "buttontype") == 0 ) {
|
|||
|
w.buttontype = NPC_Riderman_restoreButtontype( secondToken);
|
|||
|
}
|
|||
|
/* getitem<65><6D>ɬ<EFBFBD><C9AC> */
|
|||
|
else if( strcasecmp( firstToken, "takeitem") == 0 ) {
|
|||
|
w.takeitem = atoi( secondToken);
|
|||
|
}
|
|||
|
/* giveitem<65><6D>ɬ<EFBFBD><C9AC> */
|
|||
|
else if( strcasecmp( firstToken, "giveitem") == 0 ) {
|
|||
|
w.giveitem = atoi( secondToken);
|
|||
|
}
|
|||
|
|
|||
|
/* takegold ѧ<><D1A7> */
|
|||
|
else if( strcasecmp( firstToken, "takegold") == 0 ) {
|
|||
|
w.takegold = atoi( secondToken);
|
|||
|
}
|
|||
|
|
|||
|
// Robin
|
|||
|
else if( strcasecmp( firstToken, "letter1") == 0 ) {
|
|||
|
w.letter[0] = atoi( secondToken);
|
|||
|
}
|
|||
|
else if( strcasecmp( firstToken, "letter2") == 0 ) {
|
|||
|
w.letter[1] = atoi( secondToken);
|
|||
|
}
|
|||
|
else if( strcasecmp( firstToken, "letter3") == 0 ) {
|
|||
|
w.letter[2] = atoi( secondToken);
|
|||
|
}
|
|||
|
else if( strcasecmp( firstToken, "letter4") == 0 ) {
|
|||
|
w.letter[3] = atoi( secondToken);
|
|||
|
}
|
|||
|
|
|||
|
/* message<67><65>ɬ<EFBFBD><C9AC> */
|
|||
|
else if( strcasecmp( firstToken, "message") == 0 ) {
|
|||
|
if( messagepos == 0 ) {
|
|||
|
strcpy( w.message, secondToken);
|
|||
|
messagepos = strlen( w.message);
|
|||
|
}
|
|||
|
else {
|
|||
|
w.message[messagepos]='\n';
|
|||
|
messagepos++;
|
|||
|
strcpy( &w.message[messagepos], secondToken);
|
|||
|
messagepos+=strlen(secondToken);
|
|||
|
}
|
|||
|
}
|
|||
|
/* ʾ<><CABE><EFBFBD><EFBFBD>ë<EFBFBD><C3AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݼ<EFBFBD>ɬ<EFBFBD><C9AC> */
|
|||
|
else if( strcasecmp( firstToken, "okpressed") == 0 ) {
|
|||
|
buttonconfmode = TRUE;
|
|||
|
b_mode = 0;
|
|||
|
buttonendflg = FALSE;
|
|||
|
}
|
|||
|
else if( strcasecmp( firstToken, "cancelpressed") == 0 ) {
|
|||
|
buttonconfmode = TRUE;
|
|||
|
b_mode = 1;
|
|||
|
buttonendflg = FALSE;
|
|||
|
}
|
|||
|
else if( strcasecmp( firstToken, "yespressed") == 0 ) {
|
|||
|
buttonconfmode = TRUE;
|
|||
|
b_mode = 2;
|
|||
|
buttonendflg = FALSE;
|
|||
|
}
|
|||
|
else if( strcasecmp( firstToken, "nopressed") == 0 ) {
|
|||
|
buttonconfmode = TRUE;
|
|||
|
b_mode = 3;
|
|||
|
buttonendflg = FALSE;
|
|||
|
}
|
|||
|
else if( strcasecmp( firstToken, "prevpressed") == 0 ) {
|
|||
|
buttonconfmode = TRUE;
|
|||
|
b_mode = 4;
|
|||
|
buttonendflg = FALSE;
|
|||
|
}
|
|||
|
else if( strcasecmp( firstToken, "nextpressed") == 0 ) {
|
|||
|
buttonconfmode = TRUE;
|
|||
|
b_mode = 5;
|
|||
|
buttonendflg = FALSE;
|
|||
|
}
|
|||
|
else if( strcasecmp( firstToken, "selected") == 0 ) {
|
|||
|
buttonconfmode = TRUE;
|
|||
|
b_mode = 6 + selectnum;
|
|||
|
buttonendflg = FALSE;
|
|||
|
selectnum ++;
|
|||
|
}
|
|||
|
/* ɬ<>ñδ<C3B1>Ի */
|
|||
|
else if( strcasecmp( firstToken, "endwin") == 0 ) {
|
|||
|
endflg = TRUE;
|
|||
|
if( chkflg == FALSE) {
|
|||
|
readflg = FALSE;
|
|||
|
}
|
|||
|
break;
|
|||
|
}
|
|||
|
else {
|
|||
|
print( "riderman:<3A>趨<EFBFBD>Dz<EFBFBD><C7B2><EFBFBD><EFBFBD>ܵIJ<DCB5><C4B2><EFBFBD>\n");
|
|||
|
print( "filename:[%s] line[%d]\n", filename, linenum);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
else {
|
|||
|
if( strcasecmp( firstToken, "endwin") == 0 ) {
|
|||
|
winno = -1;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
if( buttonendflg == FALSE) {
|
|||
|
print( "riderman: <20>Ҳ<EFBFBD><D2B2><EFBFBD>endbutton\n");
|
|||
|
print( "filename:[%s] line[%d]\n", filename, linenum);
|
|||
|
errflg = TRUE;
|
|||
|
break;
|
|||
|
}
|
|||
|
if( winno != -1 ) {
|
|||
|
if( w.windowtype == -1 ) {
|
|||
|
print( "riderman: <20>Ҳ<EFBFBD><D2B2><EFBFBD>wintype\n");
|
|||
|
print( "filename:[%s] line[%d]\n", filename, linenum);
|
|||
|
errflg = TRUE;
|
|||
|
break;
|
|||
|
}
|
|||
|
if( w.buttontype == -1 ) {
|
|||
|
print( "riderman: <20>Ҳ<EFBFBD><D2B2><EFBFBD>button\n");
|
|||
|
print( "filename:[%s] line[%d]\n", filename, linenum);
|
|||
|
errflg = TRUE;
|
|||
|
break;
|
|||
|
}
|
|||
|
if( strlen( w.message) == 0 ) {
|
|||
|
print( "riderman: <20>Ҳ<EFBFBD><D2B2><EFBFBD>message\n");
|
|||
|
print( "filename:[%s] line[%d]\n", filename, linenum);
|
|||
|
errflg = TRUE;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
fclose( fp);
|
|||
|
|
|||
|
if( chkflg == FALSE && w.windowno == -1 ) {
|
|||
|
print( "riderman: <20>Ҳ<EFBFBD><D2B2><EFBFBD><EFBFBD><EFBFBD>ָ<EFBFBD><D6B8><EFBFBD><EFBFBD>windowno\n");
|
|||
|
print( "filename:[%s] line[%d]\n", filename, linenum);
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
if( winno != -1 && endflg == FALSE) {
|
|||
|
print( "riderman: <20>Ҳ<EFBFBD><D2B2><EFBFBD>endwin\n");
|
|||
|
print( "filename:[%s] line[%d]\n", filename, linenum);
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
if( errflg == TRUE) return FALSE;
|
|||
|
|
|||
|
return TRUE;
|
|||
|
}
|
|||
|
/*
|
|||
|
* buttontype=ƥ϶<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ٯ ë<EFBFBD>Ѱ<EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>£<EFBFBD>
|
|||
|
*
|
|||
|
*/
|
|||
|
static int NPC_Riderman_restoreButtontype( char *data )
|
|||
|
{
|
|||
|
int ret = 0;
|
|||
|
int rc;
|
|||
|
int i;
|
|||
|
char buff[1024];
|
|||
|
|
|||
|
for( i = 1; ; i ++ ) {
|
|||
|
rc = getStringFromIndexWithDelim( data, "|", i, buff,
|
|||
|
sizeof( buff ) );
|
|||
|
if( rc == FALSE) break;
|
|||
|
if( strcasecmp( buff, "ok") == 0 ) {
|
|||
|
ret |= WINDOW_BUTTONTYPE_OK;
|
|||
|
}
|
|||
|
else if( strcasecmp( buff, "cancel") == 0 ) {
|
|||
|
ret |= WINDOW_BUTTONTYPE_CANCEL;
|
|||
|
}
|
|||
|
else if( strcasecmp( buff, "yes") == 0 ) {
|
|||
|
ret |= WINDOW_BUTTONTYPE_YES;
|
|||
|
}
|
|||
|
else if( strcasecmp( buff, "no") == 0 ) {
|
|||
|
ret |= WINDOW_BUTTONTYPE_NO;
|
|||
|
}
|
|||
|
else if( strcasecmp( buff, "prev") == 0 ) {
|
|||
|
ret |= WINDOW_BUTTONTYPE_PREV;
|
|||
|
}
|
|||
|
else if( strcasecmp( buff, "next") == 0 ) {
|
|||
|
ret |= WINDOW_BUTTONTYPE_NEXT;
|
|||
|
}
|
|||
|
}
|
|||
|
if( ret == 0 ) {
|
|||
|
ret = atoi( data);
|
|||
|
}
|
|||
|
return ret;
|
|||
|
}
|
|||
|
|
|||
|
#if 0
|
|||
|
static BOOL checkLetter(int meindex,int talker )
|
|||
|
{
|
|||
|
int i;
|
|||
|
int itemindex=-1;
|
|||
|
int id;
|
|||
|
int itemNo = w.letter[CHAR_getInt( meindex, CHAR_FMINDEX ) -1];
|
|||
|
|
|||
|
for( i=0;i<CHAR_MAXITEMHAVE;i++ ){
|
|||
|
|
|||
|
itemindex=CHAR_getItemIndex( talker , i );
|
|||
|
if( ITEM_CHECKINDEX(itemindex) ){
|
|||
|
id=ITEM_getInt(itemindex ,ITEM_ID );
|
|||
|
if( itemNo == id )
|
|||
|
{
|
|||
|
return TRUE;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
|
|||
|
static BOOL getLetter(int meindex,int talker )
|
|||
|
{
|
|||
|
int i;
|
|||
|
int itemindex=-1;
|
|||
|
int id;
|
|||
|
int itemNo = w.letter[CHAR_getInt( meindex, CHAR_FMINDEX ) -1];
|
|||
|
char buf[1024];
|
|||
|
|
|||
|
for( i=0;i<CHAR_MAXITEMHAVE;i++ ){
|
|||
|
|
|||
|
itemindex=CHAR_getItemIndex( talker , i );
|
|||
|
if( ITEM_CHECKINDEX(itemindex) ){
|
|||
|
id=ITEM_getInt(itemindex ,ITEM_ID );
|
|||
|
if( itemNo == id )
|
|||
|
{
|
|||
|
LogItem(
|
|||
|
CHAR_getChar( talker, CHAR_NAME ), /* ƽ<>ҷ<EFBFBD> */
|
|||
|
CHAR_getChar( talker, CHAR_CDKEY ),
|
|||
|
#ifdef _add_item_log_name // WON ADD <20><>item<65><6D>log<6F><67><EFBFBD><EFBFBD><EFBFBD><EFBFBD>item<65><6D><EFBFBD><EFBFBD>
|
|||
|
itemindex,
|
|||
|
#else
|
|||
|
itemNo, /* ʧ<><CAA7> ة į */
|
|||
|
#endif
|
|||
|
"RiderManDelItem",
|
|||
|
CHAR_getInt( talker, CHAR_FLOOR),
|
|||
|
CHAR_getInt( talker, CHAR_X ),
|
|||
|
CHAR_getInt( talker, CHAR_Y ),
|
|||
|
ITEM_getChar( itemindex, ITEM_UNIQUECODE),
|
|||
|
ITEM_getChar( itemindex, ITEM_NAME),
|
|||
|
ITEM_getInt( itemindex, ITEM_ID)
|
|||
|
);
|
|||
|
CHAR_DelItem( talker, i) ;
|
|||
|
return TRUE;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
#endif
|
|||
|
|