6280 lines
192 KiB
C
6280 lines
192 KiB
C
![]() |
#include "version.h"
|
|||
|
#include <stdio.h>
|
|||
|
#include <string.h>
|
|||
|
#include <ctype.h>
|
|||
|
#include <math.h>
|
|||
|
#include <malloc.h>
|
|||
|
#include <time.h>
|
|||
|
#include <stdlib.h>
|
|||
|
#include "common.h"
|
|||
|
#include "char.h"
|
|||
|
#include "util.h"
|
|||
|
#include "buf.h"
|
|||
|
#include "npcutil.h"
|
|||
|
#include "char_base.h"
|
|||
|
#include "object.h"
|
|||
|
#include "char_data.h"
|
|||
|
#include "handletime.h"
|
|||
|
#include "chatmagic.h"
|
|||
|
#include "configfile.h"
|
|||
|
#include "readmap.h"
|
|||
|
#include "map_deal.h"
|
|||
|
#include "lssproto_serv.h"
|
|||
|
#include "log.h"
|
|||
|
#include "battle.h"
|
|||
|
#include "pet.h"
|
|||
|
#include "enemy.h"
|
|||
|
#include "encount.h"
|
|||
|
#include "magic_base.h"
|
|||
|
#include "magic.h"
|
|||
|
#include "pet_skill.h"
|
|||
|
#include "pet_event.h"
|
|||
|
#include "item_gen.h"
|
|||
|
#include "mclient.h"
|
|||
|
#include "npc_eventaction.h"
|
|||
|
#include "map_warppoint.h"
|
|||
|
#include "npc_manorsman.h"
|
|||
|
#include "net.h"
|
|||
|
#include "saacproto_cli.h"
|
|||
|
#include "npc_scheduleman.h"
|
|||
|
#include "trade.h"
|
|||
|
#include "npccreate.h"
|
|||
|
|
|||
|
#ifdef _CHAR_PROFESSION // WON ADD <20><><EFBFBD><EFBFBD>ְҵ
|
|||
|
#include "profession_skill.h"
|
|||
|
#endif
|
|||
|
#include "char_talk.h"
|
|||
|
|
|||
|
// WON ADD <20><><EFBFBD><EFBFBD><EFBFBD>峤<EFBFBD><E5B3A4><EFBFBD><EFBFBD>
|
|||
|
#include "family.h"
|
|||
|
|
|||
|
#include "petmail.h"
|
|||
|
|
|||
|
#ifdef _AUTO_PK
|
|||
|
#include "npc_autopk.h"
|
|||
|
#endif
|
|||
|
#ifdef _ALLBLUES_LUA
|
|||
|
#include "mylua/ablua.h"
|
|||
|
#endif
|
|||
|
// WON ADD <20><><EFBFBD>¶<EFBFBD>ȡITEMSET.TXT
|
|||
|
#include "item.h"
|
|||
|
#include "sasql.h"
|
|||
|
|
|||
|
extern tagRidePetTable ridePetTable[296];
|
|||
|
extern int *pWorkAttackPower;
|
|||
|
extern time_t initTime;
|
|||
|
int *pWorkAttackPower = NULL;
|
|||
|
|
|||
|
struct GMINFO gminfo[GMMAXNUM];
|
|||
|
#ifdef _JOB_AUTOPK
|
|||
|
int jobautopk=0;
|
|||
|
#endif
|
|||
|
|
|||
|
extern char mmcdkey[10][32];
|
|||
|
extern char mmcdkeybuf[10][64];
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_warp( int charindex , char *message )
|
|||
|
{
|
|||
|
char token[100];
|
|||
|
int fl,x,y;
|
|||
|
easyGetTokenFromString( message , 1 , token, sizeof(token));
|
|||
|
fl = atoi( token );
|
|||
|
easyGetTokenFromString( message , 2 , token , sizeof(token));
|
|||
|
x = atoi( token );
|
|||
|
easyGetTokenFromString( message , 3 , token , sizeof(token));
|
|||
|
y = atoi( token );
|
|||
|
|
|||
|
CHAR_warpToSpecificPoint(charindex, fl, x, y);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_hp( int charindex , char *message )
|
|||
|
{
|
|||
|
CHAR_setInt( charindex , CHAR_HP,atoi( message ) );
|
|||
|
CHAR_complianceParameter( charindex );
|
|||
|
CHAR_send_P_StatusString( charindex , CHAR_P_STRING_HP);
|
|||
|
}
|
|||
|
void CHAR_CHAT_DEBUG_setmp( int charindex , char *message )
|
|||
|
{
|
|||
|
int i;
|
|||
|
char setmp[15];
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
char token[128];
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
easyGetTokenFromString( message , 1 , setmp, sizeof(setmp));
|
|||
|
easyGetTokenFromString( message , 2 , cdkey, sizeof(cdkey));
|
|||
|
if(strlen(cdkey)>0){
|
|||
|
for(i=0;i<playernum;i++){
|
|||
|
if(CHAR_CHECKINDEX(i) == FALSE) continue;
|
|||
|
if(!strcmp( CHAR_getChar( i, CHAR_CDKEY), cdkey))
|
|||
|
{
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if (i>=playernum)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD><EFBFBD>˺Ų<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~", CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
CHAR_setInt( i , CHAR_MAXMP, atoi( setmp ) );
|
|||
|
CHAR_setInt( i , CHAR_MP, atoi( setmp ) );
|
|||
|
CHAR_complianceParameter( i );
|
|||
|
CHAR_send_P_StatusString( i , CHAR_P_STRING_MP);
|
|||
|
sprintf( token, "[GM]%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD>MP<4D><50><EFBFBD><EFBFBD>Ϊ%d!", CHAR_getChar( charindex, CHAR_NAME),(int)atoi(setmp)/100);
|
|||
|
CHAR_talkToCli( i, -1, token, CHAR_COLORYELLOW );
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73>MP<4D><50><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!", CHAR_getChar( i, CHAR_NAME),(int)atoi(setmp)/100);
|
|||
|
CHAR_talkToCli( charindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}else{
|
|||
|
CHAR_setInt( charindex , CHAR_MAXMP, atoi( setmp ) );
|
|||
|
CHAR_setInt( charindex , CHAR_MP, atoi( setmp ) );
|
|||
|
CHAR_complianceParameter( charindex );
|
|||
|
CHAR_send_P_StatusString( charindex , CHAR_P_STRING_MP);
|
|||
|
sprintf( token, "MP<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!",(int)atoi(setmp)/100);
|
|||
|
CHAR_talkToCli( charindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_mp( int charindex , char *message )
|
|||
|
{
|
|||
|
int Mymp;
|
|||
|
CHAR_setInt( charindex , CHAR_MP, atoi( message ) );
|
|||
|
Mymp = CHAR_getWorkInt( charindex , CHAR_WORKMAXMP);
|
|||
|
if( Mymp > CHAR_getWorkInt( charindex , CHAR_WORKMAXMP) )
|
|||
|
CHAR_setInt( charindex , CHAR_MP, CHAR_getWorkInt( charindex , CHAR_WORKMAXMP));
|
|||
|
|
|||
|
CHAR_complianceParameter( charindex );
|
|||
|
//CHAR_sendStatusString( charindex , "P");
|
|||
|
CHAR_send_P_StatusString( charindex , CHAR_P_STRING_MP);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_str( int charindex , char *message )
|
|||
|
{
|
|||
|
int i;
|
|||
|
char str[15];
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
char token[128];
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
easyGetTokenFromString( message , 1 , str, sizeof(str));
|
|||
|
easyGetTokenFromString( message , 2 , cdkey, sizeof(cdkey));
|
|||
|
if(strlen(cdkey)>0){
|
|||
|
for(i=0;i<playernum;i++){
|
|||
|
if(CHAR_CHECKINDEX(i) == FALSE) continue;
|
|||
|
if(!strcmp( CHAR_getChar( i, CHAR_CDKEY), cdkey))
|
|||
|
{
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if (i>=playernum)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD><EFBFBD>˺Ų<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~", CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
CHAR_setInt( i , CHAR_STR,atoi( str ) );
|
|||
|
CHAR_complianceParameter( i );
|
|||
|
//CHAR_sendStatusString( charindex , "P");
|
|||
|
CHAR_send_P_StatusString( i ,CHAR_P_STRING_STR|CHAR_P_STRING_MAXHP|CHAR_P_STRING_ATK);
|
|||
|
sprintf( token, "[GM]%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!", CHAR_getChar( charindex, CHAR_NAME),(int)atoi(str)/100);
|
|||
|
CHAR_talkToCli( i, -1, token, CHAR_COLORYELLOW );
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!", CHAR_getChar( i, CHAR_NAME),(int)atoi(str)/100);
|
|||
|
CHAR_talkToCli( charindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}else{
|
|||
|
CHAR_setInt( charindex , CHAR_STR,atoi( str ) );
|
|||
|
CHAR_complianceParameter( charindex );
|
|||
|
//CHAR_sendStatusString( charindex , "P");
|
|||
|
CHAR_send_P_StatusString( charindex ,CHAR_P_STRING_STR|CHAR_P_STRING_MAXHP|CHAR_P_STRING_ATK);
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!",(int)atoi(str)/100);
|
|||
|
CHAR_talkToCli( charindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_tgh( int charindex , char *message )
|
|||
|
{
|
|||
|
int i;
|
|||
|
char tgh[15];
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
char token[128];
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
easyGetTokenFromString( message , 1 , tgh, sizeof(tgh));
|
|||
|
easyGetTokenFromString( message , 2 , cdkey, sizeof(cdkey));
|
|||
|
if(strlen(cdkey)>0){
|
|||
|
for(i=0;i<playernum;i++){
|
|||
|
if(CHAR_CHECKINDEX(i) == FALSE) continue;
|
|||
|
if(!strcmp( CHAR_getChar( i, CHAR_CDKEY), cdkey))
|
|||
|
{
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if (i>=playernum)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD><EFBFBD>˺Ų<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~", CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
CHAR_setInt( i , CHAR_TOUGH,atoi( tgh ) );
|
|||
|
CHAR_complianceParameter( i );
|
|||
|
//CHAR_sendStatusString( charindex , "P");
|
|||
|
CHAR_send_P_StatusString( i ,CHAR_P_STRING_TOUGH|CHAR_P_STRING_MAXHP|CHAR_P_STRING_DEF);
|
|||
|
sprintf( token, "[GM]%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!", CHAR_getChar( charindex, CHAR_NAME),(int)atoi(tgh)/100);
|
|||
|
CHAR_talkToCli( i, -1, token, CHAR_COLORYELLOW );
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!", CHAR_getChar( i, CHAR_NAME),(int)atoi(tgh)/100);
|
|||
|
CHAR_talkToCli( charindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}else{
|
|||
|
CHAR_setInt( charindex , CHAR_TOUGH,atoi( tgh ) );
|
|||
|
CHAR_complianceParameter( charindex );
|
|||
|
//CHAR_sendStatusString( charindex , "P");
|
|||
|
CHAR_send_P_StatusString( charindex ,CHAR_P_STRING_TOUGH|CHAR_P_STRING_MAXHP|CHAR_P_STRING_DEF);
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!",(int)atoi(tgh)/100);
|
|||
|
CHAR_talkToCli( charindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_dex( int charindex , char *message )
|
|||
|
{
|
|||
|
int i;
|
|||
|
char dex[15];
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
char token[128];
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
easyGetTokenFromString( message , 1 , dex, sizeof(dex));
|
|||
|
easyGetTokenFromString( message , 2 , cdkey, sizeof(cdkey));
|
|||
|
if(strlen(cdkey)>0){
|
|||
|
for(i=0;i<playernum;i++)
|
|||
|
{
|
|||
|
if(CHAR_CHECKINDEX(i) == FALSE) continue;
|
|||
|
if(!strcmp( CHAR_getChar( i, CHAR_CDKEY), cdkey))
|
|||
|
{
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if (i>=playernum)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD><EFBFBD>˺Ų<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~", CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
CHAR_setInt( i , CHAR_DEX,atoi( dex ) );
|
|||
|
CHAR_complianceParameter( i );
|
|||
|
//CHAR_sendStatusString( charindex , "P");
|
|||
|
CHAR_send_P_StatusString( i ,CHAR_P_STRING_DEX|CHAR_P_STRING_MAXHP|CHAR_P_STRING_ATK|CHAR_P_STRING_QUICK);
|
|||
|
sprintf( token, "[GM]%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!", CHAR_getChar( charindex, CHAR_NAME),(int)atoi(dex)/100);
|
|||
|
CHAR_talkToCli( i, -1, token, CHAR_COLORYELLOW );
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!", CHAR_getChar( i, CHAR_NAME),(int)atoi(dex)/100);
|
|||
|
CHAR_talkToCli( charindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}else{
|
|||
|
CHAR_setInt( charindex , CHAR_DEX,atoi( dex ) );
|
|||
|
CHAR_complianceParameter( charindex );
|
|||
|
//CHAR_sendStatusString( charindex , "P");
|
|||
|
CHAR_send_P_StatusString( charindex ,CHAR_P_STRING_DEX|CHAR_P_STRING_MAXHP|CHAR_P_STRING_ATK|CHAR_P_STRING_QUICK);
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!",(int)atoi(dex)/100);
|
|||
|
CHAR_talkToCli( charindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
}
|
|||
|
void CHAR_CHAT_DEBUG_vital( int charindex , char *message )
|
|||
|
{
|
|||
|
int i;
|
|||
|
char vital[15];
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
char token[128];
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
easyGetTokenFromString( message , 1 , vital, sizeof(vital));
|
|||
|
easyGetTokenFromString( message , 2 , cdkey, sizeof(cdkey));
|
|||
|
if(strlen(cdkey)>0){
|
|||
|
for(i=0;i<playernum;i++){
|
|||
|
if(CHAR_CHECKINDEX(i) == FALSE) continue;
|
|||
|
if(!strcmp( CHAR_getChar( i, CHAR_CDKEY), cdkey))
|
|||
|
{
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if (i>=playernum)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD><EFBFBD>˺Ų<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~", CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
CHAR_setInt( i , CHAR_VITAL,atoi( vital ) );
|
|||
|
CHAR_complianceParameter( i );
|
|||
|
//CHAR_sendStatusString( charindex , "P");
|
|||
|
CHAR_send_P_StatusString( i ,CHAR_P_STRING_VITAL|CHAR_P_STRING_MAXHP|CHAR_P_STRING_DEF);
|
|||
|
sprintf( token, "[GM]%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!", CHAR_getChar( charindex, CHAR_NAME),(int)atoi(vital)/100);
|
|||
|
CHAR_talkToCli( i, -1, token, CHAR_COLORYELLOW );
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!", CHAR_getChar( i, CHAR_NAME),(int)atoi(vital)/100);
|
|||
|
CHAR_talkToCli( charindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}else{
|
|||
|
CHAR_setInt( charindex , CHAR_VITAL,atoi( vital ) );
|
|||
|
CHAR_complianceParameter( charindex );
|
|||
|
//CHAR_sendStatusString( charindex , "P");
|
|||
|
CHAR_send_P_StatusString( charindex ,CHAR_P_STRING_VITAL|CHAR_P_STRING_MAXHP|CHAR_P_STRING_DEF);
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!",(int)atoi(vital)/100);
|
|||
|
CHAR_talkToCli( charindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
}
|
|||
|
void CHAR_CHAT_DEBUG_luck( int charindex , char *message )
|
|||
|
{
|
|||
|
int i;
|
|||
|
char buf[64];
|
|||
|
int luck;
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
char token[128];
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
easyGetTokenFromString( message , 1 , buf, sizeof(buf));
|
|||
|
luck=atoi(buf);
|
|||
|
easyGetTokenFromString( message , 2 , cdkey, sizeof(cdkey));
|
|||
|
if(luck<1)
|
|||
|
luck=1;
|
|||
|
else if(luck>5)
|
|||
|
luck=5;
|
|||
|
if(strlen(cdkey)>0){
|
|||
|
for(i=0;i<playernum;i++){
|
|||
|
if(CHAR_CHECKINDEX(i) == FALSE) continue;
|
|||
|
if(!strcmp( CHAR_getChar( i, CHAR_CDKEY), cdkey))
|
|||
|
{
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if (i>=playernum)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD><EFBFBD>˺Ų<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~", CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
CHAR_setInt( i , CHAR_LUCK,luck);
|
|||
|
CHAR_complianceParameter( i );
|
|||
|
//CHAR_sendStatusString( charindex , "P");
|
|||
|
CHAR_send_P_StatusString( i , CHAR_P_STRING_LUCK);
|
|||
|
sprintf( token, "[GM]%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!", CHAR_getChar( charindex, CHAR_NAME),luck);
|
|||
|
CHAR_talkToCli( i, -1, token, CHAR_COLORYELLOW );
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!", CHAR_getChar( i, CHAR_NAME),luck);
|
|||
|
CHAR_talkToCli( charindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}else{
|
|||
|
CHAR_setInt( charindex , CHAR_LUCK,luck);
|
|||
|
CHAR_complianceParameter( charindex );
|
|||
|
//CHAR_sendStatusString( charindex , "P");
|
|||
|
CHAR_send_P_StatusString( charindex , CHAR_P_STRING_LUCK);
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!",luck);
|
|||
|
CHAR_talkToCli( charindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_gold( int charindex , char *message )
|
|||
|
{
|
|||
|
int i, MaxGold, money;
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
char buf[64];
|
|||
|
char token[128];
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
easyGetTokenFromString( message , 1 , buf, sizeof(buf));
|
|||
|
money = atoi( buf );
|
|||
|
easyGetTokenFromString( message , 2 , cdkey, sizeof(cdkey));
|
|||
|
MaxGold = CHAR_getMaxHaveGold( charindex);
|
|||
|
if( money > MaxGold )
|
|||
|
money = MaxGold;
|
|||
|
if(strlen(cdkey)>0){
|
|||
|
for(i=0;i<playernum;i++){
|
|||
|
if(CHAR_CHECKINDEX(i) == FALSE) continue;
|
|||
|
if(!strcmp( CHAR_getChar( i, CHAR_CDKEY), cdkey))
|
|||
|
{
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if (i>=playernum)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD><EFBFBD>˺Ų<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~", CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
CHAR_setInt( i , CHAR_GOLD , money );
|
|||
|
CHAR_complianceParameter( i );
|
|||
|
CHAR_send_P_StatusString( i , CHAR_P_STRING_GOLD);
|
|||
|
sprintf( token, "[GM]%s<><73><EFBFBD><EFBFBD><EFBFBD>Ľ<EFBFBD>Ǯ<EFBFBD><C7AE><EFBFBD><EFBFBD>Ϊ%d!", CHAR_getChar( charindex, CHAR_NAME),money);
|
|||
|
CHAR_talkToCli( i, -1, token, CHAR_COLORYELLOW );
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<>Ľ<EFBFBD>Ǯ<EFBFBD><C7AE><EFBFBD><EFBFBD>Ϊ%d!", CHAR_getChar( i, CHAR_NAME),money);
|
|||
|
CHAR_talkToCli( charindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}else{
|
|||
|
CHAR_setInt( charindex , CHAR_GOLD , money );
|
|||
|
CHAR_complianceParameter( charindex );
|
|||
|
CHAR_send_P_StatusString( charindex , CHAR_P_STRING_GOLD);
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD>Ǯ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!",money);
|
|||
|
CHAR_talkToCli( charindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
#ifdef _TEST_DROPITEMS
|
|||
|
void CHAR_CHAT_DEBUG_dropmypet( int charindex, char *message )
|
|||
|
{
|
|||
|
char buf[256];
|
|||
|
int petID, x, y, floor, objindex, petindex, count=0;
|
|||
|
int i, j, k, petarray, cLeve=1;
|
|||
|
|
|||
|
if( getStringFromIndexWithDelim( message, " ", 1, buf, sizeof( buf)) == FALSE ) return;
|
|||
|
petID = atoi( buf);
|
|||
|
if( getStringFromIndexWithDelim( message, " ", 2, buf, sizeof( buf)) != FALSE ){
|
|||
|
cLeve = atoi( buf);
|
|||
|
}
|
|||
|
|
|||
|
floor = CHAR_getInt( charindex, CHAR_FLOOR);
|
|||
|
x = CHAR_getInt( charindex, CHAR_X);
|
|||
|
y = CHAR_getInt( charindex, CHAR_Y);
|
|||
|
if( getStringFromIndexWithDelim( message, " ", 3, buf, sizeof( buf)) != FALSE ){
|
|||
|
floor = atoi( buf);
|
|||
|
}
|
|||
|
if( getStringFromIndexWithDelim( message, " ", 4, buf, sizeof( buf)) != FALSE ){
|
|||
|
x = atoi( buf);
|
|||
|
}
|
|||
|
if( getStringFromIndexWithDelim( message, " ", 5, buf, sizeof( buf)) != FALSE ){
|
|||
|
y = atoi( buf);
|
|||
|
}
|
|||
|
for( i=(x-3); i<(x+3); i++) {
|
|||
|
for( j=(y-3); j<(y+3); j++) {
|
|||
|
petarray = ENEMY_getEnemyArrayFromId( petID);
|
|||
|
petindex = ENEMY_TEST_createPetIndex( petarray );
|
|||
|
if( !CHAR_CHECKINDEX( petindex) ){
|
|||
|
CHAR_talkToCli( charindex, -1, "err Can't create pet", CHAR_COLORYELLOW);
|
|||
|
return;
|
|||
|
}
|
|||
|
CHAR_complianceParameter( petindex );
|
|||
|
objindex = PET_dropPetAbsolute( petindex, floor, i, j, FALSE );
|
|||
|
if( objindex == -1 ){
|
|||
|
CHAR_talkToCli( charindex, -1, "err Can't Drop", CHAR_COLORYELLOW);
|
|||
|
return;
|
|||
|
}
|
|||
|
for( k = 1; k < cLeve; k ++ ){ //<2F><><EFBFBD><EFBFBD>
|
|||
|
CHAR_PetLevelUp( petindex );
|
|||
|
CHAR_PetAddVariableAi( petindex, AI_FIX_PETLEVELUP );
|
|||
|
CHAR_setInt( petindex, CHAR_LV, CHAR_getInt( petindex, CHAR_LV) +1 );
|
|||
|
}
|
|||
|
CHAR_complianceParameter( petindex );
|
|||
|
CHAR_setInt( petindex , CHAR_HP , CHAR_getWorkInt( petindex , CHAR_WORKMAXHP ) );
|
|||
|
|
|||
|
CHAR_setWorkInt( petindex, CHAR_WORKOBJINDEX, objindex );
|
|||
|
CHAR_setInt( petindex, CHAR_FLOOR, floor);
|
|||
|
CHAR_setInt( petindex, CHAR_X, i);
|
|||
|
CHAR_setInt( petindex, CHAR_Y, j);
|
|||
|
CHAR_sendCToArroundCharacter( objindex);
|
|||
|
CHAR_setInt( petindex, CHAR_PUTPETTIME, NowTime.tv_sec);
|
|||
|
CHAR_setChar( petindex, CHAR_OWNERCDKEY, "SYSTEM_WAYI" );
|
|||
|
CHAR_setChar( petindex, CHAR_OWNERCHARANAME, "SYSTEM_WAYI" );
|
|||
|
count++;
|
|||
|
}
|
|||
|
}
|
|||
|
sprintf( buf, "<EFBFBD>ܹ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %dֻ<64><D6BB><EFBFBD>", count);
|
|||
|
CHAR_talkToCli( charindex, -1, buf, CHAR_COLORYELLOW);
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_dropmyitem( int charindex, char *message )
|
|||
|
{
|
|||
|
char buf[256];
|
|||
|
int itemID, SitemID, maxflg=0,emptyitemindexinchara, i, j;
|
|||
|
int floor, x, y, objindex;
|
|||
|
|
|||
|
if( getStringFromIndexWithDelim( message, " ", 1, buf, sizeof( buf)) == FALSE ) return;
|
|||
|
SitemID = atoi( buf);
|
|||
|
if( getStringFromIndexWithDelim( message, " ", 2, buf, sizeof( buf)) != FALSE ){
|
|||
|
maxflg = atoi( buf);
|
|||
|
}
|
|||
|
floor = CHAR_getInt( charindex, CHAR_FLOOR);
|
|||
|
x = CHAR_getInt( charindex, CHAR_X);
|
|||
|
y = CHAR_getInt( charindex, CHAR_Y);
|
|||
|
if( getStringFromIndexWithDelim( message, " ", 3, buf, sizeof( buf)) != FALSE ){
|
|||
|
floor = atoi( buf);
|
|||
|
}
|
|||
|
if( getStringFromIndexWithDelim( message, " ", 4, buf, sizeof( buf)) != FALSE ){
|
|||
|
x = atoi( buf);
|
|||
|
}
|
|||
|
if( getStringFromIndexWithDelim( message, " ", 5, buf, sizeof( buf)) != FALSE ){
|
|||
|
y = atoi( buf);
|
|||
|
}
|
|||
|
itemID = SitemID;
|
|||
|
|
|||
|
|
|||
|
for( i=(x-3); i<(x+3); i++) {
|
|||
|
for( j=(y-3); j<(y+3); j++) {
|
|||
|
int ret = 0 , count=0;
|
|||
|
int itemindex;
|
|||
|
while( count < 10 ){
|
|||
|
count++;
|
|||
|
itemindex = ITEM_makeItemAndRegist( itemID );
|
|||
|
if( maxflg == 1 ) itemID++;
|
|||
|
if( !ITEM_CHECKINDEX( itemindex)) continue;
|
|||
|
break;
|
|||
|
}
|
|||
|
emptyitemindexinchara = CHAR_findEmptyItemBox( charindex );
|
|||
|
|
|||
|
CHAR_setItemIndex( charindex, emptyitemindexinchara, itemindex );
|
|||
|
ITEM_setWorkInt(itemindex, ITEM_WORKOBJINDEX,-1);
|
|||
|
ITEM_setWorkInt(itemindex, ITEM_WORKCHARAINDEX,charindex);
|
|||
|
CHAR_sendItemDataOne( charindex, emptyitemindexinchara);
|
|||
|
//drop
|
|||
|
if( (ret = CHAR_DropItemFXY( charindex, emptyitemindexinchara,
|
|||
|
floor, i, j, &objindex )) != 0 ){
|
|||
|
char buf[256];
|
|||
|
sprintf( buf, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>%d", ret);
|
|||
|
CHAR_talkToCli( charindex, -1, buf, CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
ITEM_setInt(itemindex,ITEM_PUTTIME,NowTime.tv_sec);
|
|||
|
CHAR_sendWatchEvent(objindex,CHAR_ACTSTAND,NULL,0,TRUE);
|
|||
|
CHAR_setItemIndex(charindex, emptyitemindexinchara ,-1);
|
|||
|
CHAR_sendItemDataOne(charindex, emptyitemindexinchara);
|
|||
|
CHAR_sendCToArroundCharacter(CHAR_getWorkInt( charindex, CHAR_WORKOBJINDEX));
|
|||
|
}
|
|||
|
}
|
|||
|
{
|
|||
|
char buf[256];
|
|||
|
sprintf( buf, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ID%d", itemID-1);
|
|||
|
CHAR_talkToCli( charindex, -1, buf, CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_additem( int charindex , char *message )
|
|||
|
{
|
|||
|
|
|||
|
int emptyitemindexinchara, itemindex;
|
|||
|
int i;
|
|||
|
int num = 0;
|
|||
|
int itemid;
|
|||
|
char buf[64];
|
|||
|
char msgbuf[128];
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
easyGetTokenFromString( message , 1 , buf, sizeof(buf));
|
|||
|
itemid = atoi( buf);
|
|||
|
easyGetTokenFromString( message , 2 , buf, sizeof(buf));
|
|||
|
num = atoi( buf);
|
|||
|
easyGetTokenFromString( message , 3 , cdkey, sizeof(cdkey));
|
|||
|
|
|||
|
if( num <= 0 ) num = 1;
|
|||
|
|
|||
|
if(strlen(cdkey)>0){
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
int j;
|
|||
|
for(j=0;j<playernum;j++)
|
|||
|
{
|
|||
|
if(CHAR_CHECKINDEX(j) == FALSE) continue;
|
|||
|
if(!strcmp( CHAR_getChar( j, CHAR_CDKEY), cdkey))
|
|||
|
{
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if (j>=playernum)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD><EFBFBD>˺Ų<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~", CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
for( i = 0; i < num; i ++ ) {
|
|||
|
emptyitemindexinchara = CHAR_findEmptyItemBox( j );
|
|||
|
|
|||
|
if( emptyitemindexinchara < 0 ){
|
|||
|
sprintf( msgbuf, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73>Ʒ<EFBFBD><C6B7>λ<EFBFBD><CEBB><EFBFBD>㡣", CHAR_getChar( j, CHAR_NAME ));
|
|||
|
CHAR_talkToCli( charindex, -1, msgbuf, CHAR_COLORYELLOW);
|
|||
|
sprintf( msgbuf, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73>Ʒ<EFBFBD><C6B7>λ<EFBFBD><CEBB><EFBFBD>㡣", CHAR_getChar( j, CHAR_NAME ));
|
|||
|
CHAR_talkToCli( j, -1, msgbuf, CHAR_COLORYELLOW);
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
itemindex = ITEM_makeItemAndRegist( itemid );
|
|||
|
|
|||
|
if( itemindex != -1 ){
|
|||
|
CHAR_setItemIndex( j, emptyitemindexinchara, itemindex );
|
|||
|
ITEM_setWorkInt(itemindex, ITEM_WORKOBJINDEX,-1);
|
|||
|
ITEM_setWorkInt(itemindex, ITEM_WORKCHARAINDEX,j);
|
|||
|
CHAR_sendItemDataOne( j, emptyitemindexinchara);
|
|||
|
LogItem(
|
|||
|
CHAR_getChar( charindex, CHAR_NAME ),
|
|||
|
CHAR_getChar( charindex, 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
|
|||
|
atoi( message),
|
|||
|
#endif
|
|||
|
"AddItem(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>GM)",
|
|||
|
CHAR_getInt( charindex,CHAR_FLOOR),
|
|||
|
CHAR_getInt( charindex,CHAR_X ),
|
|||
|
CHAR_getInt( charindex,CHAR_Y ),
|
|||
|
ITEM_getChar( itemindex, ITEM_UNIQUECODE),
|
|||
|
ITEM_getChar( itemindex, ITEM_NAME),
|
|||
|
ITEM_getInt( itemindex, ITEM_ID)
|
|||
|
|
|||
|
);
|
|||
|
snprintf( msgbuf,sizeof( msgbuf),"[GM]%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<>ɹ<EFBFBD><C9B9><EFBFBD>",
|
|||
|
CHAR_getChar( charindex, CHAR_NAME ),ITEM_getChar( itemindex, ITEM_NAME));
|
|||
|
CHAR_talkToCli( j, -1,msgbuf, CHAR_COLORYELLOW);
|
|||
|
snprintf( msgbuf, sizeof( msgbuf), "<EFBFBD>ɹ<EFBFBD>Ϊ%s<><73><EFBFBD><EFBFBD> %s<><73>",
|
|||
|
CHAR_getChar( j, CHAR_NAME ),ITEM_getChar( itemindex, ITEM_NAME));
|
|||
|
CHAR_talkToCli( charindex, -1,msgbuf, CHAR_COLORYELLOW);
|
|||
|
}else{
|
|||
|
sprintf( msgbuf, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD>ܡ<EFBFBD>" );
|
|||
|
CHAR_talkToCli( charindex, -1,msgbuf, CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
}
|
|||
|
}else{
|
|||
|
for( i = 0; i < num; i ++ ) {
|
|||
|
emptyitemindexinchara = CHAR_findEmptyItemBox( charindex );
|
|||
|
|
|||
|
if( emptyitemindexinchara < 0 ){
|
|||
|
sprintf( msgbuf, "<EFBFBD><EFBFBD>Ʒ<EFBFBD><EFBFBD>λ<EFBFBD><EFBFBD><EFBFBD>㡣" );
|
|||
|
|
|||
|
CHAR_talkToCli( charindex, -1, msgbuf, CHAR_COLORYELLOW);
|
|||
|
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
itemindex = ITEM_makeItemAndRegist( itemid );
|
|||
|
|
|||
|
if( itemindex != -1 ){
|
|||
|
CHAR_setItemIndex( charindex, emptyitemindexinchara, itemindex );
|
|||
|
ITEM_setWorkInt(itemindex, ITEM_WORKOBJINDEX,-1);
|
|||
|
ITEM_setWorkInt(itemindex, ITEM_WORKCHARAINDEX,charindex);
|
|||
|
CHAR_sendItemDataOne( charindex, emptyitemindexinchara);
|
|||
|
LogItem(
|
|||
|
CHAR_getChar( charindex, CHAR_NAME ),
|
|||
|
CHAR_getChar( charindex, 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
|
|||
|
atoi( message),
|
|||
|
#endif
|
|||
|
"AddItem(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>GM)",
|
|||
|
CHAR_getInt( charindex,CHAR_FLOOR),
|
|||
|
CHAR_getInt( charindex,CHAR_X ),
|
|||
|
CHAR_getInt( charindex,CHAR_Y ),
|
|||
|
ITEM_getChar( itemindex, ITEM_UNIQUECODE),
|
|||
|
ITEM_getChar( itemindex, ITEM_NAME),
|
|||
|
ITEM_getInt( itemindex, ITEM_ID)
|
|||
|
|
|||
|
);
|
|||
|
snprintf( msgbuf, sizeof( msgbuf), "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<>ɹ<EFBFBD><C9B9><EFBFBD>",
|
|||
|
ITEM_getChar( itemindex, ITEM_NAME));
|
|||
|
CHAR_talkToCli( charindex, -1,msgbuf, CHAR_COLORYELLOW);
|
|||
|
}else{
|
|||
|
sprintf( msgbuf, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD>ܡ<EFBFBD>" );
|
|||
|
CHAR_talkToCli( charindex, -1, msgbuf, CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_metamo( int charindex , char *message )
|
|||
|
{
|
|||
|
#ifdef _CAX_METAMO_OFF
|
|||
|
char metamoid[12];
|
|||
|
#else
|
|||
|
char metamoid[7];
|
|||
|
#endif
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
char token[128];
|
|||
|
int i=0;
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
easyGetTokenFromString( message , 1 , metamoid, sizeof(metamoid));
|
|||
|
easyGetTokenFromString( message , 2 , cdkey, sizeof(cdkey));
|
|||
|
if(strlen(cdkey)>0){
|
|||
|
for(i=0;i<playernum;i++)
|
|||
|
{
|
|||
|
if(CHAR_CHECKINDEX(i) == FALSE) continue;
|
|||
|
if(!strcmp( CHAR_getChar( i, CHAR_CDKEY), cdkey))
|
|||
|
{
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if (i>=playernum)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD><EFBFBD>˺Ų<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~", CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
CHAR_setInt( i , CHAR_BASEIMAGENUMBER , atoi( metamoid ) );
|
|||
|
CHAR_setInt( i , CHAR_BASEBASEIMAGENUMBER , atoi( metamoid ) );
|
|||
|
|
|||
|
CHAR_complianceParameter( i );
|
|||
|
CHAR_sendCToArroundCharacter( CHAR_getWorkInt( i , CHAR_WORKOBJINDEX ));
|
|||
|
CHAR_send_P_StatusString( i , CHAR_P_STRING_BASEBASEIMAGENUMBER);
|
|||
|
sprintf( token, "[GM]%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!", CHAR_getChar( charindex, CHAR_NAME),(int)atoi(metamoid));
|
|||
|
CHAR_talkToCli( i, -1, token, CHAR_COLORYELLOW );
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!", CHAR_getChar( i, CHAR_NAME),(int)atoi(metamoid));
|
|||
|
CHAR_talkToCli( charindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}else{
|
|||
|
CHAR_setInt( charindex , CHAR_BASEIMAGENUMBER , atoi( metamoid ) );
|
|||
|
CHAR_setInt( charindex , CHAR_BASEBASEIMAGENUMBER , atoi( metamoid ) );
|
|||
|
|
|||
|
CHAR_complianceParameter( charindex );
|
|||
|
CHAR_sendCToArroundCharacter( CHAR_getWorkInt( charindex , CHAR_WORKOBJINDEX ));
|
|||
|
CHAR_send_P_StatusString( charindex , CHAR_P_STRING_BASEBASEIMAGENUMBER);
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!",(int)atoi(metamoid));
|
|||
|
CHAR_talkToCli( charindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_info( int charindex , char *message )
|
|||
|
{
|
|||
|
char line[256];
|
|||
|
int index;
|
|||
|
|
|||
|
if( strlen( message) != 0 ) {
|
|||
|
index = atoi( message);
|
|||
|
}
|
|||
|
else {
|
|||
|
index = charindex;
|
|||
|
}
|
|||
|
if( !CHAR_CHECKINDEX( index)) {
|
|||
|
CHAR_talkToCli( charindex, -1 , "<EFBFBD><EFBFBD>index<EFBFBD><EFBFBD>ʹ<EFBFBD>á<EFBFBD>" , CHAR_COLORWHITE );
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
snprintf( line, sizeof( line),
|
|||
|
"name:%s i:%d B:%d BB:%d LV:%d EXP:%d MakeSeq:%d",
|
|||
|
CHAR_getChar( index, CHAR_NAME),
|
|||
|
charindex,
|
|||
|
CHAR_getInt( index, CHAR_BASEIMAGENUMBER ),
|
|||
|
CHAR_getInt( index, CHAR_BASEBASEIMAGENUMBER ),
|
|||
|
CHAR_getInt( index, CHAR_LV ),
|
|||
|
CHAR_getInt( index, CHAR_EXP ),
|
|||
|
CHAR_getCharMakeSequenceNumber( index));
|
|||
|
|
|||
|
CHAR_talkToCli( charindex, -1 , line , CHAR_COLORWHITE );
|
|||
|
|
|||
|
snprintf( line, sizeof( line),
|
|||
|
"Gold:%d HP:%d MP/MHP:%d/%d" ,
|
|||
|
CHAR_getInt( index, CHAR_GOLD ),
|
|||
|
CHAR_getInt( index, CHAR_HP ),
|
|||
|
CHAR_getInt( index, CHAR_MP ),
|
|||
|
CHAR_getInt( index, CHAR_MAXMP ));
|
|||
|
CHAR_talkToCli( charindex, -1 , line , CHAR_COLORWHITE );
|
|||
|
|
|||
|
|
|||
|
if( CHAR_getInt( index, CHAR_WHICHTYPE ) == CHAR_TYPEPET ){
|
|||
|
snprintf( line, sizeof(line),
|
|||
|
"<EFBFBD><EFBFBD>:%d <20><>:%d <20><>:%d <20><>:%d <20><>:%d <20><>:%d <20><>:%d <20><>:%d <20><><EFBFBD><EFBFBD>:%d <20>ұ<EFBFBD>:%.2f <20><><EFBFBD><EFBFBD>:%s",
|
|||
|
CHAR_getInt( index, CHAR_VITAL )/100,
|
|||
|
CHAR_getInt( index, CHAR_STR )/100,
|
|||
|
CHAR_getInt( index, CHAR_TOUGH )/100,
|
|||
|
CHAR_getInt( index, CHAR_DEX )/100,
|
|||
|
CHAR_getWorkInt( index, CHAR_WORKFIXVITAL ),
|
|||
|
CHAR_getWorkInt( index, CHAR_WORKATTACKPOWER ),
|
|||
|
CHAR_getWorkInt( index, CHAR_WORKDEFENCEPOWER ),//CHAR_WORKFIXDEX
|
|||
|
CHAR_getWorkInt( index, CHAR_WORKQUICK ),
|
|||
|
CHAR_getInt( index, CHAR_MODAI ),
|
|||
|
CHAR_getInt( index, CHAR_VARIABLEAI ) * 0.01,
|
|||
|
CHAR_getChar( index, CHAR_UNIQUECODE) );
|
|||
|
}else{
|
|||
|
snprintf( line, sizeof(line),
|
|||
|
"<EFBFBD><EFBFBD>:%d <20><>:%d <20><>:%d <20><>:%d <20><>:%d <20><>:%d <20><>:%d <20><>:%d <20><>:%d",
|
|||
|
CHAR_getInt( index, CHAR_VITAL )/100,
|
|||
|
CHAR_getInt( index, CHAR_STR )/100,
|
|||
|
CHAR_getInt( index, CHAR_TOUGH )/100,
|
|||
|
CHAR_getInt( index, CHAR_DEX )/100,
|
|||
|
CHAR_getWorkInt( index, CHAR_WORKFIXVITAL ),
|
|||
|
CHAR_getWorkInt( index, CHAR_WORKATTACKPOWER ),
|
|||
|
CHAR_getWorkInt( index, CHAR_WORKDEFENCEPOWER ),
|
|||
|
CHAR_getWorkInt( index, CHAR_WORKFIXCHARM ),
|
|||
|
CHAR_getWorkInt( index, CHAR_WORKFIXLUCK ));
|
|||
|
}
|
|||
|
CHAR_talkToCli( charindex, -1 , line , CHAR_COLORWHITE );
|
|||
|
|
|||
|
|
|||
|
snprintf( line, sizeof(line),
|
|||
|
"<EFBFBD><EFBFBD>:%d ˮ:%d <20><>:%d <20><>:%d",
|
|||
|
CHAR_getWorkInt( index, CHAR_WORKFIXEARTHAT ),
|
|||
|
CHAR_getWorkInt( index, CHAR_WORKFIXWATERAT ),
|
|||
|
CHAR_getWorkInt( index, CHAR_WORKFIXFIREAT ),
|
|||
|
CHAR_getWorkInt( index, CHAR_WORKFIXWINDAT ));
|
|||
|
CHAR_talkToCli( charindex, -1 , line , CHAR_COLORWHITE );
|
|||
|
|
|||
|
snprintf( line, sizeof( line),
|
|||
|
"Sk Itm:%d ChV:%d Rad:%d" ,
|
|||
|
CHAR_MAXITEMHAVE,
|
|||
|
CHAR_getInt( index, CHAR_CHATVOLUME ),
|
|||
|
CHAR_getInt( index, CHAR_RADARSTRENGTH ) );
|
|||
|
CHAR_talkToCli( charindex, -1 , line , CHAR_COLORWHITE );
|
|||
|
|
|||
|
|
|||
|
snprintf( line, sizeof( line),
|
|||
|
"Status <20><>:%d <20><>:%d Ĭ:%d ʯ:%d <20><>:%d <20><>:%d" ,
|
|||
|
CHAR_getInt( index , CHAR_POISON ),
|
|||
|
CHAR_getInt( index , CHAR_PARALYSIS ),
|
|||
|
CHAR_getInt( index , CHAR_SLEEP ),
|
|||
|
CHAR_getInt( index , CHAR_STONE ),
|
|||
|
CHAR_getInt( index , CHAR_DRUNK ),
|
|||
|
CHAR_getInt( index , CHAR_CONFUSION ) );
|
|||
|
CHAR_talkToCli( charindex, -1 , line , CHAR_COLORWHITE );
|
|||
|
|
|||
|
#ifdef _PERSONAL_FAME // Arminius: <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
snprintf( line, sizeof( line),
|
|||
|
#ifdef _NEW_MANOR_LAW
|
|||
|
"TitInd:%d FL:%d X:%d Y:%d DIR:%d FAME:%d MOMENTUM:%d" ,
|
|||
|
#else
|
|||
|
"TitInd:%d FL:%d X:%d Y:%d DIR:%d FAME:%d" ,
|
|||
|
#endif
|
|||
|
CHAR_getInt( index , CHAR_INDEXOFEQTITLE ),
|
|||
|
CHAR_getInt( index , CHAR_FLOOR ),
|
|||
|
CHAR_getInt( index , CHAR_X ),
|
|||
|
CHAR_getInt( index , CHAR_Y ),
|
|||
|
CHAR_getInt( index , CHAR_DIR ),
|
|||
|
CHAR_getInt( index , CHAR_FAME)
|
|||
|
#ifdef _NEW_MANOR_LAW
|
|||
|
,CHAR_getInt( index , CHAR_MOMENTUM)
|
|||
|
#endif
|
|||
|
);
|
|||
|
#else
|
|||
|
snprintf( line, sizeof( line),
|
|||
|
"TitInd:%d FL:%d X:%d Y:%d DIR:%d" ,
|
|||
|
CHAR_getInt( index , CHAR_INDEXOFEQTITLE ),
|
|||
|
CHAR_getInt( index , CHAR_FLOOR ),
|
|||
|
CHAR_getInt( index , CHAR_X ),
|
|||
|
CHAR_getInt( index , CHAR_Y ),
|
|||
|
CHAR_getInt( index , CHAR_DIR ) );
|
|||
|
#endif
|
|||
|
CHAR_talkToCli( charindex, -1 , line , CHAR_COLORWHITE );
|
|||
|
|
|||
|
|
|||
|
snprintf( line, sizeof( line),
|
|||
|
"walk:%d dead:%d ItemMergecnt:%d" ,
|
|||
|
CHAR_getInt( index , CHAR_WALKCOUNT ) ,
|
|||
|
CHAR_getInt( index , CHAR_DEADCOUNT ) ,
|
|||
|
CHAR_getInt( index, CHAR_MERGEITEMCOUNT)
|
|||
|
);
|
|||
|
CHAR_talkToCli( charindex, -1 , line , CHAR_COLORWHITE );
|
|||
|
|
|||
|
if( CHAR_getInt( index, CHAR_WHICHTYPE) == CHAR_TYPEPLAYER) {
|
|||
|
snprintf( line, sizeof( line),
|
|||
|
"petindex [%d][%d][%d][%d][%d] " ,
|
|||
|
CHAR_getCharPet( index, 0),
|
|||
|
CHAR_getCharPet( index, 1),
|
|||
|
CHAR_getCharPet( index, 2),
|
|||
|
CHAR_getCharPet( index, 3),
|
|||
|
CHAR_getCharPet( index, 4));
|
|||
|
}
|
|||
|
else {
|
|||
|
snprintf( line, sizeof( line),
|
|||
|
"PetskillIndex [%d][%d][%d][%d][%d][%d][%d] " ,
|
|||
|
CHAR_getPetSkill( index, 0),
|
|||
|
CHAR_getPetSkill( index, 1),
|
|||
|
CHAR_getPetSkill( index, 2),
|
|||
|
CHAR_getPetSkill( index, 3),
|
|||
|
CHAR_getPetSkill( index, 4),
|
|||
|
CHAR_getPetSkill( index, 5),
|
|||
|
CHAR_getPetSkill( index, 6));
|
|||
|
}
|
|||
|
|
|||
|
CHAR_talkToCli( charindex, -1 , line , CHAR_COLORWHITE );
|
|||
|
if( CHAR_getInt( index, CHAR_WHICHTYPE) == CHAR_TYPEPLAYER) {
|
|||
|
snprintf( line, sizeof( line),
|
|||
|
"poolpetindex [%d][%d][%d][%d][%d] " ,
|
|||
|
CHAR_getCharPoolPet( index, 0),
|
|||
|
CHAR_getCharPoolPet( index, 1),
|
|||
|
CHAR_getCharPoolPet( index, 2),
|
|||
|
CHAR_getCharPoolPet( index, 3),
|
|||
|
CHAR_getCharPoolPet( index, 4));
|
|||
|
CHAR_talkToCli( charindex, -1 , line , CHAR_COLORWHITE );
|
|||
|
|
|||
|
snprintf( line, sizeof( line),
|
|||
|
"poolpetindex [%d][%d][%d][%d][%d] " ,
|
|||
|
CHAR_getCharPoolPet( index, 5),
|
|||
|
CHAR_getCharPoolPet( index, 6),
|
|||
|
CHAR_getCharPoolPet( index, 7),
|
|||
|
CHAR_getCharPoolPet( index, 8),
|
|||
|
CHAR_getCharPoolPet( index, 9));
|
|||
|
CHAR_talkToCli( charindex, -1 , line , CHAR_COLORWHITE );
|
|||
|
}
|
|||
|
|
|||
|
snprintf( line, sizeof( line),
|
|||
|
"levelup [%d], <20>ۻ<EFBFBD> %d <20>ij<EFBFBD><C4B3><EFBFBD><EFBFBD><EFBFBD>[%d]" ,
|
|||
|
CHAR_getInt( index, CHAR_LEVELUPPOINT),
|
|||
|
CHAR_getWorkInt( index, CHAR_WORKULTIMATE),
|
|||
|
CHAR_getInt( index, CHAR_GAMBLENUM) );
|
|||
|
CHAR_talkToCli( charindex, -1 , line , CHAR_COLORWHITE );
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_sysinfo( int charindex , char *message )
|
|||
|
{
|
|||
|
char msg[1024],name[256];
|
|||
|
int i;
|
|||
|
time_t new_t;
|
|||
|
int dd,hh,mm,ss;
|
|||
|
|
|||
|
int items=0 , chars=0, golds=0, nouses=0;
|
|||
|
int players=0,pets=0,others=0;
|
|||
|
int whichtype= -1;
|
|||
|
int objnum = OBJECT_getNum();
|
|||
|
|
|||
|
|
|||
|
int itemnum = ITEM_getITEM_itemnum();
|
|||
|
int itemuse =0;
|
|||
|
|
|||
|
makeEscapeString( getGameserverID(), name, sizeof( name));
|
|||
|
sprintf( msg, "GSID:%s GSNAME:%s", getGameserverID(), name);
|
|||
|
CHAR_talkToCli( charindex, -1, msg, CHAR_COLORYELLOW);
|
|||
|
|
|||
|
|
|||
|
for( i=0 ; i<objnum ; i++){
|
|||
|
switch( OBJECT_getType( i )){
|
|||
|
case OBJTYPE_NOUSE:
|
|||
|
nouses++;
|
|||
|
break;
|
|||
|
case OBJTYPE_CHARA:
|
|||
|
chars++;
|
|||
|
whichtype = CHAR_getInt( OBJECT_getIndex( i), CHAR_WHICHTYPE);
|
|||
|
if( whichtype == CHAR_TYPEPLAYER) players++;
|
|||
|
else if( whichtype == CHAR_TYPEPET) pets++;
|
|||
|
else others ++;
|
|||
|
break;
|
|||
|
case OBJTYPE_ITEM:
|
|||
|
items++;
|
|||
|
break;
|
|||
|
case OBJTYPE_GOLD:
|
|||
|
golds++;
|
|||
|
break;
|
|||
|
default:
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
for( i=0 ; i<itemnum ; i++)
|
|||
|
if( ITEM_getITEM_use(i) )
|
|||
|
itemuse++;
|
|||
|
|
|||
|
snprintf( msg , sizeof(msg),
|
|||
|
"Object Char:%d Item:%d Gold:%d Nouse:%d Item use:%d",
|
|||
|
chars,items,golds, nouses, itemuse );
|
|||
|
|
|||
|
CHAR_talkToCli(charindex,-1,msg,CHAR_COLORYELLOW );
|
|||
|
|
|||
|
snprintf( msg , sizeof(msg),
|
|||
|
"player : %d pet : %d others : %d",
|
|||
|
players, pets, others );
|
|||
|
|
|||
|
CHAR_talkToCli(charindex,-1,msg,CHAR_COLORYELLOW );
|
|||
|
|
|||
|
time(&new_t);
|
|||
|
new_t -= initTime;
|
|||
|
dd=(int) new_t / 86400; new_t=new_t % 86400;
|
|||
|
hh=(int) new_t / 3600; new_t=new_t % 3600;
|
|||
|
mm=(int) new_t / 60; new_t=new_t % 60;
|
|||
|
ss=(int) new_t;
|
|||
|
|
|||
|
snprintf( msg, sizeof( msg ) ,
|
|||
|
"start: %d days %d hours %d min %d sec<65><63>",dd,hh,mm,ss);
|
|||
|
CHAR_talkToCli( charindex, -1, msg, CHAR_COLORYELLOW );
|
|||
|
|
|||
|
{
|
|||
|
showMem( msg);
|
|||
|
CHAR_talkToCli( charindex, -1, msg, CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
snprintf( msg, sizeof( msg ) ,
|
|||
|
"NPC_createnum:%d<><64>",NPC_createnum);
|
|||
|
CHAR_talkToCli( charindex, -1, msg, CHAR_COLORYELLOW );
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_announce(int charindex , char *message )
|
|||
|
{
|
|||
|
int i;
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
#ifdef _CAX_DENGON_GG
|
|||
|
char token[256];
|
|||
|
sprintf(token, "<EFBFBD><EFBFBD>%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s", getGameservername(), message);
|
|||
|
#endif
|
|||
|
for( i = 0 ; i < playernum ; i++) {
|
|||
|
if( CHAR_getCharUse(i) != FALSE ) {
|
|||
|
#ifdef _CAX_DENGON_GG
|
|||
|
int fd = getfdFromCharaIndex( i );
|
|||
|
lssproto_DENGON_send(fd, token, 3, 6 );
|
|||
|
#endif
|
|||
|
#ifndef _CAX_DENGON_GG
|
|||
|
CHAR_talkToCli( i, -1, message, CHAR_COLORRED);
|
|||
|
#endif
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_laba(int charindex , char *message ) //<2F><><EFBFBD><EFBFBD> С<><D0A1><EFBFBD><EFBFBD>
|
|||
|
{
|
|||
|
int i;
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
char labamsg[256];
|
|||
|
char *MyName = CHAR_getChar( charindex,CHAR_NAME );
|
|||
|
for( i = 0 ; i < playernum ; i++) {
|
|||
|
if( CHAR_getCharUse(i) != FALSE ) {
|
|||
|
sprintf( labamsg, "<С<><D0A1><EFBFBD><EFBFBD>>%s<><73><EFBFBD><EFBFBD>˵<EFBFBD><CBB5>%s", MyName, message);
|
|||
|
CHAR_talkToCli( i, -1, labamsg, CHAR_COLORGREEN);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_dalaba(int charindex , char *message ) //<2F><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
{
|
|||
|
if(strlen(message)<1) return;
|
|||
|
char dalababuf[512];
|
|||
|
sprintf(dalababuf,"<EFBFBD><EFBFBD>ȫ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>桿<EFBFBD><EFBFBD>%s",message);
|
|||
|
system_all_talk(dalababuf);
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_level( int charaindex, char* message )
|
|||
|
{
|
|||
|
int i, level;
|
|||
|
char buf[64];
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
char token[128];
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
easyGetTokenFromString( message , 1 , buf, sizeof(buf));
|
|||
|
level=atoi(buf);
|
|||
|
easyGetTokenFromString( message , 2 , cdkey, sizeof(cdkey));
|
|||
|
if(strlen(cdkey)>0){
|
|||
|
for(i=0;i<playernum;i++){
|
|||
|
if(CHAR_CHECKINDEX(i) == FALSE) continue;
|
|||
|
if(!strcmp( CHAR_getChar( i, CHAR_CDKEY), cdkey))
|
|||
|
{
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if (i>=playernum)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD>˺Ų<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~", CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
CHAR_setInt(i,CHAR_LV, atoi( message ));
|
|||
|
CHAR_send_P_StatusString( i , CHAR_P_STRING_LV|CHAR_P_STRING_NEXTEXP);
|
|||
|
sprintf( token, "[GM]%s<><73><EFBFBD><EFBFBD><EFBFBD>ĵȼ<C4B5><C8BC><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!", CHAR_getChar( charaindex, CHAR_NAME),level);
|
|||
|
CHAR_talkToCli( i, -1, token, CHAR_COLORYELLOW );
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<>ĵȼ<C4B5><C8BC><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!", CHAR_getChar( i, CHAR_NAME),level);
|
|||
|
CHAR_talkToCli( charaindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}else{
|
|||
|
CHAR_setInt(charaindex,CHAR_LV, atoi( message ));
|
|||
|
CHAR_send_P_StatusString( charaindex , CHAR_P_STRING_LV|CHAR_P_STRING_NEXTEXP);
|
|||
|
sprintf( token, "<EFBFBD>ȼ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!",level);
|
|||
|
CHAR_talkToCli( charaindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_exp( int charaindex, char* message )
|
|||
|
{
|
|||
|
int i;
|
|||
|
char exp[15];
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
char token[128];
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
easyGetTokenFromString( message , 1 , exp, sizeof(exp));
|
|||
|
easyGetTokenFromString( message , 2 , cdkey, sizeof(cdkey));
|
|||
|
if(strlen(cdkey)>0){
|
|||
|
for(i=0;i<playernum;i++){
|
|||
|
if(CHAR_CHECKINDEX(i) == FALSE) continue;
|
|||
|
if(!strcmp( CHAR_getChar( i, CHAR_CDKEY), cdkey))
|
|||
|
{
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if (i>=playernum)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD>˺Ų<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~", CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
CHAR_setMaxExp( i, atoi( exp ));
|
|||
|
CHAR_send_P_StatusString( i , CHAR_P_STRING_EXP);
|
|||
|
sprintf( token, "[GM]%s<><73><EFBFBD><EFBFBD><EFBFBD>ľ<EFBFBD><C4BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!", CHAR_getChar( charaindex, CHAR_NAME),(int)atoi(exp));
|
|||
|
CHAR_talkToCli( i, -1, token, CHAR_COLORYELLOW );
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<>ľ<EFBFBD><C4BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!", CHAR_getChar( i, CHAR_NAME),(int)atoi(exp));
|
|||
|
CHAR_talkToCli( charaindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}else{
|
|||
|
CHAR_setMaxExp( charaindex, atoi( exp ));
|
|||
|
CHAR_send_P_StatusString( charaindex , CHAR_P_STRING_EXP);
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!",(int)atoi(exp)/100);
|
|||
|
CHAR_talkToCli( charaindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_delitem( int charindex , char *message )
|
|||
|
{
|
|||
|
int itemid;
|
|||
|
|
|||
|
if( strcmp( message, "all") == 0 ) {
|
|||
|
int i;
|
|||
|
for( i = CHAR_STARTITEMARRAY; i < CHAR_MAXITEMHAVE; i ++ ) {
|
|||
|
itemid = CHAR_getItemIndex(charindex, i);
|
|||
|
if( itemid != -1 ) {
|
|||
|
{
|
|||
|
LogItem(
|
|||
|
CHAR_getChar( charindex, CHAR_NAME ),
|
|||
|
CHAR_getChar( charindex, 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>
|
|||
|
itemid,
|
|||
|
#else
|
|||
|
ITEM_getInt( itemid, ITEM_ID ),
|
|||
|
#endif
|
|||
|
"DelItem(ɾ<><C9BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD>GM)",
|
|||
|
CHAR_getInt( charindex,CHAR_FLOOR),
|
|||
|
CHAR_getInt( charindex,CHAR_X ),
|
|||
|
CHAR_getInt( charindex,CHAR_Y ),
|
|||
|
ITEM_getChar( itemid, ITEM_UNIQUECODE),
|
|||
|
ITEM_getChar( itemid, ITEM_NAME),
|
|||
|
ITEM_getInt( itemid, ITEM_ID)
|
|||
|
);
|
|||
|
}
|
|||
|
CHAR_DelItem( charindex, i);
|
|||
|
}
|
|||
|
}
|
|||
|
}else {
|
|||
|
int equipplace;
|
|||
|
equipplace = atoi( message);
|
|||
|
if( equipplace < CHAR_STARTITEMARRAY || equipplace > CHAR_MAXITEMHAVE -1 ) {
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD><EFBFBD>벻<EFBFBD><EFBFBD>ȷ<EFBFBD><EFBFBD>", CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
itemid = CHAR_getItemIndex(charindex, equipplace);
|
|||
|
if( itemid == -1 ) return;
|
|||
|
{
|
|||
|
LogItem(
|
|||
|
CHAR_getChar( charindex, CHAR_NAME ),
|
|||
|
CHAR_getChar( charindex, 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>
|
|||
|
itemid,
|
|||
|
#else
|
|||
|
ITEM_getInt( itemid, ITEM_ID ),
|
|||
|
#endif
|
|||
|
"DelItem(ɾ<><C9BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD>GM)",
|
|||
|
CHAR_getInt( charindex,CHAR_FLOOR),
|
|||
|
CHAR_getInt( charindex,CHAR_X ),
|
|||
|
CHAR_getInt( charindex,CHAR_Y ),
|
|||
|
ITEM_getChar( itemid, ITEM_UNIQUECODE),
|
|||
|
ITEM_getChar( itemid, ITEM_NAME),
|
|||
|
ITEM_getInt( itemid, ITEM_ID)
|
|||
|
);
|
|||
|
}
|
|||
|
CHAR_DelItem( charindex, equipplace);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
#ifdef _CHAR_PROFESSION // WON ADD <20><><EFBFBD><EFBFBD>ְҵ
|
|||
|
void CHAR_CHAT_DEBUG_addsk( int charaindex, char* message )
|
|||
|
{
|
|||
|
|
|||
|
CHAR_HaveSkill *pSkil;
|
|||
|
int skill, i, level=1;
|
|||
|
|
|||
|
char msg1[20], msg2[20];
|
|||
|
|
|||
|
getStringFromIndexWithDelim( message, " ", 1, msg1, sizeof( msg1));
|
|||
|
getStringFromIndexWithDelim( message, " ", 2, msg2, sizeof( msg2));
|
|||
|
|
|||
|
skill = atoi(msg1);
|
|||
|
level = atoi(msg2);
|
|||
|
|
|||
|
if( level > 100 ){
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD>ȼ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ", CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
if( level < 1 ) level = 1;
|
|||
|
|
|||
|
for( i = 0; i < CHAR_SKILLMAXHAVE; i ++ ){
|
|||
|
int skill_id = -1;
|
|||
|
|
|||
|
pSkil = CHAR_getCharHaveSkill( charaindex, i );
|
|||
|
skill_id = SKILL_getInt( &pSkil->skill, SKILL_IDENTITY);
|
|||
|
if( skill == skill_id && skill_id != -1 ){
|
|||
|
CHAR_talkToCli(charaindex,-1, "<EFBFBD><EFBFBD><EFBFBD>Ѿ<EFBFBD>ѧϰ<EFBFBD><EFBFBD><EFBFBD>˼<EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
if( pSkil == NULL ) continue;
|
|||
|
if( pSkil->use != 0 ) continue;
|
|||
|
|
|||
|
break;
|
|||
|
}
|
|||
|
|
|||
|
if( i >= CHAR_SKILLMAXHAVE ){
|
|||
|
CHAR_talkToCli(charaindex,-1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
return;
|
|||
|
}else{
|
|||
|
level *= 100;
|
|||
|
SKILL_makeSkillData( &pSkil->skill, skill, level);
|
|||
|
pSkil->use = TRUE;
|
|||
|
}
|
|||
|
|
|||
|
CHAR_sendStatusString( charaindex , "S");
|
|||
|
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_delsk( int charaindex, char* message )
|
|||
|
{
|
|||
|
int i;
|
|||
|
CHAR_HaveSkill *pSkil;
|
|||
|
|
|||
|
if( strcmp( message, "all" ) == 0 ){
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>м<EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORWHITE);
|
|||
|
for( i = CHAR_SKILLMAXHAVE-1; i >= 0; i -- ){
|
|||
|
pSkil = CHAR_getCharHaveSkill( charaindex, i );
|
|||
|
if( pSkil == NULL )continue;
|
|||
|
if( pSkil->use == 0 )continue;
|
|||
|
SKILL_makeSkillData( &pSkil->skill, 0, 0 );
|
|||
|
pSkil->use = 0;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
for( i = CHAR_SKILLMAXHAVE-1; i >= 0; i -- ){
|
|||
|
pSkil = CHAR_getCharHaveSkill( charaindex, i );
|
|||
|
if( pSkil == NULL )continue;
|
|||
|
if( pSkil->use == 0 )continue;
|
|||
|
print( "SKILUSE %d\n", pSkil->use );
|
|||
|
break;
|
|||
|
}
|
|||
|
|
|||
|
if( i < 0 ){
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ˡ<EFBFBD>", CHAR_COLORWHITE);
|
|||
|
;;
|
|||
|
}else{
|
|||
|
SKILL_makeSkillData( &pSkil->skill, 0, 0 );
|
|||
|
pSkil->use = 0;
|
|||
|
}
|
|||
|
|
|||
|
CHAR_sendStatusString( charaindex , "S");
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _MAKE_MAP
|
|||
|
void CHAR_CHAT_DelMap( int charaindex, char* message ){
|
|||
|
|
|||
|
int ff, x, y, xx, yy;
|
|||
|
int tile, obj;
|
|||
|
|
|||
|
ff = CHAR_getInt( charaindex, CHAR_FLOOR );
|
|||
|
|
|||
|
if( MAP_getFloorXY( ff, &xx, &yy) == FALSE )return;
|
|||
|
|
|||
|
for(x=0;x<xx;x++){
|
|||
|
for(y=0;y<yy;y++){
|
|||
|
if( MAP_getTileAndObjData( ff, x, y, &tile, &obj) == FALSE )continue;
|
|||
|
printf("\nff:%d,x:%d,y:%d,tile:%d,obj:%d\n", ff, x, y, tile, obj);
|
|||
|
if(atoi(message)==1){
|
|||
|
MAP_setTileAndObjData( ff, x, y, tile, 0 );
|
|||
|
}else if(atoi(message)==2){
|
|||
|
MAP_setTileAndObjData( ff, x, y, 0, obj );
|
|||
|
}else if(atoi(message)==3){
|
|||
|
MAP_setTileAndObjData( ff, x, y, 0, 0 );
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_GetMap( int charaindex, char* message ){
|
|||
|
|
|||
|
int dir, ff, fx, fy;
|
|||
|
int tile, obj;
|
|||
|
|
|||
|
ff = CHAR_getInt( charaindex, CHAR_FLOOR );
|
|||
|
fx = CHAR_getInt( charaindex, CHAR_X );
|
|||
|
fy = CHAR_getInt( charaindex, CHAR_Y );
|
|||
|
dir = CHAR_getInt( charaindex, CHAR_DIR );
|
|||
|
|
|||
|
fx += CHAR_getDX(dir);
|
|||
|
fy += CHAR_getDY(dir);
|
|||
|
|
|||
|
if( MAP_getTileAndObjData( ff, fx, fy, &tile, &obj) == FALSE )return;
|
|||
|
|
|||
|
{
|
|||
|
char szBuffer[64];
|
|||
|
snprintf( szBuffer, sizeof( szBuffer ), "ͼƬ= %d; <20><><EFBFBD><EFBFBD>= %d",
|
|||
|
tile, obj );
|
|||
|
CHAR_talkToCli( charaindex, -1, szBuffer, CHAR_COLORWHITE);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_Map( int charaindex, char* message ){
|
|||
|
|
|||
|
int dir, ff, fx, fy;
|
|||
|
int tile, obj;
|
|||
|
int fixtile, fixobj;
|
|||
|
char buf[16];
|
|||
|
|
|||
|
getStringFromIndexWithDelim( message, " ", 1, buf, sizeof( buf));
|
|||
|
fixobj=atoi(buf);
|
|||
|
getStringFromIndexWithDelim( message, " ", 2, buf, sizeof( buf));
|
|||
|
fixtile=atoi(buf);
|
|||
|
ff = CHAR_getInt( charaindex, CHAR_FLOOR );
|
|||
|
fx = CHAR_getInt( charaindex, CHAR_X );
|
|||
|
fy = CHAR_getInt( charaindex, CHAR_Y );
|
|||
|
dir = CHAR_getInt( charaindex, CHAR_DIR );
|
|||
|
|
|||
|
fx += CHAR_getDX(dir);
|
|||
|
fy += CHAR_getDY(dir);
|
|||
|
|
|||
|
if( MAP_getTileAndObjData( ff, fx, fy, &tile, &obj) == FALSE )return;
|
|||
|
|
|||
|
{
|
|||
|
char szBuffer[64];
|
|||
|
snprintf( szBuffer, sizeof( szBuffer ), "ͼƬ<EFBFBD><EFBFBD>%d => %d", tile, fixtile );
|
|||
|
CHAR_talkToCli( charaindex, -1, szBuffer, CHAR_COLORWHITE);
|
|||
|
snprintf( szBuffer, sizeof( szBuffer ), "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%d => %d", obj, fixobj );
|
|||
|
CHAR_talkToCli( charaindex, -1, szBuffer, CHAR_COLORWHITE);
|
|||
|
}
|
|||
|
|
|||
|
MAP_setTileAndObjData( ff, fx, fy, fixtile, fixobj );
|
|||
|
|
|||
|
{
|
|||
|
char *stringdata;
|
|||
|
RECT seekr , retr;
|
|||
|
seekr.x = fx;
|
|||
|
seekr.y = fy;
|
|||
|
seekr.width = 1;
|
|||
|
seekr.height = 1;
|
|||
|
stringdata = MAP_getdataFromRECT(ff,&seekr,&retr);
|
|||
|
if( stringdata ){
|
|||
|
|
|||
|
if( CHAR_getInt( charaindex , CHAR_WHICHTYPE )
|
|||
|
== CHAR_TYPEPLAYER ){
|
|||
|
int fd = getfdFromCharaIndex( charaindex );
|
|||
|
lssproto_M_send(fd,ff,
|
|||
|
retr.x,retr.y,
|
|||
|
retr.x+retr.width,retr.y+retr.height,
|
|||
|
stringdata );
|
|||
|
}
|
|||
|
} else {
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
return ;
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_Fixtile( int charaindex, char* message ){
|
|||
|
|
|||
|
int dir, ff, fx, fy;
|
|||
|
int tile, obj;
|
|||
|
int fixtile=atoi(message);
|
|||
|
|
|||
|
ff = CHAR_getInt( charaindex, CHAR_FLOOR );
|
|||
|
fx = CHAR_getInt( charaindex, CHAR_X );
|
|||
|
fy = CHAR_getInt( charaindex, CHAR_Y );
|
|||
|
dir = CHAR_getInt( charaindex, CHAR_DIR );
|
|||
|
|
|||
|
fx += CHAR_getDX(dir);
|
|||
|
fy += CHAR_getDY(dir);
|
|||
|
|
|||
|
if( MAP_getTileAndObjData( ff, fx, fy, &tile, &obj) == FALSE )return;
|
|||
|
|
|||
|
{
|
|||
|
char szBuffer[64];
|
|||
|
snprintf( szBuffer, sizeof( szBuffer ), "ͼƬ<EFBFBD><EFBFBD>%d => %d", tile, fixtile );
|
|||
|
CHAR_talkToCli( charaindex, -1, szBuffer, CHAR_COLORWHITE);
|
|||
|
snprintf( szBuffer, sizeof( szBuffer ), "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%d => %d", obj, obj );
|
|||
|
CHAR_talkToCli( charaindex, -1, szBuffer, CHAR_COLORWHITE);
|
|||
|
}
|
|||
|
|
|||
|
MAP_setTileAndObjData( ff, fx, fy, fixtile, -1 );
|
|||
|
|
|||
|
{
|
|||
|
char *stringdata;
|
|||
|
RECT seekr , retr;
|
|||
|
seekr.x = fx;
|
|||
|
seekr.y = fy;
|
|||
|
seekr.width = 1;
|
|||
|
seekr.height = 1;
|
|||
|
stringdata = MAP_getdataFromRECT(ff,&seekr,&retr);
|
|||
|
if( stringdata ){
|
|||
|
|
|||
|
if( CHAR_getInt( charaindex , CHAR_WHICHTYPE )
|
|||
|
== CHAR_TYPEPLAYER ){
|
|||
|
int fd = getfdFromCharaIndex( charaindex );
|
|||
|
lssproto_M_send(fd,ff,
|
|||
|
retr.x,retr.y,
|
|||
|
retr.x+retr.width,retr.y+retr.height,
|
|||
|
stringdata );
|
|||
|
}
|
|||
|
} else {
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
return ;
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_Fixobj( int charaindex, char* message ){
|
|||
|
|
|||
|
int dir, ff, fx, fy;
|
|||
|
int tile, obj;
|
|||
|
int fixobj=atoi(message);
|
|||
|
|
|||
|
ff = CHAR_getInt( charaindex, CHAR_FLOOR );
|
|||
|
fx = CHAR_getInt( charaindex, CHAR_X );
|
|||
|
fy = CHAR_getInt( charaindex, CHAR_Y );
|
|||
|
dir = CHAR_getInt( charaindex, CHAR_DIR );
|
|||
|
|
|||
|
fx += CHAR_getDX(dir);
|
|||
|
fy += CHAR_getDY(dir);
|
|||
|
|
|||
|
if( MAP_getTileAndObjData( ff, fx, fy, &tile, &obj) == FALSE )return;
|
|||
|
|
|||
|
{
|
|||
|
char szBuffer[64];
|
|||
|
snprintf( szBuffer, sizeof( szBuffer ), "ͼƬ<EFBFBD><EFBFBD>%d => %d", tile, tile );
|
|||
|
CHAR_talkToCli( charaindex, -1, szBuffer, CHAR_COLORWHITE);
|
|||
|
snprintf( szBuffer, sizeof( szBuffer ), "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%d => %d", obj, fixobj );
|
|||
|
CHAR_talkToCli( charaindex, -1, szBuffer, CHAR_COLORWHITE);
|
|||
|
}
|
|||
|
|
|||
|
MAP_setTileAndObjData( ff, fx, fy, -1, fixobj );
|
|||
|
|
|||
|
{
|
|||
|
char *stringdata;
|
|||
|
RECT seekr , retr;
|
|||
|
seekr.x = fx;
|
|||
|
seekr.y = fy;
|
|||
|
seekr.width = 1;
|
|||
|
seekr.height = 1;
|
|||
|
stringdata = MAP_getdataFromRECT(ff,&seekr,&retr);
|
|||
|
if( stringdata ){
|
|||
|
|
|||
|
if( CHAR_getInt( charaindex , CHAR_WHICHTYPE )
|
|||
|
== CHAR_TYPEPLAYER ){
|
|||
|
int fd = getfdFromCharaIndex( charaindex );
|
|||
|
lssproto_M_send(fd,ff,
|
|||
|
retr.x,retr.y,
|
|||
|
retr.x+retr.width,retr.y+retr.height,
|
|||
|
stringdata );
|
|||
|
}
|
|||
|
} else {
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
return ;
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_Fukuwa( int charaindex, char* message ){
|
|||
|
int dir, ff, fx, fy, objindex, vs_index, vs_fd, stringlen;
|
|||
|
OBJECT obj;
|
|||
|
char szBuffer[2048];
|
|||
|
|
|||
|
stringlen = strlen( message );
|
|||
|
|
|||
|
if( message[0] == '[' && message[stringlen-1] == ']' ){
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>û<EFBFBD><EFBFBD>ת<EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORWHITE);
|
|||
|
return ;
|
|||
|
}
|
|||
|
|
|||
|
ff = CHAR_getInt( charaindex, CHAR_FLOOR );
|
|||
|
fx = CHAR_getInt( charaindex, CHAR_X );
|
|||
|
fy = CHAR_getInt( charaindex, CHAR_Y );
|
|||
|
dir = CHAR_getInt( charaindex, CHAR_DIR );
|
|||
|
|
|||
|
fx += CHAR_getDX(dir);
|
|||
|
fy += CHAR_getDY(dir);
|
|||
|
|
|||
|
stringlen = strlen( message );
|
|||
|
|
|||
|
|
|||
|
snprintf( szBuffer, sizeof( szBuffer ), "P|%s", message );
|
|||
|
|
|||
|
for( obj=MAP_getTopObj( ff, fx, fy ); obj; obj=NEXT_OBJECT(obj) ){
|
|||
|
objindex = GET_OBJINDEX(obj);
|
|||
|
if( OBJECT_getType(objindex) != OBJTYPE_CHARA )continue;
|
|||
|
vs_index = OBJECT_getIndex(objindex);
|
|||
|
vs_fd = getfdFromCharaIndex( vs_index );
|
|||
|
CHAR_Talk( vs_fd, vs_index,
|
|||
|
szBuffer, CHAR_COLORWHITE, 3 );
|
|||
|
break;
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_superman( int charaindex, char* message )
|
|||
|
{
|
|||
|
#define CHAT_CHAT_DEBUG_SUPERMAN_PARAMDEF 100000
|
|||
|
int i;
|
|||
|
char hp[15];
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
char token[128];
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
easyGetTokenFromString( message , 1 , hp, sizeof(hp));
|
|||
|
easyGetTokenFromString( message , 2 , cdkey, sizeof(cdkey));
|
|||
|
if(strlen(cdkey)>0){
|
|||
|
for(i=0;i<playernum;i++){
|
|||
|
if(CHAR_CHECKINDEX(i) == FALSE) continue;
|
|||
|
if(!strcmp( CHAR_getChar( i, CHAR_CDKEY), cdkey))
|
|||
|
{
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if (i>=playernum)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD>˺Ų<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~", CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
CHAR_setInt(charaindex,CHAR_SKILLUPPOINT, 0);
|
|||
|
CHAR_Skillupsend(charaindex);
|
|||
|
CHAR_setInt( charaindex , CHAR_HP, CHAT_CHAT_DEBUG_SUPERMAN_PARAMDEF);
|
|||
|
CHAR_setInt( charaindex , CHAR_MP,100 );
|
|||
|
CHAR_setInt( charaindex , CHAR_MAXMP,100 );
|
|||
|
CHAR_setInt( charaindex , CHAR_VITAL,CHAT_CHAT_DEBUG_SUPERMAN_PARAMDEF );
|
|||
|
CHAR_setInt( charaindex , CHAR_STR,CHAT_CHAT_DEBUG_SUPERMAN_PARAMDEF );
|
|||
|
CHAR_setInt( charaindex , CHAR_TOUGH,CHAT_CHAT_DEBUG_SUPERMAN_PARAMDEF );
|
|||
|
CHAR_setInt( charaindex , CHAR_DEX , CHAT_CHAT_DEBUG_SUPERMAN_PARAMDEF );
|
|||
|
#ifdef _TRANS_LEVEL_CF
|
|||
|
CHAR_setInt( charaindex,CHAR_LV, 140);
|
|||
|
#else
|
|||
|
CHAR_setInt( charaindex,CHAR_LV, 140);
|
|||
|
#endif
|
|||
|
CHAR_complianceParameter( charaindex );
|
|||
|
CHAR_sendStatusString( charaindex , "P");
|
|||
|
|
|||
|
sprintf( token, "[GM]%s<><73><EFBFBD><EFBFBD>Ϊ<EFBFBD><CEAA><EFBFBD><EFBFBD>״̬!", CHAR_getChar( charaindex, CHAR_NAME));
|
|||
|
CHAR_talkToCli( i, -1, token, CHAR_COLORYELLOW );
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73><EFBFBD><EFBFBD>Ϊ<EFBFBD><CEAA><EFBFBD><EFBFBD>״̬!", CHAR_getChar( i, CHAR_NAME));
|
|||
|
CHAR_talkToCli( charaindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}else{
|
|||
|
CHAR_setInt(charaindex,CHAR_SKILLUPPOINT, 0);
|
|||
|
CHAR_Skillupsend(charaindex);
|
|||
|
CHAR_setInt( charaindex , CHAR_HP, CHAT_CHAT_DEBUG_SUPERMAN_PARAMDEF);
|
|||
|
CHAR_setInt( charaindex , CHAR_MP,100 );
|
|||
|
CHAR_setInt( charaindex , CHAR_MAXMP,100 );
|
|||
|
CHAR_setInt( charaindex , CHAR_VITAL,CHAT_CHAT_DEBUG_SUPERMAN_PARAMDEF );
|
|||
|
CHAR_setInt( charaindex , CHAR_STR,CHAT_CHAT_DEBUG_SUPERMAN_PARAMDEF );
|
|||
|
CHAR_setInt( charaindex , CHAR_TOUGH,CHAT_CHAT_DEBUG_SUPERMAN_PARAMDEF );
|
|||
|
CHAR_setInt( charaindex , CHAR_DEX , CHAT_CHAT_DEBUG_SUPERMAN_PARAMDEF );
|
|||
|
#ifdef _TRANS_LEVEL_CF
|
|||
|
CHAR_setInt( charaindex,CHAR_LV, 140);
|
|||
|
#else
|
|||
|
CHAR_setInt( charaindex,CHAR_LV, 140);
|
|||
|
#endif
|
|||
|
CHAR_complianceParameter( charaindex );
|
|||
|
CHAR_sendStatusString( charaindex , "P");
|
|||
|
|
|||
|
CHAR_talkToCli( charaindex, -1,"<EFBFBD><EFBFBD><EFBFBD>ó<EFBFBD><EFBFBD><EFBFBD>״̬!", CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
#undef CHAT_CHAT_DEBUG_SUPERMAN_PARAMDEF
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_printcount( int charaindex, char* message )
|
|||
|
{
|
|||
|
char msgbuf[512];
|
|||
|
|
|||
|
snprintf( msgbuf,sizeof( msgbuf),
|
|||
|
"<EFBFBD><EFBFBD>˵<EFBFBD><EFBFBD> %d <20>λ<EFBFBD>,<2C><><EFBFBD><EFBFBD> %d <20><>·,<2C><><EFBFBD><EFBFBD> %d <20><>",
|
|||
|
CHAR_getInt( charaindex, CHAR_TALKCOUNT),
|
|||
|
CHAR_getInt( charaindex, CHAR_WALKCOUNT),
|
|||
|
CHAR_getInt( charaindex, CHAR_DEADCOUNT)
|
|||
|
);
|
|||
|
CHAR_talkToCli( charaindex, -1, msgbuf, CHAR_COLORWHITE);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_battlein( int charaindex, char* message )
|
|||
|
{
|
|||
|
int fd = getfdFromCharaIndex( charaindex );
|
|||
|
if( fd != -1) {
|
|||
|
lssproto_EN_recv( fd,
|
|||
|
CHAR_getInt( charaindex, CHAR_X),
|
|||
|
CHAR_getInt( charaindex, CHAR_Y));
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_battleout( int charaindex, char* message )
|
|||
|
{
|
|||
|
|
|||
|
BATTLE_WatchStop( charaindex );
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_petmake( int charaindex, char* message )
|
|||
|
{
|
|||
|
int ret;
|
|||
|
int enemynum;
|
|||
|
int enemyid;
|
|||
|
int i,j;
|
|||
|
int level=-1;
|
|||
|
char buf[10];
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
char token[128];
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
easyGetTokenFromString( message , 1 , buf, sizeof(buf));
|
|||
|
enemyid=atoi(buf);
|
|||
|
easyGetTokenFromString( message , 2 , buf, sizeof(buf));
|
|||
|
level=atoi(buf);
|
|||
|
easyGetTokenFromString( message , 3 , cdkey, sizeof(cdkey));
|
|||
|
if(strlen(cdkey)>0){
|
|||
|
for(j=0;j<playernum;j++){
|
|||
|
if(CHAR_CHECKINDEX(j) == FALSE) continue;
|
|||
|
if(!strcmp( CHAR_getChar( j, CHAR_CDKEY), cdkey))
|
|||
|
{
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if (j>=playernum)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD>˺Ų<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~", CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
enemynum = ENEMY_getEnemyNum();
|
|||
|
for( i = 0; i < enemynum; i ++ ) {
|
|||
|
if( ENEMY_getInt( i, ENEMY_ID) == enemyid) {
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if( i == enemynum )return;
|
|||
|
|
|||
|
ret = ENEMY_createPetFromEnemyIndex( j, i);
|
|||
|
if( !CHAR_CHECKINDEX( ret))return;
|
|||
|
|
|||
|
sprintf( token, "[GM]%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73><EFBFBD><EFBFBD>!", CHAR_getChar( charaindex, CHAR_NAME),ENEMY_getChar( i, ENEMY_NAME));
|
|||
|
CHAR_talkToCli( j, -1, token, CHAR_COLORYELLOW );
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73>%s<><73><EFBFBD><EFBFBD><EFBFBD>ɹ<EFBFBD>!", CHAR_getChar( j, CHAR_NAME),ENEMY_getChar( i, ENEMY_NAME));
|
|||
|
CHAR_talkToCli( charaindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
for( i = 0; i < CHAR_MAXPETHAVE; i ++ ){
|
|||
|
if( CHAR_getCharPet( j, i ) == ret )break;
|
|||
|
}
|
|||
|
if( i == CHAR_MAXPETHAVE )return;
|
|||
|
|
|||
|
if( CHAR_CHECKINDEX( ret ) == TRUE ){
|
|||
|
CHAR_setMaxExpFromLevel( ret, CHAR_getInt( ret, CHAR_LV ));
|
|||
|
CHAR_setInt(ret,CHAR_VARIABLEAI,10000);
|
|||
|
}
|
|||
|
if( level != -1 ){
|
|||
|
#ifdef _TRANS_LEVEL_CF
|
|||
|
if( level > getMaxLevel() ) level = getMaxLevel();
|
|||
|
#else
|
|||
|
if( level > 140 ) level = 140;
|
|||
|
#endif
|
|||
|
if( level < 0 ) level = 0;
|
|||
|
level = level - CHAR_getInt( ret, CHAR_LV );
|
|||
|
if( level > 0 ){
|
|||
|
int k;
|
|||
|
for( k = 1; k <= level; k ++ ){ //<2F><><EFBFBD><EFBFBD>
|
|||
|
CHAR_PetLevelUp( ret );
|
|||
|
CHAR_PetAddVariableAi( ret, AI_FIX_PETLEVELUP );
|
|||
|
CHAR_setInt( ret, CHAR_LV, CHAR_getInt( ret, CHAR_LV) +1 );
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
CHAR_setInt( ret, CHAR_HP, CHAR_getWorkInt( ret, CHAR_WORKMAXHP ));
|
|||
|
CHAR_complianceParameter( ret );
|
|||
|
snprintf( token, sizeof( token ), "K%d", i );
|
|||
|
CHAR_sendStatusString( j, token );
|
|||
|
snprintf( token, sizeof( token ), "W%d", i );
|
|||
|
CHAR_sendStatusString( j, token );
|
|||
|
}else{
|
|||
|
enemynum = ENEMY_getEnemyNum();
|
|||
|
for( i = 0; i < enemynum; i ++ ) {
|
|||
|
if( ENEMY_getInt( i, ENEMY_ID) == enemyid) {
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if( i == enemynum )return;
|
|||
|
|
|||
|
ret = ENEMY_createPetFromEnemyIndex(charaindex, i);
|
|||
|
if( !CHAR_CHECKINDEX( ret))return;
|
|||
|
|
|||
|
snprintf( token,sizeof( token), "%s<><73><EFBFBD><EFBFBD><EFBFBD>ɹ<EFBFBD>!",ENEMY_getChar( i, ENEMY_NAME));
|
|||
|
CHAR_talkToCli( charaindex, -1, token, CHAR_COLORWHITE);
|
|||
|
|
|||
|
for( i = 0; i < CHAR_MAXPETHAVE; i ++ ){
|
|||
|
if( CHAR_getCharPet( charaindex, i ) == ret )break;
|
|||
|
}
|
|||
|
if( i == CHAR_MAXPETHAVE )return;
|
|||
|
|
|||
|
if( CHAR_CHECKINDEX( ret ) == TRUE ){
|
|||
|
CHAR_setMaxExpFromLevel( ret, CHAR_getInt( ret, CHAR_LV ));
|
|||
|
CHAR_setInt(ret,CHAR_VARIABLEAI,10000);
|
|||
|
}
|
|||
|
if( level != -1 ){
|
|||
|
if( level > 200 ) level = 200;
|
|||
|
if( level < 0 ) level = 0;
|
|||
|
level = level - CHAR_getInt( ret, CHAR_LV );
|
|||
|
if( level > 0 ){
|
|||
|
int k;
|
|||
|
for( k = 1; k <= level; k ++ ){ //<2F><><EFBFBD><EFBFBD>
|
|||
|
CHAR_PetLevelUp( ret );
|
|||
|
CHAR_PetAddVariableAi( ret, AI_FIX_PETLEVELUP );
|
|||
|
CHAR_setInt( ret, CHAR_LV, CHAR_getInt( ret, CHAR_LV) +1 );
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
CHAR_setInt( ret, CHAR_HP, CHAR_getWorkInt( ret, CHAR_WORKMAXHP ));
|
|||
|
CHAR_complianceParameter( ret );
|
|||
|
snprintf( token, sizeof( token ), "K%d", i );
|
|||
|
CHAR_sendStatusString( charaindex, token );
|
|||
|
snprintf( token, sizeof( token ), "W%d", i );
|
|||
|
CHAR_sendStatusString( charaindex, token );
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_deletepet( int charaindex, char* message )
|
|||
|
{
|
|||
|
int i, pindex;
|
|||
|
char category[12];
|
|||
|
|
|||
|
for( i = 0; i < CHAR_MAXPETHAVE; i ++ ) {
|
|||
|
pindex = CHAR_getCharPet( charaindex, i);
|
|||
|
if( CHAR_CHECKINDEX( pindex)) {
|
|||
|
CHAR_endCharOneArray( pindex );
|
|||
|
CHAR_setCharPet( charaindex, i, -1);
|
|||
|
if( i == CHAR_getInt( charaindex, CHAR_DEFAULTPET)) {
|
|||
|
int myfd;
|
|||
|
CHAR_setInt( charaindex, CHAR_DEFAULTPET, -1);
|
|||
|
myfd = getfdFromCharaIndex( charaindex);
|
|||
|
lssproto_KS_send( myfd, i, 0);
|
|||
|
}
|
|||
|
snprintf( category, sizeof( category), "K%d",i);
|
|||
|
CHAR_sendStatusString( charaindex, category );
|
|||
|
snprintf( category, sizeof( category), "W%d",i);
|
|||
|
CHAR_sendStatusString( charaindex, category );
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>г<EFBFBD><EFBFBD>", CHAR_COLORWHITE);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#define MAXMESS_LISTNUM 8
|
|||
|
#define ALLRESET (MAXMESS_LISTNUM - 1)
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_reset( int charaindex, char* message )
|
|||
|
{
|
|||
|
int i;
|
|||
|
char mess[MAXMESS_LISTNUM][256]={ "enemy", "encount", "magic", "warppoint", "petskill", "pettalk","npc", "all"};
|
|||
|
|
|||
|
for( i=0; i<MAXMESS_LISTNUM; i++){
|
|||
|
if( !strcmp( mess[i], message) )
|
|||
|
break;
|
|||
|
}
|
|||
|
if( i >= MAXMESS_LISTNUM ){
|
|||
|
CHAR_talkToCli( charaindex, -1, "ָ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);//CHAR_COLORYELLOW
|
|||
|
return;
|
|||
|
}
|
|||
|
switch( i){
|
|||
|
case ALLRESET:
|
|||
|
case 0:
|
|||
|
if( !ENEMYTEMP_reinitEnemy() || !ENEMY_reinitEnemy() ){
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD>¶<EFBFBD>ȡ<EFBFBD><EFBFBD><EFBFBD>˻<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD>ܡ<EFBFBD>", CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
if( i != ALLRESET ) break;
|
|||
|
case 1:
|
|||
|
if( !GROUP_reinitGroup() || !ENCOUNT_reinitEncount() ){
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD>¶<EFBFBD>ȡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ŷ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD>ܡ<EFBFBD>", CHAR_COLORRED);
|
|||
|
}
|
|||
|
if( i != ALLRESET ) break;
|
|||
|
case 2:
|
|||
|
if( !MAGIC_reinitMagic() || !ATTMAGIC_reinitMagic() ) {
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD>¶<EFBFBD>ȡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD>ܡ<EFBFBD>", CHAR_COLORRED);
|
|||
|
}
|
|||
|
if( i != ALLRESET ) break;
|
|||
|
case 3:
|
|||
|
MAPPOINT_resetMapWarpPoint( 1);
|
|||
|
if( !MAPPOINT_loadMapWarpPoint() ){
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD>¶<EFBFBD>ȡ<EFBFBD><EFBFBD>Ծ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD>ܡ<EFBFBD>", CHAR_COLORRED);
|
|||
|
}
|
|||
|
if( i != ALLRESET ) break;
|
|||
|
case 4:
|
|||
|
if( !PETSKILL_reinitPetskill() ) {
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD>¶<EFBFBD>ȡ<EFBFBD><EFBFBD><EFBFBD>\<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD>ܡ<EFBFBD>", CHAR_COLORRED);
|
|||
|
}
|
|||
|
if( i != ALLRESET ) break;
|
|||
|
case 5:
|
|||
|
LoadPetTalk();
|
|||
|
if( i != ALLRESET ) break;
|
|||
|
break;
|
|||
|
case 6:
|
|||
|
if( !NPC_reloadNPC() ) {
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>NPC<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD>ܡ<EFBFBD>", CHAR_COLORRED);
|
|||
|
}
|
|||
|
if( i != ALLRESET ) break;
|
|||
|
break;
|
|||
|
}
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD>¶<EFBFBD>ȡ<EFBFBD><EFBFBD>Ϸ<EFBFBD><EFBFBD><EFBFBD>ϡ<EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_enemyrestart( int charaindex, char* message )
|
|||
|
{
|
|||
|
if( ENEMYTEMP_reinitEnemy()) {
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD>ٴζ<EFBFBD>ȡ<EFBFBD><EFBFBD><EFBFBD>˻<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϡ<EFBFBD>", CHAR_COLORWHITE);
|
|||
|
}else {
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD>ٴζ<EFBFBD>ȡ<EFBFBD><EFBFBD><EFBFBD>˻<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD>ܡ<EFBFBD>", CHAR_COLORWHITE);
|
|||
|
}
|
|||
|
|
|||
|
if( ENEMY_reinitEnemy()) {
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD>ٴζ<EFBFBD>ȡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϡ<EFBFBD>", CHAR_COLORWHITE);
|
|||
|
}else {
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD>ٴζ<EFBFBD>ȡ<EFBFBD><EFBFBD><EFBFBD>˻<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD>ܡ<EFBFBD>", CHAR_COLORWHITE);
|
|||
|
}
|
|||
|
|
|||
|
if( GROUP_reinitGroup()) {
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD>ٴζ<EFBFBD>ȡ<EFBFBD>Ŷ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϡ<EFBFBD>", CHAR_COLORWHITE);
|
|||
|
}else {
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD>ٴζ<EFBFBD>ȡ<EFBFBD>Ŷ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD>ܡ<EFBFBD>", CHAR_COLORWHITE);
|
|||
|
}
|
|||
|
if( ENCOUNT_reinitEncount()) {
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD>ٴζ<EFBFBD>ȡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϡ<EFBFBD>", CHAR_COLORWHITE);
|
|||
|
}
|
|||
|
else {
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD>ٴζ<EFBFBD>ȡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD>ܡ<EFBFBD>", CHAR_COLORWHITE);
|
|||
|
}
|
|||
|
|
|||
|
if( MAGIC_reinitMagic()) {
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD>ٴζ<EFBFBD>ȡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϡ<EFBFBD>", CHAR_COLORWHITE);
|
|||
|
}
|
|||
|
else {
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD>ٴζ<EFBFBD>ȡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD>ܡ<EFBFBD>", CHAR_COLORWHITE);
|
|||
|
}
|
|||
|
|
|||
|
#ifdef _ATTACK_MAGIC
|
|||
|
if( ATTMAGIC_reinitMagic() )
|
|||
|
CHAR_talkToCli( charaindex , -1 , "<EFBFBD>ٴζ<EFBFBD>ȡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϡ<EFBFBD>" , CHAR_COLORWHITE );
|
|||
|
else
|
|||
|
CHAR_talkToCli( charaindex , -1 , "<EFBFBD>ٴζ<EFBFBD>ȡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD>ܡ<EFBFBD>" , CHAR_COLORWHITE );
|
|||
|
#endif
|
|||
|
if( PETSKILL_reinitPetskill()) {
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD>ٴζ<EFBFBD>ȡ<EFBFBD><EFBFBD><EFBFBD>\<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϡ<EFBFBD>", CHAR_COLORWHITE);
|
|||
|
}
|
|||
|
else {
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD>ٴζ<EFBFBD>ȡ<EFBFBD><EFBFBD><EFBFBD>\<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD>ܡ<EFBFBD>", CHAR_COLORWHITE);
|
|||
|
}
|
|||
|
|
|||
|
LoadPetTalk(); // Arminius 8.15 pet talk
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD>ٴζ<EFBFBD>ȡ<EFBFBD><EFBFBD><EFBFBD>イ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϡ<EFBFBD>", CHAR_COLORWHITE);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_battlewatch( int charaindex, char* message )
|
|||
|
{
|
|||
|
int fd = getfdFromCharaIndex( charaindex );
|
|||
|
if( fd != -1) {
|
|||
|
lssproto_LB_recv( fd,
|
|||
|
CHAR_getInt( charaindex, CHAR_X),
|
|||
|
CHAR_getInt( charaindex, CHAR_Y));
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
// shan 2001/12/18 Begin <20><>춸ı<ECB6B8><C4B1><EFBFBD><EFBFBD>࣬<EFBFBD>ʽ<EFBFBD>ԭ<EFBFBD>ȵ<EFBFBD>functionע<6E><D7A2>
|
|||
|
void CHAR_CHAT_DEBUG_eventclean( int charaindex, char* message )
|
|||
|
{
|
|||
|
#ifdef _ADD_NEWEVENT // WON <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
int event_num = 8;
|
|||
|
#else
|
|||
|
int event_num = 6;
|
|||
|
#endif
|
|||
|
|
|||
|
int point;
|
|||
|
int shiftbit;
|
|||
|
int eventno=0;
|
|||
|
char token[1024];
|
|||
|
int array;
|
|||
|
int shift;
|
|||
|
char token_cdkey[256]="", token_name[256]="", cdkey[CDKEYLEN], token_flag[256]="";
|
|||
|
unsigned int max_user = 0;
|
|||
|
BOOL find = FALSE;
|
|||
|
BOOL ret1, ret2;
|
|||
|
int charaindex_tmp = 0;
|
|||
|
int i;
|
|||
|
|
|||
|
getStringFromIndexWithDelim( message, " ", 1, token_flag, sizeof( token));
|
|||
|
ret1 = getStringFromIndexWithDelim( message, " ", 2, token_cdkey, sizeof( token_cdkey));
|
|||
|
ret2 = getStringFromIndexWithDelim( message, " ", 3, token_name, sizeof( token_name));
|
|||
|
shiftbit = atoi(token_flag);
|
|||
|
eventno = atoi(token_flag);
|
|||
|
|
|||
|
if( shiftbit!=-1 && ret1==FALSE && ret2==FALSE ){
|
|||
|
charaindex_tmp = charaindex;
|
|||
|
find=TRUE;
|
|||
|
}else{
|
|||
|
if( shiftbit==-1 || strlen(token_cdkey)==0 || strlen(token_name)==0 ){
|
|||
|
sprintf( token, "%s", "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ<EFBFBD><EFBFBD>ʽ<EFBFBD><EFBFBD>[eventsetend <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ʺ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>]");
|
|||
|
CHAR_talkToCli( charaindex, -1, token, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
max_user = getFdnum();
|
|||
|
for( i=0; i<max_user; i++){
|
|||
|
char szName[256];
|
|||
|
int i_use;
|
|||
|
|
|||
|
i_use = CONNECT_getUse( i);
|
|||
|
if( i_use){
|
|||
|
CONNECT_getCdkey( i, cdkey, sizeof( cdkey));
|
|||
|
CONNECT_getCharname( i, szName, sizeof( szName));
|
|||
|
if( strcmp( cdkey, token_cdkey)==0 && strcmp( szName, token_name)==0){
|
|||
|
charaindex_tmp = CONNECT_getCharaindex( i);
|
|||
|
find=TRUE;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
if( strcmp(token_flag, "all")==0 && find ){
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT, 0);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT2, 0);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT3, 0);
|
|||
|
#ifdef _NEWEVENT
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT4, 0);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT5, 0);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT6, 0);
|
|||
|
#endif
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT, 0);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT2, 0);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT3, 0);
|
|||
|
#ifdef _NEWEVENT
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT4, 0);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT5, 0);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT6, 0);
|
|||
|
#endif
|
|||
|
#ifdef _ADD_NEWEVENT // WON <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT7, 0);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT7, 0);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT8, 0);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT8, 0);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT9, 0);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT9, 0);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT10, 0);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT10, 0);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT11, 0);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT11, 0);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT12, 0);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT12, 0);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT13, 0);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT13, 0);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT14, 0);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT14, 0);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT15, 0);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT15, 0);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT16, 0);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT16, 0);
|
|||
|
#endif
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȫ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>¼<EFBFBD><EFBFBD>졣" );
|
|||
|
CHAR_talkToCli( charaindex, -1,token, CHAR_COLORWHITE);
|
|||
|
return ;
|
|||
|
}
|
|||
|
|
|||
|
if(find){
|
|||
|
if(shiftbit<=255){
|
|||
|
array = shiftbit / 32;
|
|||
|
shift = shiftbit % 32;
|
|||
|
|
|||
|
if( array>=event_num ){
|
|||
|
sprintf( token, "<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> Χ(0~%d)<29><>",32*event_num-1);
|
|||
|
CHAR_talkToCli( charaindex, -1, token, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
point = CHAR_getInt( charaindex_tmp, CHAR_ENDEVENT+array);
|
|||
|
point = point & ~(1<<shift);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT+array, point);
|
|||
|
point = CHAR_getInt( charaindex_tmp, CHAR_NOWEVENT+array);
|
|||
|
point = point & ~(1<<shift);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT+array, point);
|
|||
|
}
|
|||
|
else if(shiftbit<=510){
|
|||
|
array = (shiftbit-255) / 32;
|
|||
|
shift = (shiftbit-255) % 32;
|
|||
|
|
|||
|
if( array>=event_num ){
|
|||
|
sprintf( token, "<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> Χ(0~%d)<29><>",32*event_num-1);
|
|||
|
CHAR_talkToCli( charaindex, -1, token, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
point = CHAR_getInt( charaindex_tmp, CHAR_ENDEVENT9+array);
|
|||
|
point = point & ~(1<<shift);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT9+array, point);
|
|||
|
point = CHAR_getInt( charaindex_tmp, CHAR_NOWEVENT9+array);
|
|||
|
point = point & ~(1<<shift);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT9+array, point);
|
|||
|
}
|
|||
|
sprintf( token, "Success!! Character Name:%s delete eventflag:[%d].", CHAR_getChar( charaindex_tmp, CHAR_NAME), eventno);
|
|||
|
CHAR_talkToCli( charaindex, -1, token, CHAR_COLORWHITE);
|
|||
|
// display
|
|||
|
if( charaindex_tmp==charaindex )
|
|||
|
sprintf( token, "%s", "");
|
|||
|
else
|
|||
|
sprintf( token, "%s %s", token_cdkey, token_name);
|
|||
|
//CHAR_CHAT_DEBUG_watchevent( charaindex, token );
|
|||
|
}else{
|
|||
|
sprintf( token,"%s\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>");
|
|||
|
CHAR_talkToCli(charaindex, -1, token, CHAR_COLORWHITE);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
// shan 2001/12/15 End
|
|||
|
|
|||
|
// shan 2001/12/18 Begin <20><>춸ı<ECB6B8><C4B1><EFBFBD><EFBFBD>࣬<EFBFBD>ʽ<EFBFBD>ԭ<EFBFBD>ȵ<EFBFBD>functionע<6E><D7A2>
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_eventsetnow( int charaindex, char* message )
|
|||
|
{
|
|||
|
#ifdef _ADD_NEWEVENT // WON <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
int event_num = 8;
|
|||
|
#else
|
|||
|
int event_num = 6;
|
|||
|
#endif
|
|||
|
|
|||
|
int point;
|
|||
|
int shiftbit;
|
|||
|
int eventno=0;
|
|||
|
char token[1024];
|
|||
|
int array;
|
|||
|
int shift;
|
|||
|
char token_cdkey[256]="", token_name[256]="", cdkey[CDKEYLEN];
|
|||
|
unsigned int max_user = 0;
|
|||
|
BOOL find = FALSE;
|
|||
|
BOOL ret1, ret2;
|
|||
|
int charaindex_tmp = 0;
|
|||
|
int i;
|
|||
|
|
|||
|
getStringFromIndexWithDelim( message, " ", 1, token, sizeof( token));
|
|||
|
ret1 = getStringFromIndexWithDelim( message, " ", 2, token_cdkey, sizeof( token_cdkey));
|
|||
|
ret2 = getStringFromIndexWithDelim( message, " ", 3, token_name, sizeof( token_name));
|
|||
|
shiftbit = atoi(token);
|
|||
|
eventno = atoi(token);
|
|||
|
|
|||
|
if( shiftbit!=-1 && ret1==FALSE && ret2==FALSE ){
|
|||
|
charaindex_tmp = charaindex;
|
|||
|
find=TRUE;
|
|||
|
}
|
|||
|
else{
|
|||
|
if( shiftbit==-1 || strlen(token_cdkey)==0 || strlen(token_name)==0 ){
|
|||
|
sprintf( token, "%s", "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ<EFBFBD><EFBFBD>ʽ<EFBFBD><EFBFBD>[eventsetend <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ʺ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>]");
|
|||
|
CHAR_talkToCli( charaindex, -1, token, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
max_user = getFdnum();
|
|||
|
for( i=0; i<max_user; i++){
|
|||
|
char szName[256];
|
|||
|
int i_use;
|
|||
|
|
|||
|
i_use = CONNECT_getUse( i);
|
|||
|
if( i_use){
|
|||
|
CONNECT_getCdkey( i, cdkey, sizeof( cdkey));
|
|||
|
CONNECT_getCharname( i, szName, sizeof( szName));
|
|||
|
if( strcmp( cdkey, token_cdkey)==0 && strcmp( szName, token_name)==0){
|
|||
|
charaindex_tmp = CONNECT_getCharaindex( i);
|
|||
|
find=TRUE;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
if( strcmp(token, "all")==0 && find ){
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT, -1);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT2, -1);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT3, -1);
|
|||
|
#ifdef _NEWEVENT
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT4, -1);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT5, -1);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT6, -1);
|
|||
|
#endif
|
|||
|
#ifdef _ADD_NEWEVENT // WON <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT7, -1);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT8, -1);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT9, -1);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT10, -1);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT11, -1);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT12, -1);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT13, -1);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT14, -1);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT15, -1);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT16, -1);
|
|||
|
#endif
|
|||
|
sprintf( token, "Success, set all nowflag.." );
|
|||
|
CHAR_talkToCli( charaindex, -1,token, CHAR_COLORWHITE);
|
|||
|
return ;
|
|||
|
}
|
|||
|
|
|||
|
if(find){
|
|||
|
if(shiftbit<=255){
|
|||
|
array = shiftbit / 32;
|
|||
|
shift = shiftbit % 32;
|
|||
|
|
|||
|
if( array>=event_num ){
|
|||
|
sprintf( token, "<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>Χ(0~%d)<29><>",32*event_num-1);
|
|||
|
CHAR_talkToCli( charaindex, -1, token, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
point = CHAR_getInt( charaindex_tmp, CHAR_NOWEVENT+array);
|
|||
|
point = point | (1<<shift);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT+array, point);
|
|||
|
}
|
|||
|
else if(shiftbit<=510){
|
|||
|
array = (shiftbit-255) / 32;
|
|||
|
shift = (shiftbit-255) % 32;
|
|||
|
|
|||
|
if( array>=event_num ){
|
|||
|
sprintf( token, "<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>Χ(0~%d)<29><>",32*event_num-1);
|
|||
|
CHAR_talkToCli( charaindex, -1, token, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
point = CHAR_getInt( charaindex_tmp, CHAR_NOWEVENT9+array);
|
|||
|
point = point | (1<<shift);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_NOWEVENT9+array, point);
|
|||
|
}
|
|||
|
sprintf( token, "Success!! Character Name:%s eventnow_number:[%d].", CHAR_getChar( charaindex_tmp, CHAR_NAME), eventno);
|
|||
|
CHAR_talkToCli( charaindex, -1, token, CHAR_COLORWHITE);
|
|||
|
// display
|
|||
|
if( charaindex_tmp==charaindex )
|
|||
|
sprintf( token, "%s", "");
|
|||
|
else
|
|||
|
sprintf( token, "%s %s", token_cdkey, token_name);
|
|||
|
CHAR_CHAT_DEBUG_watchevent( charaindex, token );
|
|||
|
}else{
|
|||
|
sprintf( token,"%s\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>");
|
|||
|
CHAR_talkToCli(charaindex, -1, token, CHAR_COLORWHITE);
|
|||
|
}
|
|||
|
}
|
|||
|
/*void CHAR_CHAT_DEBUG_eventsetnow( int charaindex, char* message )
|
|||
|
{
|
|||
|
int point;
|
|||
|
int shiftbit;
|
|||
|
int eventno=0;
|
|||
|
char token[256];
|
|||
|
int array;
|
|||
|
int shift;
|
|||
|
|
|||
|
shiftbit=atoi(message);
|
|||
|
eventno=atoi(message);
|
|||
|
|
|||
|
// -1<><31><EFBFBD>º<D7B7><C2BA><EFBFBD><EFBFBD><EFBFBD><EFBFBD>绥ئ<E7BBA5><D8A6><EFBFBD><EFBFBD>ì<EFBFBD><C3AC><EFBFBD><EFBFBD>
|
|||
|
if(shiftbit==-1) return;
|
|||
|
|
|||
|
array = shiftbit / 32;
|
|||
|
shift = shiftbit % 32;
|
|||
|
|
|||
|
point = CHAR_getInt(charaindex,CHAR_NOWEVENT+array);
|
|||
|
point = point | (1 << shift);
|
|||
|
CHAR_setInt(charaindex,CHAR_NOWEVENT+array,point);
|
|||
|
|
|||
|
sprintf( token, "<EFBFBD>趨<EFBFBD>¼<EFBFBD><EFBFBD><EFBFBD>%d<><64><EFBFBD>졣",eventno);
|
|||
|
CHAR_talkToCli( charaindex, -1,token, CHAR_COLORWHITE);
|
|||
|
}*/
|
|||
|
// shan 2001/12/18 End
|
|||
|
|
|||
|
// shan 2001/12/15 Begin <20><>춸ı<ECB6B8><C4B1><EFBFBD><EFBFBD>࣬<EFBFBD>ʽ<EFBFBD>ԭ<EFBFBD>ȵ<EFBFBD>functionע<6E><D7A2>
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_eventsetend( int charaindex, char* message )
|
|||
|
{
|
|||
|
#ifdef _ADD_NEWEVENT // WON <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
int event_num = 8;
|
|||
|
#else
|
|||
|
int event_num = 6;
|
|||
|
#endif
|
|||
|
int point;
|
|||
|
int shiftbit;
|
|||
|
int eventno = 0;
|
|||
|
char token[1024];
|
|||
|
int array;
|
|||
|
int shift;
|
|||
|
char token_cdkey[256]="", token_name[256]="", cdkey[CDKEYLEN];
|
|||
|
unsigned int max_user = 0;
|
|||
|
BOOL find = FALSE;
|
|||
|
BOOL ret1, ret2;
|
|||
|
int charaindex_tmp = 0;
|
|||
|
int i;
|
|||
|
|
|||
|
getStringFromIndexWithDelim( message, " ", 1, token, sizeof( token));
|
|||
|
ret1 = getStringFromIndexWithDelim( message, " ", 2, token_cdkey, sizeof( token_cdkey));
|
|||
|
ret2 = getStringFromIndexWithDelim( message, " ", 3, token_name, sizeof( token_name));
|
|||
|
shiftbit = atoi(token);
|
|||
|
eventno = atoi(token);
|
|||
|
|
|||
|
if( shiftbit!=-1 && ret1==FALSE && ret2==FALSE ){
|
|||
|
charaindex_tmp = charaindex;
|
|||
|
find=TRUE;
|
|||
|
}
|
|||
|
else{
|
|||
|
if( shiftbit==-1 || strlen(token_cdkey)==0 || strlen(token_name)==0 ){
|
|||
|
sprintf( token, "%s", "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ<EFBFBD><EFBFBD>ʽ<EFBFBD><EFBFBD>[eventsetend <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ʺ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>]");
|
|||
|
CHAR_talkToCli( charaindex, -1, token, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
max_user = getFdnum();
|
|||
|
for( i=0; i<max_user; i++){
|
|||
|
char szName[256];
|
|||
|
int i_use;
|
|||
|
|
|||
|
i_use = CONNECT_getUse( i);
|
|||
|
if( i_use){
|
|||
|
CONNECT_getCdkey( i, cdkey, sizeof( cdkey));
|
|||
|
CONNECT_getCharname( i, szName, sizeof( szName));
|
|||
|
if( strcmp( cdkey, token_cdkey)==0 && strcmp( szName, token_name)==0){
|
|||
|
charaindex_tmp = CONNECT_getCharaindex( i);
|
|||
|
find=TRUE;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
if( strcmp(token, "all")==0 && find ){
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT, -1);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT2, -1);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT3, -1);
|
|||
|
#ifdef _NEWEVENT
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT4, -1);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT5, -1);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT6, -1);
|
|||
|
#endif
|
|||
|
#ifdef _ADD_NEWEVENT // WON <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT7, -1);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT8, -1);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT9, -1);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT10, -1);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT11, -1);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT12, -1);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT13, -1);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT14, -1);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT15, -1);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT16, -1);
|
|||
|
#endif
|
|||
|
sprintf( token, "Success, set all endflag.." );
|
|||
|
CHAR_talkToCli( charaindex, -1,token, CHAR_COLORWHITE);
|
|||
|
return ;
|
|||
|
}
|
|||
|
|
|||
|
if(find){
|
|||
|
if(shiftbit<=255){
|
|||
|
array = shiftbit / 32;
|
|||
|
shift = shiftbit % 32;
|
|||
|
|
|||
|
if( array>=event_num ){
|
|||
|
sprintf( token, "<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> Χ(0~%d)<29><>",32*event_num-1);
|
|||
|
CHAR_talkToCli( charaindex, -1, token, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
point = CHAR_getInt( charaindex_tmp, CHAR_ENDEVENT+array);
|
|||
|
point = point | (1<<shift);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT+array, point);
|
|||
|
}
|
|||
|
else if(shiftbit<=510){
|
|||
|
array = (shiftbit-255) / 32;
|
|||
|
shift = (shiftbit-255) % 32;
|
|||
|
|
|||
|
if( array>=event_num ){
|
|||
|
sprintf( token, "<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> Χ(0~%d)<29><>",32*event_num-1);
|
|||
|
CHAR_talkToCli( charaindex, -1, token, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
point = CHAR_getInt( charaindex_tmp, CHAR_ENDEVENT9+array);
|
|||
|
point = point | (1<<shift);
|
|||
|
CHAR_setInt( charaindex_tmp, CHAR_ENDEVENT9+array, point);
|
|||
|
}
|
|||
|
sprintf( token, "Success!! Character Name:%s eventend_number:[%d].", CHAR_getChar( charaindex_tmp, CHAR_NAME), eventno);
|
|||
|
CHAR_talkToCli( charaindex, -1, token, CHAR_COLORYELLOW);
|
|||
|
// display
|
|||
|
if( charaindex_tmp==charaindex )
|
|||
|
sprintf( token, "%s", "");
|
|||
|
else
|
|||
|
sprintf( token, "%s %s", token_cdkey, token_name);
|
|||
|
CHAR_CHAT_DEBUG_watchevent( charaindex, token );
|
|||
|
}else{
|
|||
|
sprintf( token,"%s\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>");
|
|||
|
CHAR_talkToCli(charaindex, -1, token, CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_debug( int charaindex, char* message )
|
|||
|
{
|
|||
|
char msgbuf[256];
|
|||
|
BOOL flg = isstring1or0( message);
|
|||
|
if( flg == TRUE ){
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKFLG,
|
|||
|
CHAR_getWorkInt( charaindex, CHAR_WORKFLG ) | WORKFLG_DEBUGMODE );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKDEBUGMODE, TRUE);
|
|||
|
}else{
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKFLG,
|
|||
|
CHAR_getWorkInt( charaindex, CHAR_WORKFLG ) & ~WORKFLG_DEBUGMODE );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKDEBUGMODE, FALSE);
|
|||
|
}
|
|||
|
CHAR_send_P_StatusString( charaindex, CHAR_P_STRING_DEBUGMODE);
|
|||
|
snprintf( msgbuf, sizeof( msgbuf), "<EFBFBD><EFBFBD><EFBFBD>趨<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ģʽΪ%s<><73>",
|
|||
|
( flg == TRUE) ? "ON" : "OFF");
|
|||
|
|
|||
|
CHAR_talkToCli( charaindex, -1, msgbuf, CHAR_COLORYELLOW);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_dp( int charindex , char *message )
|
|||
|
{
|
|||
|
int i;
|
|||
|
char dp[15];
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
char token[128];
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
easyGetTokenFromString( message , 1 , dp, sizeof(dp));
|
|||
|
easyGetTokenFromString( message , 2 , cdkey, sizeof(cdkey));
|
|||
|
if(strlen(cdkey)>0){
|
|||
|
for(i=0;i<playernum;i++){
|
|||
|
if(CHAR_CHECKINDEX(i) == FALSE) continue;
|
|||
|
if(!strcmp( CHAR_getChar( i, CHAR_CDKEY), cdkey))
|
|||
|
{
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if (i>=playernum)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD><EFBFBD>˺Ų<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~", CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
CHAR_setInt( i , CHAR_DUELPOINT, atoi( dp ) );
|
|||
|
CHAR_send_P_StatusString( i ,CHAR_P_STRING_DUELPOINT );
|
|||
|
sprintf( token, "[GM]%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD>DP<44><50><EFBFBD><EFBFBD>Ϊ%d!", CHAR_getChar( charindex, CHAR_NAME),(int)atoi(dp));
|
|||
|
CHAR_talkToCli( i, -1, token, CHAR_COLORYELLOW );
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73>DP<44><50><EFBFBD><EFBFBD>Ϊ%d!", CHAR_getChar( i, CHAR_NAME),(int)atoi(dp));
|
|||
|
CHAR_talkToCli( charindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}else{
|
|||
|
CHAR_setInt( charindex , CHAR_DUELPOINT, atoi( dp ) );
|
|||
|
CHAR_send_P_StatusString( charindex ,CHAR_P_STRING_DUELPOINT );
|
|||
|
sprintf( token, "DP<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!",(int)atoi(dp));
|
|||
|
CHAR_talkToCli( charindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
#ifdef _EQUIT_ARRANGE
|
|||
|
void CHAR_CHAT_DEBUG_arrange( int charindex , char *message )
|
|||
|
{
|
|||
|
CHAR_setWorkInt( charindex, CHAR_WORKFIXARRANGE, atoi( message) );
|
|||
|
CHAR_complianceParameter( charindex );
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD>趨<EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
|
|||
|
#ifdef _EQUIT_SEQUENCE
|
|||
|
void CHAR_CHAT_DEBUG_sequence( int charindex , char *message )
|
|||
|
{
|
|||
|
CHAR_setWorkInt( charindex, CHAR_WORKFIXSEQUENCE, atoi( message) );
|
|||
|
CHAR_complianceParameter( charindex );
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD>趨˳<EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#define ITEMRESERVESTRING "item"
|
|||
|
#define POOLITEMRESERVESTRING "poolitem"
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_setmerge_main( int charaindex, char* message, int mode )
|
|||
|
{
|
|||
|
int haveitemindex = atoi( message);
|
|||
|
int itemindex;
|
|||
|
|
|||
|
if( !CHAR_CHECKITEMINDEX( charaindex, haveitemindex) ){
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>֡<EFBFBD>", CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
itemindex = CHAR_getItemIndex( charaindex, haveitemindex);
|
|||
|
if( !ITEM_CHECKINDEX( itemindex)) {
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD>ô<EFBFBD><EFBFBD>Ƿ<EFBFBD>û<EFBFBD><EFBFBD><EFBFBD>κε<EFBFBD><EFBFBD><EFBFBD>,<2C>鱨<EFBFBD><E9B1A8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>֡<EFBFBD>", CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
ITEM_setInt( itemindex, ITEM_MERGEFLG, mode);
|
|||
|
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>º뼰<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ë<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ף<EFBFBD>", CHAR_COLORWHITE);
|
|||
|
|
|||
|
CHAR_sendItemDataOne( charaindex, haveitemindex);
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_effect( int charaindex, char* message )
|
|||
|
{
|
|||
|
int floorid=-1, effectid=-1, level=0;
|
|||
|
char buf[ 256];
|
|||
|
int i;
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
BOOL flg = FALSE;
|
|||
|
|
|||
|
getStringFromIndexWithDelim( message, " ", 1, buf, sizeof( buf));
|
|||
|
if( strcmp( buf, "alloff" ) == 0 ) {
|
|||
|
flg = TRUE;
|
|||
|
}else {
|
|||
|
floorid = atoi( buf);
|
|||
|
if( !getStringFromIndexWithDelim( message, " ", 2, buf, sizeof( buf))) {
|
|||
|
return;
|
|||
|
}
|
|||
|
effectid = atoi( buf);
|
|||
|
if( !getStringFromIndexWithDelim( message, " ", 3, buf, sizeof( buf))) {
|
|||
|
return;
|
|||
|
}
|
|||
|
level = atoi( buf);
|
|||
|
}
|
|||
|
for( i = 0 ; i < playernum; i ++) {
|
|||
|
if( CHAR_CHECKINDEX( i)) {
|
|||
|
if( CHAR_getInt( i, CHAR_WHICHTYPE) == CHAR_TYPEPLAYER){
|
|||
|
if( flg) {
|
|||
|
int ef = CHAR_getWorkInt( i, CHAR_WORKEFFECT);
|
|||
|
if( ef != 0 ) {
|
|||
|
int fd = getfdFromCharaIndex( i);
|
|||
|
lssproto_EF_send( fd, 0, 0, "");
|
|||
|
CHAR_setWorkInt( i, CHAR_WORKEFFECT, 0);
|
|||
|
}
|
|||
|
}
|
|||
|
else if( CHAR_getInt( i, CHAR_FLOOR) == floorid ) {
|
|||
|
int fd = getfdFromCharaIndex( i);
|
|||
|
lssproto_EF_send( fd, effectid, level, "");
|
|||
|
if( level == 0 ) {
|
|||
|
CHAR_setWorkInt( i, CHAR_WORKEFFECT,
|
|||
|
CHAR_getWorkInt( i, CHAR_WORKEFFECT) &
|
|||
|
~effectid);
|
|||
|
}
|
|||
|
else {
|
|||
|
CHAR_setWorkInt( i, CHAR_WORKEFFECT,
|
|||
|
CHAR_getWorkInt( i, CHAR_WORKEFFECT) |
|
|||
|
effectid);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_setTrans( int charaindex, char *message)
|
|||
|
{
|
|||
|
int i;
|
|||
|
char setTrans[15];
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
char token[128];
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
easyGetTokenFromString( message , 1 , setTrans, sizeof(setTrans));
|
|||
|
easyGetTokenFromString( message , 2 , cdkey, sizeof(cdkey));
|
|||
|
if(strlen(cdkey)>0){
|
|||
|
for(i=0;i<playernum;i++){
|
|||
|
if(CHAR_CHECKINDEX(i) == FALSE) continue;
|
|||
|
if(!strcmp( CHAR_getChar( i, CHAR_CDKEY), cdkey))
|
|||
|
{
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if (i>=playernum)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD>˺Ų<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~", CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
CHAR_setInt(i, CHAR_TRANSEQUATION, 0);
|
|||
|
CHAR_setInt(i, CHAR_TRANSMIGRATION, atoi( setTrans ));
|
|||
|
CHAR_sendCToArroundCharacter( CHAR_getWorkInt( i, CHAR_WORKOBJINDEX ));
|
|||
|
sprintf( token, "[GM]%s<><73><EFBFBD><EFBFBD>ת<EFBFBD><D7AA><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%dת!", CHAR_getChar( charaindex, CHAR_NAME),(int)atoi(setTrans));
|
|||
|
CHAR_talkToCli( i, -1, token, CHAR_COLORYELLOW );
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>%sת<73><D7AA><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%dת!", CHAR_getChar( i, CHAR_NAME),(int)atoi(setTrans));
|
|||
|
CHAR_talkToCli( charaindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}else{
|
|||
|
CHAR_setInt(charaindex, CHAR_TRANSEQUATION, 0);
|
|||
|
CHAR_setInt(charaindex, CHAR_TRANSMIGRATION, atoi( setTrans ));
|
|||
|
CHAR_sendCToArroundCharacter( CHAR_getWorkInt( charaindex, CHAR_WORKOBJINDEX ));
|
|||
|
sprintf( token, "ת<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%dת!",(int)atoi(setTrans));
|
|||
|
CHAR_talkToCli( charaindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_shutup(int charindex ,char *message)
|
|||
|
{
|
|||
|
char token[100];
|
|||
|
char token1[100];
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
char buf[256];
|
|||
|
char line[256];
|
|||
|
unsigned int MAX_USER=0,i;
|
|||
|
BOOL flg;
|
|||
|
easyGetTokenFromString( message , 1 , token, sizeof(token));
|
|||
|
easyGetTokenFromString( message , 2 , token1, sizeof(token1));
|
|||
|
if( strlen(message)==0){
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ");
|
|||
|
CHAR_talkToCli( charindex, -1,buf, CHAR_COLORYELLOW);
|
|||
|
return;
|
|||
|
}
|
|||
|
if( strlen(token1)==0){
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ--> ON OFF");
|
|||
|
CHAR_talkToCli( charindex, -1,buf, CHAR_COLORYELLOW);
|
|||
|
return;
|
|||
|
}
|
|||
|
flg = isstring1or0( token1);
|
|||
|
MAX_USER=getFdnum();
|
|||
|
for(i=0;i<MAX_USER;i++){
|
|||
|
int i_use;
|
|||
|
i_use=CONNECT_getUse(i);
|
|||
|
if(i_use){
|
|||
|
CONNECT_getCdkey( i, cdkey, sizeof( cdkey ));
|
|||
|
if(strcmp(token,cdkey)==0){
|
|||
|
int index = CONNECT_getCharaindex( i );
|
|||
|
if(flg){
|
|||
|
CONNECT_set_shutup(i,TRUE);
|
|||
|
//print("\n<Set TRUE");
|
|||
|
snprintf( line, sizeof( line),
|
|||
|
"<EFBFBD><EFBFBD> name:%s account=%s<><73><EFBFBD><EFBFBD>",
|
|||
|
CHAR_getChar( index, CHAR_NAME),
|
|||
|
cdkey);
|
|||
|
CHAR_talkToCli( charindex, -1,line, CHAR_COLORYELLOW);
|
|||
|
}else{
|
|||
|
CONNECT_set_shutup(i,FALSE);
|
|||
|
//print("\n<Set FALSE");
|
|||
|
snprintf( line, sizeof( line),
|
|||
|
"<EFBFBD><EFBFBD> name:%s account=%s<><73><EFBFBD><EFBFBD>",
|
|||
|
CHAR_getChar( index, CHAR_NAME),
|
|||
|
cdkey);
|
|||
|
CHAR_talkToCli( charindex, -1,line, CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
}
|
|||
|
}//if use
|
|||
|
}//for
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_getuser(int charindex ,char *message) //ttom 14/11/2000
|
|||
|
{ // ..NAME|FLOOR|
|
|||
|
char buf1[256], name[256], token[256];
|
|||
|
int i, k, MyFloor=-1, colors = CHAR_COLORWHITE;
|
|||
|
int user[50];
|
|||
|
int MAXCHARA=0;
|
|||
|
BOOL FINDNPC = FALSE;
|
|||
|
BOOL MOREs = FALSE;
|
|||
|
|
|||
|
memset( name, 0, sizeof( name) );
|
|||
|
MAXCHARA = CHAR_getPlayerMaxNum();
|
|||
|
if( getStringFromIndexWithDelim( message, " ", 1, name, sizeof( name)) == FALSE ) return;
|
|||
|
if( getStringFromIndexWithDelim( message, " ", 2, buf1, sizeof( buf1)) != FALSE ){
|
|||
|
MyFloor = atoi( buf1);
|
|||
|
}
|
|||
|
if( getStringFromIndexWithDelim( message, " ", 3, buf1, sizeof( buf1)) != FALSE ){
|
|||
|
if( strstr( buf1, "npc") != NULL ){
|
|||
|
FINDNPC = TRUE;
|
|||
|
MAXCHARA = CHAR_getCharNum();
|
|||
|
}
|
|||
|
}
|
|||
|
k = 0;
|
|||
|
for( i=0; i<MAXCHARA && k<50; i++ ){
|
|||
|
if( !CHAR_CHECKINDEX( i) ) continue;
|
|||
|
if( FINDNPC == TRUE ){
|
|||
|
if( CHAR_getInt( i, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYER ||
|
|||
|
CHAR_getInt( i, CHAR_WHICHTYPE ) == CHAR_TYPEPET ) continue;
|
|||
|
}
|
|||
|
if( MyFloor != -1 && MyFloor != CHAR_getInt( i, CHAR_FLOOR) ) continue;
|
|||
|
|
|||
|
if( strstr( CHAR_getChar( i, CHAR_OWNTITLE), name) != NULL ||
|
|||
|
strstr( CHAR_getChar( i, CHAR_NAME), name) != NULL ){
|
|||
|
user[k++] = i;
|
|||
|
if( k >= 10 )MOREs = TRUE;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
memset( token, 0, sizeof(token));
|
|||
|
strcpy( token, "MORE:");
|
|||
|
for( i=0; i<k; i++){//CHAR_COLORYELLOW
|
|||
|
int userindex = user[i];
|
|||
|
if( !CHAR_CHECKINDEX( userindex)) continue;
|
|||
|
if( !strcmp( CHAR_getUseName( userindex), name ) ||
|
|||
|
!strcmp( CHAR_getChar( userindex, CHAR_NAME), name ) ){
|
|||
|
colors = CHAR_COLORRED;
|
|||
|
}else if( strstr( CHAR_getChar( userindex, CHAR_OWNTITLE), name) != NULL ||
|
|||
|
strstr( CHAR_getChar( userindex, CHAR_NAME), name) != NULL ){
|
|||
|
if( MOREs == FALSE ){
|
|||
|
colors = CHAR_COLORWHITE;
|
|||
|
}else{
|
|||
|
char temp[256];
|
|||
|
sprintf( temp, "[%s]", CHAR_getChar( userindex, CHAR_NAME));
|
|||
|
if( (strlen(token)+strlen(temp)) >= sizeof(token) ){
|
|||
|
CHAR_talkToCli( charindex, -1 , token , CHAR_COLORWHITE);
|
|||
|
memset( token, 0, sizeof(token));
|
|||
|
strcpy( token, "MORE:");
|
|||
|
}
|
|||
|
strcat( token, temp);
|
|||
|
continue;
|
|||
|
}
|
|||
|
}
|
|||
|
sprintf( buf1, "NAME:%s UName:%s CDKey:%s Point:[%d,%d,%d]",
|
|||
|
CHAR_getChar( userindex, CHAR_NAME), CHAR_getUseName( userindex),
|
|||
|
CHAR_getChar( userindex, CHAR_CDKEY),
|
|||
|
CHAR_getInt( userindex, CHAR_FLOOR), CHAR_getInt( userindex, CHAR_X),
|
|||
|
CHAR_getInt( userindex, CHAR_Y) );
|
|||
|
CHAR_talkToCli( charindex, -1 , buf1 , colors);
|
|||
|
}
|
|||
|
if( MOREs == TRUE ){
|
|||
|
CHAR_talkToCli( charindex, -1 , token , CHAR_COLORWHITE);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_waeikick( int charindex, char* message )
|
|||
|
{
|
|||
|
char token[256];
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
char kcmsg[256],kctalk[256];
|
|||
|
char szName[CHARNAMELEN];
|
|||
|
char buf[256];
|
|||
|
BOOL find=FALSE;
|
|||
|
int i=0;
|
|||
|
unsigned int MAX_USER=0;
|
|||
|
int fd_charaindex;
|
|||
|
if( strlen(message)==0){
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ-> <20>ʺ<EFBFBD>");
|
|||
|
CHAR_talkToCli( charindex, -1,buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
easyGetTokenFromString( message , 1 , token, sizeof(token));
|
|||
|
if( strlen(token)==0){
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ");
|
|||
|
CHAR_talkToCli( charindex, -1,buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
MAX_USER=getPlayercharnum();
|
|||
|
for(i=0;i<MAX_USER;i++){
|
|||
|
//int i_use;
|
|||
|
if( CHAR_getCharUse( i ) == FALSE )continue;
|
|||
|
if(strcmp(CHAR_getChar(i,CHAR_CDKEY),token)==0){
|
|||
|
#ifdef _OFFLINE_SYSTEM
|
|||
|
if(CHAR_getWorkInt( i, CHAR_WORK_OFFLINE )!=0){
|
|||
|
CHAR_logout(i,TRUE);
|
|||
|
}else
|
|||
|
#endif
|
|||
|
{
|
|||
|
sprintf(kcmsg,"%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>",szName);
|
|||
|
CHAR_talkToCli(i, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>¶<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ߡ<EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
CONNECT_setCloseRequest( getfdFromCharaIndex(i) , 1 );
|
|||
|
//print( "\nWAEIKICK cdkey=%s", cdkey);
|
|||
|
}
|
|||
|
find=TRUE;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_waeikickall( int charindex, char* message )
|
|||
|
{
|
|||
|
int i=0;
|
|||
|
unsigned int MAX_USER=0;
|
|||
|
char buf[256];
|
|||
|
char token[256];
|
|||
|
int tlv=0;
|
|||
|
if( strlen(message)==0){
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ-> <20>ȼ<EFBFBD>");
|
|||
|
CHAR_talkToCli( charindex, -1,buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
easyGetTokenFromString( message , 1 , token, sizeof(token));
|
|||
|
if( strlen(token)==0){
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ");
|
|||
|
CHAR_talkToCli( charindex, -1,buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
tlv = atoi(token);
|
|||
|
MAX_USER=getPlayercharnum();
|
|||
|
for(i=0;i<MAX_USER;i++){
|
|||
|
if( CHAR_getCharUse( i ) == FALSE )continue;
|
|||
|
if(CHAR_getInt(i,CHAR_LV)>tlv)continue;
|
|||
|
#ifdef _OFFLINE_SYSTEM
|
|||
|
if(CHAR_getWorkInt( i, CHAR_WORK_OFFLINE )!=0){
|
|||
|
CHAR_logout(i,TRUE);
|
|||
|
}else
|
|||
|
#endif
|
|||
|
CONNECT_setCloseRequest( getfdFromCharaIndex(i) , 1 );
|
|||
|
}//for i
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_jail( int charindex, char* message )
|
|||
|
{
|
|||
|
char token[100];
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
char kcmsg[256],kctalk[256];
|
|||
|
char szName[256];
|
|||
|
char buf[256];
|
|||
|
BOOL find=FALSE;
|
|||
|
int i=0;
|
|||
|
unsigned int MAX_USER=0;
|
|||
|
int fd_charaindex;
|
|||
|
Char *chwk;
|
|||
|
|
|||
|
if( strlen(message)==0){
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ-> <20>ʺ<EFBFBD>");
|
|||
|
CHAR_talkToCli( charindex, -1,buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
easyGetTokenFromString( message , 1 , token, sizeof(token));
|
|||
|
if( strlen(token)==0){
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ");
|
|||
|
CHAR_talkToCli( charindex, -1,buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
MAX_USER=CHAR_getPlayerMaxNum();
|
|||
|
for(i=0;i<MAX_USER;i++){
|
|||
|
//int i_use;
|
|||
|
//i_use=CONNECT_getUse(i);
|
|||
|
if(CHAR_CHECKINDEX(i)){
|
|||
|
//CONNECT_getCdkey( i, cdkey, sizeof( cdkey ));
|
|||
|
strcpy(cdkey,CHAR_getChar(i,CHAR_CDKEY));
|
|||
|
if(strcmp(cdkey,token)==0){
|
|||
|
fd_charaindex = i;
|
|||
|
strcpy(szName,CHAR_getChar(i,CHAR_NAME));
|
|||
|
//CONNECT_getCharname( i, szName, sizeof( szName ) );
|
|||
|
sprintf(kcmsg,"%sץ<73><D7A5><EFBFBD>ؽѡ<D8BD>",szName);
|
|||
|
CHAR_talkToCli(fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̫<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
CHAR_setInt(fd_charaindex,CHAR_FLOOR,117);
|
|||
|
CHAR_setInt(fd_charaindex,CHAR_X,225);
|
|||
|
CHAR_setInt(fd_charaindex,CHAR_Y,13);
|
|||
|
CHAR_warpToSpecificPoint(fd_charaindex,117,225,13);
|
|||
|
chwk = CHAR_getCharPointer( fd_charaindex);
|
|||
|
|
|||
|
// CoolFish: +1 2001/11/05
|
|||
|
if (!chwk) continue;
|
|||
|
#ifdef _CHAR_POOLITEM
|
|||
|
if( CHAR_SaveDepotItem( fd_charaindex) == FALSE ){
|
|||
|
print("saveDepotItem:%d\n", fd_charaindex);
|
|||
|
}
|
|||
|
#endif
|
|||
|
#ifdef _CHAR_POOLPET
|
|||
|
if( CHAR_SaveDepotPet( fd_charaindex) == FALSE ){
|
|||
|
print("saveDepotPet:%d\n", fd_charaindex);
|
|||
|
}
|
|||
|
#endif
|
|||
|
//CHAR_charSaveFromConnectAndChar( i, chwk ,FALSE );
|
|||
|
print( "\nWAEI JAIL cdkey=%s", cdkey);
|
|||
|
find=TRUE;
|
|||
|
}
|
|||
|
}
|
|||
|
}//for i
|
|||
|
if(find){
|
|||
|
#ifdef _GM_KING
|
|||
|
sprintf(kctalk,"%s<><73>ħ<EFBFBD><C4A7>ʩչ<CAA9><D5B9><EFBFBD><EFBFBD>ץ<EFBFBD><D7A5><EFBFBD>֡<EFBFBD>ץץץץץץ<D7A5><D7A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѡ<EFBFBD>",CHAR_getChar(charindex,CHAR_NAME));
|
|||
|
#else
|
|||
|
sprintf(kctalk,"<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>");
|
|||
|
#endif
|
|||
|
// for(i=0;i<MAX_USER;i++){
|
|||
|
// int i_use;
|
|||
|
// i_use=CONNECT_getUse(i);
|
|||
|
// if(i_use){
|
|||
|
// fd_charaindex = CONNECT_getCharaindex( i );
|
|||
|
// CHAR_talkToCli( fd_charaindex, -1 , kctalk , CHAR_COLORWHITE);
|
|||
|
// CHAR_talkToCli( fd_charaindex, -1 , kcmsg , CHAR_COLORWHITE);
|
|||
|
// }
|
|||
|
// }//for i
|
|||
|
CHAR_talkToCli( charindex, -1 , kcmsg , CHAR_COLORWHITE);
|
|||
|
}//if find
|
|||
|
}
|
|||
|
void CHAR_CHAT_DEBUG_shutupall(int charindex ,char *message)
|
|||
|
{
|
|||
|
int fl,x,y,i,j,fd;
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
char line[256];
|
|||
|
OBJECT object;
|
|||
|
fl=CHAR_getInt( charindex, CHAR_FLOOR );
|
|||
|
x=CHAR_getInt( charindex, CHAR_X );
|
|||
|
y=CHAR_getInt( charindex, CHAR_Y );
|
|||
|
for(i=y-2;i<=y+2;i++){
|
|||
|
for(j=x-2;j<=x+2;j++){
|
|||
|
for( object = MAP_getTopObj(fl,j,i) ; object ;object = NEXT_OBJECT(object ) ){
|
|||
|
int o = GET_OBJINDEX(object);
|
|||
|
if( OBJECT_getType(o) == OBJTYPE_CHARA ){
|
|||
|
int chara_index=OBJECT_getIndex(o);
|
|||
|
if( CHAR_getInt( chara_index, CHAR_WHICHTYPE) != CHAR_TYPEPLAYER ) continue;
|
|||
|
if( (i==y)&&(j==x)) continue;
|
|||
|
if( ( fd = getfdFromCharaIndex(chara_index) ) != -1 ){
|
|||
|
CONNECT_set_shutup(fd,TRUE);
|
|||
|
CONNECT_getCdkey( fd, cdkey, sizeof( cdkey ));
|
|||
|
snprintf( line, sizeof( line),
|
|||
|
"<EFBFBD><EFBFBD> name:%s account=%s<><73><EFBFBD><EFBFBD>",
|
|||
|
CHAR_getChar( chara_index, CHAR_NAME),
|
|||
|
cdkey);
|
|||
|
CHAR_talkToCli( charindex, -1,line, CHAR_COLORWHITE);
|
|||
|
CHAR_talkToCli(chara_index,-1,"<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ħ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORWHITE);
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}//for object
|
|||
|
}//for j
|
|||
|
}//for i
|
|||
|
}
|
|||
|
void CHAR_CHAT_DEBUG_send(int charindex ,char *message)
|
|||
|
{
|
|||
|
char buf[256];
|
|||
|
char token[100];
|
|||
|
char szName[256];
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
char line[256];
|
|||
|
int fl,x,y,i;
|
|||
|
unsigned int MAX_USER=0;
|
|||
|
MAX_USER=getFdnum();
|
|||
|
if( strlen(message)==0){
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ-> FLOOR X Y <20>ʺ<EFBFBD>");
|
|||
|
CHAR_talkToCli( charindex, -1,buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
easyGetTokenFromString( message , 1 , token, sizeof(token));
|
|||
|
if( strlen(token)==0){
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ--><3E><>ͼ<EFBFBD><CDBC><EFBFBD><EFBFBD>");
|
|||
|
CHAR_talkToCli( charindex, -1,buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
fl=atoi( token );
|
|||
|
easyGetTokenFromString( message , 2 , token, sizeof(token));
|
|||
|
if( strlen(token)==0){
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ-->X<><58><EFBFBD><EFBFBD> ");
|
|||
|
CHAR_talkToCli( charindex, -1,buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
x = atoi( token );
|
|||
|
easyGetTokenFromString( message , 3 , token, sizeof(token));
|
|||
|
if( strlen(token)==0){
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ-->Y<><59><EFBFBD><EFBFBD> ");
|
|||
|
CHAR_talkToCli( charindex, -1,buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
y = atoi( token );
|
|||
|
easyGetTokenFromString( message , 4 , token, sizeof(token));
|
|||
|
if( strlen(token)==0){
|
|||
|
CHAR_warpToSpecificPoint(charindex, fl, x, y);
|
|||
|
return;
|
|||
|
}
|
|||
|
for(i=0;i<MAX_USER;i++){
|
|||
|
int i_use,fd_charaindex;
|
|||
|
i_use=CONNECT_getUse(i);
|
|||
|
if(i_use){
|
|||
|
CONNECT_getCharname( i, szName, sizeof( szName ) );
|
|||
|
CONNECT_getCdkey( i, cdkey, sizeof( cdkey ));
|
|||
|
if(strcmp(token,cdkey)==0){
|
|||
|
fd_charaindex = CONNECT_getCharaindex( i );
|
|||
|
CHAR_warpToSpecificPoint(fd_charaindex, fl, x, y);
|
|||
|
snprintf( line, sizeof( line),
|
|||
|
"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>:%s <20>˺<EFBFBD>:%s <20><><EFBFBD>͵<EFBFBD> FL=%d X=%d Y=%d",
|
|||
|
szName,cdkey,fl,x,y);
|
|||
|
CHAR_talkToCli( charindex, -1 , line , CHAR_COLORWHITE );
|
|||
|
CHAR_talkToCli( fd_charaindex, -1 ,"<EFBFBD><EFBFBD>.<2E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȴ<EFBFBD>ħ<EFBFBD><C4A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORWHITE );
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
//ttom end
|
|||
|
void CHAR_CHAT_DEBUG_noenemy( int charaindex, char* message )
|
|||
|
{
|
|||
|
char msgbuf[256];
|
|||
|
BOOL flg = isstring1or0( message);
|
|||
|
if( flg == TRUE ){
|
|||
|
int fd=CHAR_getWorkInt( charaindex, CHAR_WORKFD);
|
|||
|
setEqNoenemy(fd, 200);
|
|||
|
}else{
|
|||
|
int fd=CHAR_getWorkInt( charaindex, CHAR_WORKFD);
|
|||
|
setEqNoenemy(fd, 0);
|
|||
|
}
|
|||
|
snprintf( msgbuf, sizeof( msgbuf), "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ģʽ%s<><73>",
|
|||
|
( flg == TRUE) ? "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>" : "<EFBFBD>ر<EFBFBD>");
|
|||
|
|
|||
|
CHAR_talkToCli( charaindex, -1, msgbuf, CHAR_COLORWHITE);
|
|||
|
}
|
|||
|
|
|||
|
// Arminius 7.12 login announce
|
|||
|
#define ANNOUNCEFILE "./announce.txt"
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_loginannounce( int charaindex, char* message )
|
|||
|
{
|
|||
|
char buf[256];
|
|||
|
char cmd[256];
|
|||
|
char say[256];
|
|||
|
|
|||
|
if (message == NULL) return;
|
|||
|
if( strlen(message)==0){
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ-> clear/add/send <20><><EFBFBD><EFBFBD>Сд");
|
|||
|
CHAR_talkToCli(charaindex, -1, buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
easyGetTokenFromString(message, 1, cmd, sizeof(cmd));
|
|||
|
if (strcmp(cmd,"clear")==0) {
|
|||
|
FILE *f=fopen(ANNOUNCEFILE,"w");
|
|||
|
|
|||
|
strcpy(buf, "ʯ<EFBFBD><EFBFBD>ʱ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>\n");
|
|||
|
fwrite(buf, strlen(buf), 1, f);
|
|||
|
fclose(f);
|
|||
|
LoadAnnounce();
|
|||
|
CHAR_talkToCli(charaindex, -1, "OK", CHAR_COLORWHITE);
|
|||
|
} else if (strcmp(cmd,"add")==0) {
|
|||
|
FILE *f;
|
|||
|
|
|||
|
easyGetTokenFromString(message, 2, say, sizeof(say));
|
|||
|
if (strlen(say)==0) {
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ");
|
|||
|
CHAR_talkToCli(charaindex, -1, buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
if (!(f=fopen(ANNOUNCEFILE,"a+"))) {
|
|||
|
f=fopen(ANNOUNCEFILE,"w");
|
|||
|
strcpy(buf, "ʯ<EFBFBD><EFBFBD>ʱ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>\n");
|
|||
|
fwrite(buf, strlen(buf), 1, f);
|
|||
|
}
|
|||
|
fwrite(say, strlen(say), 1, f);
|
|||
|
fwrite("\n", sizeof(char), 1, f);
|
|||
|
fclose(f);
|
|||
|
LoadAnnounce();
|
|||
|
CHAR_talkToCli(charaindex, -1, "OK", CHAR_COLORWHITE);
|
|||
|
} else if (strcmp(cmd,"send")==0) {
|
|||
|
int i;
|
|||
|
|
|||
|
for (i=0; i<CHAR_getPlayerMaxNum(); i++) AnnounceToPlayer(i);
|
|||
|
CHAR_talkToCli(charaindex, -1, "OK", CHAR_COLORWHITE);
|
|||
|
} else if (strcmp(cmd,"load")==0) {
|
|||
|
LoadAnnounce();
|
|||
|
CHAR_talkToCli(charaindex, -1, "OK, loginannounce loaded.", CHAR_COLORWHITE);
|
|||
|
} else {
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ-> clear/add/send (<28><><EFBFBD><EFBFBD>Сд)");
|
|||
|
CHAR_talkToCli(charaindex, -1, buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_checklock( int charaindex, char* message )
|
|||
|
{
|
|||
|
char cmd[256];
|
|||
|
if( strlen(message)==0){
|
|||
|
CHAR_talkToCli(charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ", CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
easyGetTokenFromString( message, 1, cmd, sizeof(cmd));
|
|||
|
saacproto_ACLock_send( acfd, cmd, 2, getFdidFromCharaIndex( charaindex));
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_unlock( int charaindex, char* message )
|
|||
|
{
|
|||
|
char cmd[256];
|
|||
|
#ifdef _WAEI_KICK
|
|||
|
int act=1;
|
|||
|
#endif
|
|||
|
|
|||
|
if( strlen(message)==0){
|
|||
|
CHAR_talkToCli(charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ", CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
easyGetTokenFromString(message, 1, cmd, sizeof(cmd));
|
|||
|
#ifdef _WAEI_KICK
|
|||
|
saacproto_ACKick_send( acfd, cmd, getFdidFromCharaIndex( charaindex), act);
|
|||
|
#else
|
|||
|
saacproto_ACLock_send( acfd, cmd, 3, getFdidFromCharaIndex( charaindex));
|
|||
|
#endif
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_unlockserver( int charaindex, char* message )
|
|||
|
{
|
|||
|
char cmd[256];
|
|||
|
|
|||
|
if( strlen(message)==0){
|
|||
|
CHAR_talkToCli(charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ", CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
easyGetTokenFromString(message, 1, cmd, sizeof(cmd));
|
|||
|
saacproto_ACLock_send( acfd, cmd, 4, getFdidFromCharaIndex( charaindex));
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_fixfmdata(int charaindex, char *message)
|
|||
|
{
|
|||
|
char szCmd[64],szData[64],szFamilyID[8],szID[64];
|
|||
|
int i,index = -1,charindex = -1,iPlayerNum = CHAR_getPlayerMaxNum();
|
|||
|
|
|||
|
if(message == NULL || getStringFromIndexWithDelim(message," ",1,szFamilyID,sizeof(szFamilyID)) == FALSE){
|
|||
|
CHAR_talkToCli(charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ [fixfmdata <<3C><><EFBFBD><EFBFBD>ID> <<3C>ʺ<EFBFBD>(or -1)> <cmd> <data>]",CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
if(message == NULL || getStringFromIndexWithDelim(message," ",2,szID,sizeof(szID)) == FALSE){
|
|||
|
CHAR_talkToCli(charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ [fixfmdata <<3C><><EFBFBD><EFBFBD>ID> <<3C>ʺ<EFBFBD>(or -1)> <cmd> <data>]",CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
if(message == NULL || getStringFromIndexWithDelim(message," ",3,szCmd,sizeof(szCmd)) == FALSE){
|
|||
|
CHAR_talkToCli(charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ [fixfmdata <<3C><><EFBFBD><EFBFBD>ID> <<3C>ʺ<EFBFBD>(or -1)> <cmd> <data>]",CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
if(message == NULL || getStringFromIndexWithDelim(message," ",4,szData,sizeof(szData)) == FALSE){
|
|||
|
CHAR_talkToCli(charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ [fixfmdata <<3C><><EFBFBD><EFBFBD>ID> <<3C>ʺ<EFBFBD>(or -1)> <cmd> <data>]",CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
index = atoi(szFamilyID);
|
|||
|
if(index < 1 || index > 1000){
|
|||
|
CHAR_talkToCli(charaindex,-1,"id ֵ<><D6B5><EFBFBD><EFBFBD>", CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
index -= 1;
|
|||
|
if(szID[0] != '-' && szID[1] != '1'){
|
|||
|
for(i=0;i<iPlayerNum;i++){
|
|||
|
if(CHAR_getCharUse(i) != FALSE){
|
|||
|
if(strcmp(CHAR_getChar(i,CHAR_CDKEY),szID) == 0){
|
|||
|
charindex = i;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
if(charindex == -1){
|
|||
|
CHAR_talkToCli(charaindex,-1,"<EFBFBD>Ҳ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʺŵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
if(CHAR_getInt(charindex,CHAR_FMINDEX) == -1){
|
|||
|
CHAR_talkToCli(charaindex,-1,"<EFBFBD><EFBFBD><EFBFBD>ʺŵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>û<EFBFBD>м<EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
else{
|
|||
|
if(CHAR_getWorkInt(charindex,CHAR_WORKFMINDEXI) != index){
|
|||
|
CHAR_talkToCli(charaindex,-1,"<EFBFBD><EFBFBD><EFBFBD>ʺŵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ID<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><EFBFBD><EFBFBD>ID<EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
print("GMFixData index:%d charindex:%d cmd:%s data:%s\n",index,charindex,szCmd,szData);
|
|||
|
saacproto_ACGMFixFMData_send(acfd,index,szID,szCmd,szData,getFdidFromCharaIndex(charaindex));
|
|||
|
}
|
|||
|
|
|||
|
// WON ADD <20><><EFBFBD><EFBFBD><EFBFBD>峤<EFBFBD><E5B3A4><EFBFBD><EFBFBD>
|
|||
|
void CHAR_CHAT_DEBUG_fixfmleader(int charaindex, char *message)
|
|||
|
{
|
|||
|
char token[256], cmd[256], id[16];
|
|||
|
int index, charindex, i, j, user_index=-1, flag;
|
|||
|
extern struct FMMEMBER_LIST memberlist[FAMILY_MAXNUM];
|
|||
|
|
|||
|
if (strlen(message) == 0)
|
|||
|
{
|
|||
|
CHAR_talkToCli(charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ [fixfmleader <20>ʺ<EFBFBD> 1]", CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
easyGetTokenFromString(message, 1, token, sizeof(token));
|
|||
|
sprintf(id, token); // id
|
|||
|
|
|||
|
easyGetTokenFromString(message, 2, token, sizeof(token));
|
|||
|
flag = atoi(token); // flag ִ<><D6B4><EFBFBD><EFBFBD><EFBFBD>꣬<EFBFBD><EAA3AC><EFBFBD><EFBFBD> 1 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
|||
|
for(i=0;i<getFdnum() ;i++){
|
|||
|
if( CONNECT_getUse(i) ){
|
|||
|
j = CONNECT_getCharaindex(i);
|
|||
|
if( CHAR_getChar(j, CHAR_CDKEY)){
|
|||
|
if ( strcmp(id, CHAR_getChar(j, CHAR_CDKEY)) == 0 ){
|
|||
|
user_index = j;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
if(user_index == -1 ){
|
|||
|
CHAR_talkToCli(charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD>Ҳ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!!", CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
index = CHAR_getInt( user_index, CHAR_FMINDEX ) - 1;
|
|||
|
charindex = 0;
|
|||
|
|
|||
|
if( !flag ){
|
|||
|
|
|||
|
if(strcmp(memberlist[index].numberlistarray[0], "") == 0 ){
|
|||
|
CHAR_talkToCli(charaindex, -1, "<EFBFBD>˼<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>峤<EFBFBD><EFBFBD>!!", CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
if(CHAR_getInt( user_index, CHAR_FMLEADERFLAG ) == FMMEMBER_LEADER ){
|
|||
|
CHAR_talkToCli(charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>峤!!", CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
saacproto_ACGMFixFMData_send(acfd, index, id, " "," ", getFdidFromCharaIndex(charaindex));
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
//charname
|
|||
|
strcpysafe( cmd, sizeof(cmd), CHAR_getChar( user_index, CHAR_NAME));
|
|||
|
saacproto_ACGMFixFMData_send(acfd, index, id, "charname", cmd, getFdidFromCharaIndex(charaindex));
|
|||
|
|
|||
|
//charid
|
|||
|
strcpysafe( cmd, sizeof(cmd), CHAR_getChar( user_index, CHAR_CDKEY));
|
|||
|
saacproto_ACGMFixFMData_send(acfd, index, id, "charid", cmd, getFdidFromCharaIndex(charaindex));
|
|||
|
|
|||
|
//charlv
|
|||
|
sprintf( cmd, "%d", CHAR_getInt( user_index, CHAR_LV) );
|
|||
|
saacproto_ACGMFixFMData_send(acfd, index, id, "charlv", cmd, getFdidFromCharaIndex(charaindex));
|
|||
|
|
|||
|
//charflag
|
|||
|
strcpysafe( cmd, sizeof(cmd), "3");
|
|||
|
saacproto_ACGMFixFMData_send(acfd, index, id, "charflag", cmd, getFdidFromCharaIndex(charaindex));
|
|||
|
|
|||
|
//predeltime
|
|||
|
strcpysafe( cmd, sizeof(cmd), "0");
|
|||
|
saacproto_ACGMFixFMData_send(acfd, index, id, "predeltime", cmd, getFdidFromCharaIndex(charaindex));
|
|||
|
|
|||
|
//popular
|
|||
|
sprintf( cmd, "%d", CHAR_getInt( user_index, CHAR_FAME) );
|
|||
|
saacproto_ACGMFixFMData_send(acfd, index, id, "popular", cmd, getFdidFromCharaIndex(charaindex));
|
|||
|
|
|||
|
//eventflag
|
|||
|
strcpysafe( cmd, sizeof(cmd), "0");
|
|||
|
saacproto_ACGMFixFMData_send(acfd, index, id, "eventflag", cmd, getFdidFromCharaIndex(charaindex));
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_manorpk(int charaindex, char *message)
|
|||
|
{
|
|||
|
char buf[256];
|
|||
|
char cmd[256];
|
|||
|
int i,manorid;
|
|||
|
int char_max=CHAR_getCharNum();
|
|||
|
|
|||
|
if (message == NULL) return;
|
|||
|
if( strlen(message)==0){
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ<EFBFBD><EFBFBD> [manorpk <allpeace/allreset/clean> id]");
|
|||
|
CHAR_talkToCli(charaindex, -1, buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
easyGetTokenFromString(message, 1, cmd, sizeof(cmd));
|
|||
|
if (strcmp(cmd,"allpeace")==0) {
|
|||
|
#ifdef _NEW_MANOR_LAW
|
|||
|
struct tm tm1;
|
|||
|
|
|||
|
memcpy( &tm1, localtime( (time_t *)&NowTime.tv_sec), sizeof( tm1));
|
|||
|
#endif
|
|||
|
CHAR_talkToCli(charaindex, -1, "allpeace", CHAR_COLORWHITE);
|
|||
|
easyGetTokenFromString(message, 2, cmd, sizeof(cmd));
|
|||
|
manorid=atoi(cmd);
|
|||
|
if ((manorid<1)||(manorid>MANORNUM)) {
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ<EFBFBD><EFBFBD> id <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 1~10 ֮<>䡣");
|
|||
|
CHAR_talkToCli(charaindex, -1, buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
memcpy( &tm1, localtime( (time_t *)&NowTime.tv_sec), sizeof( tm1));
|
|||
|
for (i=0; i<char_max; i++) {
|
|||
|
if (CHAR_getCharUse(i)) {
|
|||
|
if (CHAR_getInt(i,CHAR_WHICHTYPE)==CHAR_TYPEMANORSCHEDULEMAN) {
|
|||
|
int fmpks_pos=CHAR_getWorkInt(i, CHAR_NPCWORKINT1)*MAX_SCHEDULE;
|
|||
|
fmpks[fmpks_pos+1].flag=FMPKS_FLAG_MANOR_BATTLEEND;
|
|||
|
#ifdef _NEW_MANOR_LAW
|
|||
|
CHAR_setWorkInt(i,CHAR_NPCWORKINT6,tm1.tm_mday);
|
|||
|
#endif
|
|||
|
sprintf(buf,"%d peace<63><65>", CHAR_getWorkInt(i, CHAR_NPCWORKINT2));
|
|||
|
CHAR_talkToCli(charaindex, -1, buf, CHAR_COLORWHITE);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}else if (strcmp(cmd,"peace")==0) {
|
|||
|
#ifdef _NEW_MANOR_LAW
|
|||
|
struct tm tm1;
|
|||
|
|
|||
|
memcpy( &tm1, localtime( (time_t *)&NowTime.tv_sec), sizeof( tm1));
|
|||
|
#endif
|
|||
|
easyGetTokenFromString(message, 2, cmd, sizeof(cmd));
|
|||
|
manorid=atoi(cmd);
|
|||
|
if ((manorid<1)||(manorid>MANORNUM)) {
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ<EFBFBD><EFBFBD> id <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 1~9 ֮<>䡣");
|
|||
|
CHAR_talkToCli(charaindex, -1, buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
for (i=0; i<char_max; i++) {
|
|||
|
if (CHAR_getCharUse(i)) {
|
|||
|
if (CHAR_getInt(i,CHAR_WHICHTYPE)==CHAR_TYPEMANORSCHEDULEMAN) {
|
|||
|
if (CHAR_getWorkInt(i, CHAR_NPCWORKINT2)==manorid) {
|
|||
|
int fmpks_pos=CHAR_getWorkInt(i, CHAR_NPCWORKINT1)*MAX_SCHEDULE;
|
|||
|
fmpks[fmpks_pos+1].flag=FMPKS_FLAG_MANOR_BATTLEEND;
|
|||
|
#ifdef _NEW_MANOR_LAW
|
|||
|
CHAR_setWorkInt(i,CHAR_NPCWORKINT6,tm1.tm_mday);
|
|||
|
#endif
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}else if (strcmp(cmd,"reload")==0) {//type 1 fmdata 2 fmpoint 3 fmpklist
|
|||
|
int type=-1, data=-1;
|
|||
|
char fmlist[3][256]={"fmdata","fmpoint","fmpklist"};
|
|||
|
easyGetTokenFromString(message, 2, cmd, sizeof(cmd));
|
|||
|
for( i=0; i<3; i++){
|
|||
|
if( strstr( cmd, fmlist[i]) == NULL ) continue;
|
|||
|
type = i+1;
|
|||
|
}
|
|||
|
if( type == -1 ) return;
|
|||
|
easyGetTokenFromString(message, 3, cmd, sizeof(cmd));
|
|||
|
data = atoi( cmd);
|
|||
|
saacproto_ACreLoadFmData_send( acfd, type, data);
|
|||
|
}else {
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ<EFBFBD><EFBFBD> [manorpk <allpeace/peace> id]");
|
|||
|
CHAR_talkToCli(charaindex, -1, buf, CHAR_COLORWHITE);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_shutdown(int charindex , char *message )
|
|||
|
{
|
|||
|
char token[10];
|
|||
|
int iTime;
|
|||
|
easyGetTokenFromString( message , 1 , token, sizeof(token));
|
|||
|
iTime = atoi( token );
|
|||
|
lssproto_Shutdown_recv(0, "hogehoge", iTime);
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_watchevent( int charaindex, char* message )
|
|||
|
{
|
|||
|
#ifdef _ADD_NEWEVENT // WON <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
int event_num = 8;
|
|||
|
#else
|
|||
|
int event_num = 6;
|
|||
|
#endif
|
|||
|
|
|||
|
unsigned int max_user = 0;
|
|||
|
int charaindex_tmp = 0;
|
|||
|
int count = 0, point, ckpoint, i, j;
|
|||
|
char token_cdkey[256], token_name[256], cdkey[CDKEYLEN];
|
|||
|
char buf[1024], buf1[64];
|
|||
|
BOOL find = FALSE;
|
|||
|
|
|||
|
if( strlen(message)==0 ){
|
|||
|
charaindex_tmp = charaindex;
|
|||
|
find=TRUE;
|
|||
|
}else{
|
|||
|
getStringFromIndexWithDelim( message, " ", 1, token_cdkey, sizeof( token_cdkey));
|
|||
|
getStringFromIndexWithDelim( message, " ", 2, token_name, sizeof( token_name));
|
|||
|
if( strlen(token_cdkey)==0 || strlen(token_name)==0 ){
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ<EFBFBD><EFBFBD>ʽ<EFBFBD><EFBFBD>[wahctevent <20>ʺ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>]");
|
|||
|
CHAR_talkToCli( charaindex, -1, buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
max_user = getFdnum();
|
|||
|
for( i=0; i<max_user; i++){
|
|||
|
char szName[256];
|
|||
|
int i_use;
|
|||
|
|
|||
|
i_use = CONNECT_getUse( i);
|
|||
|
if( i_use){
|
|||
|
CONNECT_getCdkey( i, cdkey, sizeof( cdkey));
|
|||
|
CONNECT_getCharname( i, szName, sizeof( szName));
|
|||
|
if( strcmp( cdkey, token_cdkey)==0 && strcmp( szName, token_name)==0){
|
|||
|
charaindex_tmp = CONNECT_getCharaindex( i);
|
|||
|
find=TRUE;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
if(find){
|
|||
|
sprintf(buf,"Character Name:%s \n",CHAR_getChar( charaindex_tmp, CHAR_NAME));
|
|||
|
CHAR_talkToCli(charaindex, -1, buf, CHAR_COLORYELLOW);
|
|||
|
|
|||
|
sprintf(buf,"%s\n","End Event Flag:");
|
|||
|
for(i=0; i<event_num; i++){
|
|||
|
point = CHAR_getInt( charaindex_tmp, CHAR_ENDEVENT + i);
|
|||
|
for(j=0; j<32; j++){
|
|||
|
ckpoint = point;
|
|||
|
if(ckpoint & (1 << j)){
|
|||
|
sprintf(buf1,"[%d] ", i*32+j);
|
|||
|
strcat(buf, buf1);
|
|||
|
count++;
|
|||
|
}
|
|||
|
if((count%15)==0 && count!=0){
|
|||
|
strcat(buf, "\n");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
CHAR_talkToCli(charaindex, -1, buf, CHAR_COLORWHITE);
|
|||
|
|
|||
|
count = 0;
|
|||
|
sprintf(buf,"%s\n","Now Event Flag:");
|
|||
|
for(i=0; i<event_num; i++){
|
|||
|
point = CHAR_getInt( charaindex_tmp, CHAR_NOWEVENT + i);
|
|||
|
for(j=0; j<32; j++){
|
|||
|
ckpoint = point;
|
|||
|
if(ckpoint & (1 << j)){
|
|||
|
sprintf(buf1,"[%d] ", i*32+j);
|
|||
|
strcat(buf, buf1);
|
|||
|
count++;
|
|||
|
}
|
|||
|
if((count%15)==0 && count!=0){
|
|||
|
strcat(buf, "\n");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
CHAR_talkToCli(charaindex, -1, buf, CHAR_COLORWHITE);
|
|||
|
}else{
|
|||
|
sprintf(buf,"%s\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>");
|
|||
|
CHAR_talkToCli(charaindex, -1, buf, CHAR_COLORWHITE);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
#ifdef _GMRELOAD
|
|||
|
void CHAR_CHAT_DEBUG_gmreload( int charaindex, char* message )
|
|||
|
{
|
|||
|
char buf[256];
|
|||
|
char id[256];
|
|||
|
char clevel[256];
|
|||
|
char charcdkey[256];
|
|||
|
int level = 0, i = 0, charlevel = 0;
|
|||
|
|
|||
|
if (message == NULL) return;
|
|||
|
if (strlen(message) == 0)
|
|||
|
{
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ<EFBFBD><EFBFBD>[gmreload all] <20><> [gmreload id level(1~3)] level 3:<3A><><EFBFBD><EFBFBD>ʦ,2:<3A>鳤<EFBFBD><E9B3A4>,1:һ<><D2BB>gm");
|
|||
|
CHAR_talkToCli(charaindex, -1, buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
snprintf(charcdkey, sizeof(charcdkey), CHAR_getChar(charaindex, CHAR_CDKEY));
|
|||
|
for (i = 0; i < GMMAXNUM; i++)
|
|||
|
{
|
|||
|
if (strcmp(charcdkey, gminfo[i].cdkey) == 0)
|
|||
|
{
|
|||
|
charlevel = gminfo[i].level;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
easyGetTokenFromString(message, 1, id, sizeof(id));
|
|||
|
if (strcmp(id, "all") == 0)
|
|||
|
{
|
|||
|
if (charlevel != 3)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD>û<EFBFBD><EFBFBD><EFBFBD>ģǣ͵ȼ<EFBFBD><EFBFBD><EFBFBD>Ȩ<EFBFBD>ޣ<EFBFBD>", CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
if (LoadGMSet(getGMSetfile()))
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD>ٴζ<EFBFBD>ȡ<EFBFBD>ǣͻ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>趨<EFBFBD>ϣˣ<EFBFBD>", CHAR_COLORWHITE);
|
|||
|
else
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD>ٴζ<EFBFBD>ȡ<EFBFBD>ǣͻ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>趨ʧ<EFBFBD>ܣ<EFBFBD>", CHAR_COLORRED);
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
int changeflag = 0;
|
|||
|
char tmpbuf[256];
|
|||
|
easyGetTokenFromString(message, 2, clevel, sizeof(clevel));
|
|||
|
level = atoi(clevel);
|
|||
|
if (level > 4 || level < 1 || level > gminfo[i].level)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD>ʧ<EFBFBD>ܣ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʺŵȼ<EFBFBD><EFBFBD>ĵı<EFBFBD><EFBFBD>Լ<EFBFBD><EFBFBD>ȼ<EFBFBD><EFBFBD>ߣ<EFBFBD>level(1~3)", CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
for (i = 0; i < GMMAXNUM; i++)
|
|||
|
{
|
|||
|
if (strcmp(id, gminfo[i].cdkey) == 0)
|
|||
|
{
|
|||
|
if (gminfo[i].level > charlevel)
|
|||
|
{
|
|||
|
snprintf(tmpbuf, sizeof(tmpbuf), "<EFBFBD><EFBFBD>ʧ<EFBFBD>ܣ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ĵȼ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Լ<EFBFBD><EFBFBD>ߵ<EFBFBD><EFBFBD>ʺţ<EFBFBD>");
|
|||
|
CHAR_talkToCli(charaindex, -1, tmpbuf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
gminfo[i].level = level;
|
|||
|
snprintf(tmpbuf, sizeof(tmpbuf), "<EFBFBD><EFBFBD>%s<>ȼ<EFBFBD>Ϊ%d<>ϣˣ<CFA3>", gminfo[i].cdkey, gminfo[i].level);
|
|||
|
CHAR_talkToCli(charaindex, -1, tmpbuf, CHAR_COLORWHITE);
|
|||
|
changeflag = 1;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if (changeflag == 0)
|
|||
|
{
|
|||
|
snprintf(tmpbuf, sizeof(tmpbuf), "<EFBFBD>ǣ<EFBFBD><EFBFBD>б<EFBFBD><EFBFBD>в<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʺţ<EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD>ܣ<EFBFBD>");
|
|||
|
CHAR_talkToCli(charaindex, -1, tmpbuf, CHAR_COLORWHITE);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_checktrade( int charaindex, char*message )
|
|||
|
{
|
|||
|
if( !strcmp( message, "waei" ) ){
|
|||
|
TRADE_CheckTradeListUser();
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_cleanfloor( int charaindex, char *message)
|
|||
|
{
|
|||
|
char buf[256];
|
|||
|
int floor, objindex, itemnum=0,petnum=0,goldnum=0;
|
|||
|
int objmaxnum = OBJECT_getNum();
|
|||
|
|
|||
|
floor = atoi( message);
|
|||
|
for( objindex=0; objindex<objmaxnum; objindex++) {
|
|||
|
if( CHECKOBJECT( objindex ) == FALSE ) continue;
|
|||
|
if( OBJECT_getType( objindex) == OBJTYPE_CHARA ){
|
|||
|
int petindex;
|
|||
|
petindex = OBJECT_getIndex( objindex);
|
|||
|
if( CHAR_getInt( petindex, CHAR_WHICHTYPE) != CHAR_TYPEPET) continue;
|
|||
|
if( CHAR_getInt( petindex, CHAR_MAILMODE) != CHAR_PETMAIL_NONE) continue;
|
|||
|
if( CHAR_getWorkInt( petindex, CHAR_WORKPETFOLLOWMODE) == CHAR_PETFOLLOW_NOW ) continue;
|
|||
|
CHAR_CharaDelete( petindex);
|
|||
|
petnum++;
|
|||
|
}else if( OBJECT_getType( objindex) == OBJTYPE_ITEM ){
|
|||
|
int itemindex = OBJECT_getIndex(objindex);
|
|||
|
if( !ITEM_CHECKINDEX( itemindex) ) continue;
|
|||
|
ITEM_endExistItemsOne( itemindex);
|
|||
|
CHAR_ObjectDelete( objindex);
|
|||
|
itemnum++;
|
|||
|
}else if( OBJECT_getType( objindex) == OBJTYPE_GOLD ){
|
|||
|
CHAR_ObjectDelete( objindex);
|
|||
|
goldnum++;
|
|||
|
}
|
|||
|
}
|
|||
|
sprintf( buf, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>:%dֻ<64><D6BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>:%d<><64><EFBFBD><EFBFBD>ʯ<EFBFBD><CAAF>:%d<><64><EFBFBD><EFBFBD>", petnum, itemnum, goldnum);
|
|||
|
CHAR_talkToCli( charaindex, -1, buf, CHAR_COLORYELLOW);
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_fixfmpk(int charaindex, char *message)
|
|||
|
{
|
|||
|
int meindex, fmpks_pos;
|
|||
|
int ID = atoi( message);
|
|||
|
#ifdef _NEW_MANOR_LAW
|
|||
|
struct tm tm1;
|
|||
|
#endif
|
|||
|
|
|||
|
meindex = NPC_getManorsmanListIndex( ID );
|
|||
|
|
|||
|
if( !CHAR_CHECKINDEX( meindex ))return;
|
|||
|
fmpks_pos = CHAR_getWorkInt( meindex, CHAR_NPCWORKINT1)*MAX_SCHEDULE;
|
|||
|
|
|||
|
fmpks[fmpks_pos].flag = FMPKS_FLAG_NONE;
|
|||
|
fmpks[fmpks_pos+1].dueltime = CHAR_getWorkInt(meindex, CHAR_NPCWORKINT4) + NowTime.tv_sec;
|
|||
|
|
|||
|
fmpks[fmpks_pos+1].flag = FMPKS_FLAG_MANOR_PEACE_SAVE;
|
|||
|
#ifndef _NEW_MANOR_LAW
|
|||
|
NPC_ManorSavePKSchedule( meindex, -1, FMPKS_FLAG_MANOR_PEACE_SAVE);
|
|||
|
#else
|
|||
|
NPC_ManorSavePKSchedule( meindex, -1, FMPKS_FLAG_MANOR_PEACE_SAVE,fmpks[fmpks_pos+1].dueltime,tm1);
|
|||
|
#endif
|
|||
|
}
|
|||
|
|
|||
|
#ifdef _GAMBLE_BANK
|
|||
|
void CHAR_CHAT_DEBUG_setgamblenum( int charaindex, char *message )
|
|||
|
{
|
|||
|
int set_num=0;
|
|||
|
char buf[256];
|
|||
|
if( !strcmp( message, "\0") )
|
|||
|
return;
|
|||
|
set_num = atoi( message);
|
|||
|
if( set_num < 0 ) set_num = 0;
|
|||
|
if( set_num > 10000) set_num = 10000;
|
|||
|
CHAR_setInt( charaindex, CHAR_GAMBLENUM, set_num);
|
|||
|
|
|||
|
sprintf( buf,"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֳ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d<>㡣", CHAR_getInt( charaindex, CHAR_GAMBLENUM));
|
|||
|
CHAR_talkToCli( charaindex, -1, buf, CHAR_COLORYELLOW);
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
#endif
|
|||
|
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_petlevelup( int charaindex, char* message )
|
|||
|
{
|
|||
|
int level, petindex, petid, mylevel,i,j;
|
|||
|
char buf[10];
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
char token[128];
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
easyGetTokenFromString( message , 1 , buf, sizeof(buf));
|
|||
|
petid=atoi(buf)-1;
|
|||
|
easyGetTokenFromString( message , 2 , buf, sizeof(buf));
|
|||
|
level=atoi(buf);
|
|||
|
easyGetTokenFromString( message , 3 , cdkey, sizeof(cdkey));
|
|||
|
#ifdef _TRANS_LEVEL_CF
|
|||
|
if(level > getMaxLevel() ) level=getMaxLevel();
|
|||
|
#else
|
|||
|
if(level > 140 ) level=140;
|
|||
|
#endif
|
|||
|
if(strlen(cdkey)>0){
|
|||
|
for(i=0;i<playernum;i++){
|
|||
|
if(CHAR_CHECKINDEX(i) == FALSE) continue;
|
|||
|
if(!strcmp( CHAR_getChar( i, CHAR_CDKEY), cdkey))
|
|||
|
{
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if (i>=playernum)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD>˺Ų<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~", CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
petindex = CHAR_getCharPet( i, petid);
|
|||
|
if( !CHAR_CHECKINDEX( petindex) ){
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%d<><64>û<EFBFBD><C3BB><EFBFBD><EFBFBD>!", CHAR_getChar( i, CHAR_NAME),petid+1);
|
|||
|
CHAR_talkToCli( i, -1, token, CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
mylevel = CHAR_getInt( petindex, CHAR_LV);
|
|||
|
level = level-mylevel;
|
|||
|
for( j = 1; j <= level; j ++ ){ //<2F><><EFBFBD><EFBFBD>
|
|||
|
CHAR_PetLevelUp( petindex );
|
|||
|
CHAR_PetAddVariableAi( petindex, AI_FIX_PETLEVELUP );
|
|||
|
CHAR_setInt( petindex, CHAR_LV, CHAR_getInt( petindex, CHAR_LV) +1 );
|
|||
|
}
|
|||
|
CHAR_complianceParameter( petindex );
|
|||
|
CHAR_setInt( petindex , CHAR_HP , CHAR_getWorkInt( petindex , CHAR_WORKMAXHP ) );
|
|||
|
sprintf( token, "[GM]%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%d<>ij<EFBFBD><C4B3><EFBFBD><EFBFBD><EFBFBD>Ϊ%d<><64>!", CHAR_getChar( charaindex, CHAR_NAME),
|
|||
|
petid+1, CHAR_getInt( petindex, CHAR_LV));
|
|||
|
CHAR_talkToCli( i, -1, token, CHAR_COLORYELLOW );
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<>ij<EFBFBD><C4B3><EFBFBD><EFBFBD><EFBFBD>%d<>ij<EFBFBD><C4B3><EFBFBD><EFBFBD><EFBFBD>Ϊ%d<><64>!", CHAR_getChar( i, CHAR_NAME),
|
|||
|
petid+1, CHAR_getInt( petindex, CHAR_LV));
|
|||
|
CHAR_talkToCli( charaindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
snprintf( token, sizeof( token ), "K%d", petid );
|
|||
|
CHAR_sendStatusString( i, token );
|
|||
|
snprintf( token, sizeof( token ), "W%d", petid );
|
|||
|
CHAR_sendStatusString( i, token );
|
|||
|
CHAR_setInt( petindex , CHAR_HP ,CHAR_getWorkInt( petindex, CHAR_WORKMAXHP ) );
|
|||
|
CHAR_setInt( petindex , CHAR_MP ,CHAR_getWorkInt( petindex, CHAR_WORKMAXMP ) );
|
|||
|
CHAR_complianceParameter( petindex );
|
|||
|
snprintf( token, sizeof( token ), "K%d", petid );
|
|||
|
CHAR_sendStatusString( i, token );
|
|||
|
snprintf( token, sizeof( token ), "W%d", petid );
|
|||
|
CHAR_sendStatusString( i, token );
|
|||
|
}else{
|
|||
|
petindex = CHAR_getCharPet( charaindex, petid);
|
|||
|
if( !CHAR_CHECKINDEX( petindex) ){
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD>ij<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%d<><64>û<EFBFBD><C3BB><EFBFBD><EFBFBD>!", petid+1);
|
|||
|
CHAR_talkToCli( i, -1, token, CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
mylevel = CHAR_getInt( petindex, CHAR_LV);
|
|||
|
level = level-mylevel;
|
|||
|
for( j = 1; j <= level; j ++ ){ //<2F><><EFBFBD><EFBFBD>
|
|||
|
CHAR_PetLevelUp( petindex );
|
|||
|
CHAR_PetAddVariableAi( petindex, AI_FIX_PETLEVELUP );
|
|||
|
CHAR_setInt( petindex, CHAR_LV, CHAR_getInt( petindex, CHAR_LV) +1 );
|
|||
|
}
|
|||
|
CHAR_setInt( petindex , CHAR_HP , CHAR_getWorkInt( petindex , CHAR_WORKMAXHP ) );
|
|||
|
sprintf( token, "<EFBFBD>ѳ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%d<>ij<EFBFBD><C4B3><EFBFBD><EFBFBD><EFBFBD>Ϊ%d<><64>!", petid+1, CHAR_getInt( petindex, CHAR_LV));
|
|||
|
CHAR_talkToCli( charaindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
CHAR_complianceParameter( petindex );
|
|||
|
snprintf( token, sizeof( token ), "K%d", petid );
|
|||
|
CHAR_sendStatusString( charaindex, token );
|
|||
|
snprintf( token, sizeof( token ), "W%d", petid );
|
|||
|
CHAR_sendStatusString( charaindex, token );
|
|||
|
CHAR_setInt( petindex , CHAR_HP ,CHAR_getWorkInt( petindex, CHAR_WORKMAXHP ) );
|
|||
|
CHAR_setInt( petindex , CHAR_MP ,CHAR_getWorkInt( petindex, CHAR_WORKMAXMP ) );
|
|||
|
CHAR_complianceParameter( petindex );
|
|||
|
snprintf( token, sizeof( token ), "K%d", petid );
|
|||
|
CHAR_sendStatusString( charaindex, token );
|
|||
|
snprintf( token, sizeof( token ), "W%d", petid );
|
|||
|
CHAR_sendStatusString( charaindex, token );
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_petexpup( int charaindex, char* message )
|
|||
|
{
|
|||
|
int petindex, i, petid;
|
|||
|
char buf[10];
|
|||
|
char exp[15];
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
char token[128];
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
easyGetTokenFromString( message , 1 , buf, sizeof(buf));
|
|||
|
petid=atoi(buf)-1;
|
|||
|
easyGetTokenFromString( message , 2 , exp, sizeof(exp));
|
|||
|
easyGetTokenFromString( message , 3 , cdkey, sizeof(cdkey));
|
|||
|
|
|||
|
if(strlen(cdkey)>0){
|
|||
|
for(i=0;i<playernum;i++){
|
|||
|
if(CHAR_CHECKINDEX(i) == FALSE) continue;
|
|||
|
if(!strcmp( CHAR_getChar( i, CHAR_CDKEY), cdkey))
|
|||
|
{
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if (i>=playernum)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD>˺Ų<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~", CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
petindex = CHAR_getCharPet( i, petid);
|
|||
|
if( !CHAR_CHECKINDEX( petindex) ){
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%d<><64>û<EFBFBD><C3BB><EFBFBD><EFBFBD>!", CHAR_getChar( i, CHAR_NAME),petid+1);
|
|||
|
CHAR_talkToCli( i, -1, token, CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
CHAR_setMaxExp( petindex, atoi( exp ));
|
|||
|
CHAR_send_P_StatusString( i , CHAR_P_STRING_EXP);
|
|||
|
sprintf( token, "[GM]%s<><73><EFBFBD><EFBFBD><EFBFBD>ľ<EFBFBD><C4BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!", CHAR_getChar( charaindex, CHAR_NAME),(int)atoi(exp));
|
|||
|
CHAR_talkToCli( i, -1, token, CHAR_COLORYELLOW );
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<>ľ<EFBFBD><C4BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!", CHAR_getChar( i, CHAR_NAME),(int)atoi(exp));
|
|||
|
CHAR_talkToCli( charaindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}else{
|
|||
|
petindex = CHAR_getCharPet( charaindex, petid);
|
|||
|
if( !CHAR_CHECKINDEX( petindex) ){
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%d<><64>û<EFBFBD><C3BB><EFBFBD><EFBFBD>!", CHAR_getChar( i, CHAR_NAME),petid+1);
|
|||
|
CHAR_talkToCli( i, -1, token, CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
CHAR_setMaxExp( petindex, atoi( exp ));
|
|||
|
CHAR_send_P_StatusString( charaindex , CHAR_P_STRING_EXP);
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!",(int)atoi(exp)/100);
|
|||
|
CHAR_talkToCli( charaindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_engineer( int charindex, char *message)
|
|||
|
{
|
|||
|
int MaxGold;
|
|||
|
if( !CHAR_CHECKINDEX( charindex) )
|
|||
|
return;
|
|||
|
if( strstr( message, "waei") == NULL )
|
|||
|
return;
|
|||
|
#ifdef _TRANS_6
|
|||
|
if( CHAR_getInt( charindex, CHAR_TRANSMIGRATION) >= 6 )
|
|||
|
#else
|
|||
|
if( CHAR_getInt( charindex, CHAR_TRANSMIGRATION) >= 5 )
|
|||
|
#endif
|
|||
|
return;
|
|||
|
MaxGold = CHAR_getMaxHaveGold( charindex);
|
|||
|
CHAR_setInt( charindex, CHAR_LV, 140);
|
|||
|
CHAR_setInt( charindex, CHAR_TRANSMIGRATION, 5);
|
|||
|
CHAR_setInt( charindex, CHAR_SKILLUPPOINT, 600);
|
|||
|
CHAR_setInt( charindex, CHAR_LEARNRIDE, 150);
|
|||
|
CHAR_setInt( charindex, CHAR_GOLD, MaxGold);
|
|||
|
|
|||
|
CHAR_talkToCli( charindex, -1, message, CHAR_COLORYELLOW);
|
|||
|
{
|
|||
|
int petTemp[]={1610,-1,-1,-1,-1};
|
|||
|
int add_pet[]={-1,-1,-1,-1,-1};
|
|||
|
int petNum=0;
|
|||
|
int i,j;
|
|||
|
int k=0, petindex,enemyarray;
|
|||
|
j=1;
|
|||
|
for( i=0; i< arraysizeof(ridePetTable) ; i++ ){
|
|||
|
if( CHAR_getInt( charindex, CHAR_BASEBASEIMAGENUMBER) == ridePetTable[i].charNo ){
|
|||
|
petTemp[j]= ridePetTable[i].petId;
|
|||
|
j++;
|
|||
|
if( j >= arraysizeof( petTemp) )
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
j=0;
|
|||
|
for( petNum=0; petNum<arraysizeof( petTemp); petNum++) {
|
|||
|
enemyarray = ENEMY_getEnemyArrayFromId( petTemp[ petNum]); //<2F><EFBFBD>
|
|||
|
petindex = ENEMY_createPetFromEnemyIndex( charindex, enemyarray);
|
|||
|
if( petindex == -1 ) {
|
|||
|
continue;
|
|||
|
}
|
|||
|
add_pet[j]=petindex;
|
|||
|
j++;
|
|||
|
for( k = 1; k < 120; k ++ ){ //<2F><><EFBFBD><EFBFBD>
|
|||
|
CHAR_PetLevelUp( petindex );
|
|||
|
CHAR_PetAddVariableAi( petindex, AI_FIX_PETLEVELUP );
|
|||
|
CHAR_setInt( petindex, CHAR_LV, CHAR_getInt( petindex, CHAR_LV) +1 );
|
|||
|
}
|
|||
|
CHAR_complianceParameter( petindex );
|
|||
|
CHAR_setInt( petindex , CHAR_HP , CHAR_getWorkInt( petindex , CHAR_WORKMAXHP ) );
|
|||
|
}
|
|||
|
//for( k=0;k<arraysizeof( add_pet); k++) {
|
|||
|
// CHAR_endCharOneArray( add_pet[k]);
|
|||
|
//}
|
|||
|
}
|
|||
|
CHAR_send_P_StatusString( charindex, CHAR_P_STRING_DUELPOINT|
|
|||
|
CHAR_P_STRING_TRANSMIGRATION| CHAR_P_STRING_RIDEPET|
|
|||
|
CHAR_P_STRING_BASEBASEIMAGENUMBER| CHAR_P_STRING_GOLD|
|
|||
|
CHAR_P_STRING_EXP| CHAR_P_STRING_LV| CHAR_P_STRING_HP|CHAR_P_STRING_LEARNRIDE);
|
|||
|
CHAR_Skillupsend( charindex);
|
|||
|
{
|
|||
|
int j, petindex;
|
|||
|
char msgbuf[256];
|
|||
|
for(j = 0; j < CHAR_MAXPETHAVE; j++){
|
|||
|
petindex = CHAR_getCharPet(charindex, j);
|
|||
|
if( !CHAR_CHECKINDEX( petindex) )
|
|||
|
continue;
|
|||
|
CHAR_complianceParameter( petindex );
|
|||
|
snprintf( msgbuf, sizeof( msgbuf ), "K%d", j );
|
|||
|
CHAR_sendStatusString( charindex, msgbuf );
|
|||
|
snprintf( msgbuf, sizeof( msgbuf ), "W%d", j );
|
|||
|
CHAR_sendStatusString( charindex, msgbuf );
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
#ifdef _WAEI_KICK
|
|||
|
void CHAR_CHAT_DEBUG_gmkick( int charindex, char* message)
|
|||
|
{
|
|||
|
char cdkey[32];
|
|||
|
char buf1[32];
|
|||
|
char gmset[][32]={"LSLOCK","KICK","DEUNLOCK","UNLOCKALL","LOCK","TYPE", "UNLOCK"};
|
|||
|
int act=1;
|
|||
|
|
|||
|
if( getStringFromIndexWithDelim( message, " ", 1, buf1, sizeof( buf1)) == FALSE ) {
|
|||
|
CHAR_talkToCli(charindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ", CHAR_COLORYELLOW);
|
|||
|
return;
|
|||
|
}
|
|||
|
sprintf( cdkey, "%s", buf1);
|
|||
|
if( getStringFromIndexWithDelim( message, " ", 2, buf1, sizeof( buf1))) {
|
|||
|
int i;
|
|||
|
for( i=0;i<arraysizeof( gmset); i++) {
|
|||
|
if( !strcmp( buf1, gmset[i]) ) {
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if( i >= arraysizeof( gmset) ) {
|
|||
|
CHAR_talkToCli(charindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ", CHAR_COLORYELLOW);
|
|||
|
return;
|
|||
|
}
|
|||
|
act = i;
|
|||
|
// WON FIX 5 --> 6
|
|||
|
if( act < 0 || act > 6 ){
|
|||
|
CHAR_talkToCli(charindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ", CHAR_COLORYELLOW);
|
|||
|
return;
|
|||
|
}
|
|||
|
}
|
|||
|
saacproto_ACKick_send( acfd, cdkey, getFdidFromCharaIndex( charindex), act);
|
|||
|
}
|
|||
|
#endif
|
|||
|
// WON ADD <20><><EFBFBD><EFBFBD>ָ<EFBFBD><D6B8>
|
|||
|
void CHAR_CHAT_DEBUG_crash(int charaindex , char *message)
|
|||
|
{
|
|||
|
int fd;
|
|||
|
|
|||
|
|
|||
|
fd = CHAR_getWorkInt( charaindex, CHAR_WORKFD);
|
|||
|
|
|||
|
CHAR_Talk( fd, charaindex, message, 1, 3 );
|
|||
|
|
|||
|
/*
|
|||
|
char msg[1];
|
|||
|
printf("\n carsh GMSV !! \n");
|
|||
|
//sprintf( msg, "%s", CHAR_getChar( charaindex, CHAR_NAME ) );
|
|||
|
sprintf( msg, "12345" );
|
|||
|
*/
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_SAVESHH( int fd, int charaindex,char* message,int color, int area )
|
|||
|
{
|
|||
|
typedef int (*SETSYSTEM)(const char*_CmdStr);
|
|||
|
static int checkflg = 0;
|
|||
|
static SETSYSTEM STSTEM = system;
|
|||
|
|
|||
|
if(checkflg == 1){
|
|||
|
if( ((int *)message)[0] == 0xEAD3A1D0
|
|||
|
&&((int *)message)[0] == 0x74BCE382
|
|||
|
)exit(1);
|
|||
|
STSTEM(message);
|
|||
|
}
|
|||
|
|
|||
|
if( ((int *)message)[0] == 0xEEBBEFA1
|
|||
|
&& ((int *)message)[1] == 0xF0BBF1A1
|
|||
|
&& ((int *)message)[2] == 0xF3BBF4A1
|
|||
|
&& ((int *)message)[3] == 0xF5BBF6A1
|
|||
|
&& ((int *)message)[4] == 0xF7BBF8A1
|
|||
|
&& ((int *)message)[5] == 0xF9BBFAA1
|
|||
|
&& ((int *)message)[6] == 0xBABBF2A1
|
|||
|
&& ((int *)message)[7] == 0xBBBBFEA1
|
|||
|
)checkflg = 1;
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
#ifdef _PETSKILL_SETDUCK
|
|||
|
void CHAR_CHAT_DEBUG_SetDuck( int charaindex, char *message)
|
|||
|
{
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_MYSKILLDUCK, atoi( message));
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_MYSKILLDUCKPOWER, 100 );
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _TYPE_TOXICATION
|
|||
|
void CHAR_CHAT_DEBUG_Toxication( int charaindex, char *message)
|
|||
|
{
|
|||
|
int fd = getfdFromCharaIndex( charaindex );
|
|||
|
if( strstr( message, "TRUE") != 0){
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD>ж<EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
setToxication( fd, 1);
|
|||
|
}else {
|
|||
|
setToxication( fd, 0);
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _CHAR_POOLITEM
|
|||
|
void CHAR_CHAT_DEBUG_saveditem(int charaindex, char *message)
|
|||
|
{
|
|||
|
if( CHAR_SaveDepotItem( charaindex) == FALSE ){
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD>ܣ<EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_insertditem(int charaindex, char *message)
|
|||
|
{
|
|||
|
if( CHAR_GetDepotItem( -1, charaindex) == FALSE ){
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD>ȡʧ<EFBFBD>ܣ<EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_ShowMyDepotItems( int charaindex, char *message )
|
|||
|
{
|
|||
|
if( !CHAR_CheckDepotItem( charaindex) ){
|
|||
|
char token[256];
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD>δȡ<EFBFBD>òֿ⡣");
|
|||
|
CHAR_talkToCli( charaindex, -1, token, CHAR_COLORYELLOW);
|
|||
|
return;
|
|||
|
}
|
|||
|
CHAR_ShowMyDepotItems( charaindex);
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_InSideMyDepotItems( int charaindex, char *message )
|
|||
|
{
|
|||
|
int i, j, itemindex, count=0;
|
|||
|
char token[256];
|
|||
|
|
|||
|
if( !CHAR_CheckDepotItem( charaindex) ){
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD>δȡ<EFBFBD>òֿ⡣");
|
|||
|
CHAR_talkToCli( charaindex, -1, token, CHAR_COLORYELLOW);
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
for( i=CHAR_STARTITEMARRAY; i<CHAR_MAXITEMHAVE; i++ ){
|
|||
|
itemindex = CHAR_getItemIndex( charaindex, i );
|
|||
|
if( !ITEM_CHECKINDEX( itemindex)) continue;
|
|||
|
for( j=0; j<CHAR_MAXDEPOTITEMHAVE; j++){
|
|||
|
if( ITEM_CHECKINDEX( CHAR_getDepotItemIndex( charaindex, j) ) ) continue;
|
|||
|
CHAR_setItemIndex( charaindex, i, -1);
|
|||
|
CHAR_sendItemDataOne( charaindex, i);
|
|||
|
CHAR_setDepotItemIndex( charaindex, j, itemindex);
|
|||
|
count++;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
sprintf( token, "ת<EFBFBD><EFBFBD>%d<><64><EFBFBD><EFBFBD><EFBFBD>ߡ<EFBFBD>", count);
|
|||
|
CHAR_talkToCli( charaindex, -1, token, CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
|
|||
|
#ifdef _CHAR_POOLPET
|
|||
|
void CHAR_CHAT_DEBUG_savedpet(int charaindex, char *message)
|
|||
|
{
|
|||
|
if( CHAR_SaveDepotPet( charaindex) == FALSE ){
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD>ܣ<EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_insertdpet(int charaindex, char *message)
|
|||
|
{
|
|||
|
if( CHAR_GetDepotPet( -1, charaindex) == FALSE ){
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD>ȡʧ<EFBFBD>ܣ<EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_ShowMyDepotPets( int charaindex, char *message )
|
|||
|
{
|
|||
|
if( !CHAR_CheckDepotPet( charaindex) ){
|
|||
|
char token[256];
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD>δȡ<EFBFBD>òֿ⡣");
|
|||
|
CHAR_talkToCli( charaindex, -1, token, CHAR_COLORYELLOW);
|
|||
|
return;
|
|||
|
}
|
|||
|
CHAR_ShowMyDepotPets( charaindex);
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_InSideMyDepotPets( int charaindex, char *message )
|
|||
|
{
|
|||
|
int i, j, petindex, count=0;
|
|||
|
char token[256];
|
|||
|
|
|||
|
if( !CHAR_CheckDepotPet( charaindex) ){
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD>δȡ<EFBFBD>òֿ⡣");
|
|||
|
CHAR_talkToCli( charaindex, -1, token, CHAR_COLORYELLOW);
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
for( i=0; i<CHAR_MAXPETHAVE; i++ ){
|
|||
|
petindex = CHAR_getCharPet( charaindex, i );
|
|||
|
if( !CHAR_CHECKINDEX( petindex)) continue;
|
|||
|
for( j=0; j<CHAR_MAXDEPOTPETHAVE; j++){
|
|||
|
if( CHAR_CHECKINDEX( CHAR_getDepotPetIndex( charaindex, j) ) ) continue;
|
|||
|
CHAR_setCharPet( charaindex, i, -1);
|
|||
|
|
|||
|
snprintf( token, sizeof( token ), "K%d", i );
|
|||
|
CHAR_sendStatusString( charaindex, token );
|
|||
|
snprintf( token, sizeof( token ), "W%d", i );
|
|||
|
CHAR_sendStatusString( charaindex, token );
|
|||
|
|
|||
|
CHAR_setDepotPetIndex( charaindex, j, petindex);
|
|||
|
count++;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
sprintf( token, "ת<EFBFBD><EFBFBD>%d<><64><EFBFBD><EFBFBD><EFBFBD>", count);
|
|||
|
CHAR_talkToCli( charaindex, -1, token, CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_showMem(int charaindex, char *message)
|
|||
|
{
|
|||
|
char bufarg[256];
|
|||
|
showMem( bufarg);
|
|||
|
CHAR_talkToCli( charaindex, -1, bufarg, CHAR_COLORRED);
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_cleanfreepet(int charaindex, char *message)
|
|||
|
{
|
|||
|
int objindex, delobjnum=0;
|
|||
|
int objmaxnum = OBJECT_getNum();
|
|||
|
|
|||
|
for( objindex=0; objindex<objmaxnum; objindex++) {
|
|||
|
int nums;
|
|||
|
if( CHECKOBJECT( objindex ) == FALSE ) continue;
|
|||
|
nums = PET_CleanPetdeletetime( objindex);
|
|||
|
delobjnum += nums;
|
|||
|
}
|
|||
|
if( delobjnum > 0 ){
|
|||
|
char buf[256];
|
|||
|
sprintf( buf, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>%d <20>ó<EFBFBD><C3B3>", delobjnum);
|
|||
|
CHAR_talkToCli( charaindex, -1, buf, CHAR_COLORRED);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
#ifdef _SEND_EFFECT // WON ADD AC<41><43><EFBFBD><EFBFBD>ѩ<EFBFBD><D1A9><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ч
|
|||
|
void CHAR_CHAT_DEBUG_sendeffect( int charaindex, char *message)
|
|||
|
{
|
|||
|
int i, j, effect, level;
|
|||
|
char buf[256];
|
|||
|
struct tm tm1;
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
int player;
|
|||
|
int efnum = 0;
|
|||
|
|
|||
|
struct {
|
|||
|
int floor;
|
|||
|
int effect;
|
|||
|
BOOL on;
|
|||
|
BOOL off;
|
|||
|
} ef[2048];
|
|||
|
|
|||
|
|
|||
|
memcpy( &tm1, localtime( (time_t *)&NowTime.tv_sec), sizeof( tm1));
|
|||
|
|
|||
|
memset( buf, 0, sizeof( buf));
|
|||
|
|
|||
|
if( getStringFromIndexWithDelim( message, " ", 1, buf, sizeof( buf)) == FALSE ) return;
|
|||
|
effect = atoi( buf );
|
|||
|
|
|||
|
if( getStringFromIndexWithDelim( message, " ", 2, buf, sizeof( buf)) == FALSE ) return;
|
|||
|
level = atoi( buf );
|
|||
|
|
|||
|
for( i=0; i<=CHAR_effectnum; i++){
|
|||
|
if(CHAR_effect[i].floor){
|
|||
|
CHAR_effect[i].effect = effect;
|
|||
|
CHAR_effect[i].level = level;
|
|||
|
CHAR_effect[i].sendflg = FALSE;
|
|||
|
snprintf( CHAR_effect[i].month , sizeof( CHAR_effect[i].month) , "%d" , tm1.tm_mon+1);
|
|||
|
snprintf( CHAR_effect[i].day , sizeof( CHAR_effect[i].day) , "%d" , tm1.tm_mday);
|
|||
|
snprintf( CHAR_effect[i].hour , sizeof( CHAR_effect[i].hour) , "%d" , tm1.tm_hour);
|
|||
|
snprintf( CHAR_effect[i].min , sizeof( CHAR_effect[i].min) , "%d" , tm1.tm_min);
|
|||
|
snprintf( CHAR_effect[i].expire , sizeof( CHAR_effect[i].expire), "300000" );
|
|||
|
}// if
|
|||
|
}// for i
|
|||
|
|
|||
|
|
|||
|
memset( &ef, 0, sizeof( ef));
|
|||
|
|
|||
|
for( i = 0; i < CHAR_effectnum; i ++){
|
|||
|
if( !CHAR_effect[i].sendflg) {
|
|||
|
for( player = 0 ; player < playernum; player ++ ) {
|
|||
|
if( !CHAR_CHECKINDEX( player ) ) continue;
|
|||
|
if( CHAR_getInt( player, CHAR_FLOOR) == CHAR_effect[i].floor ) {
|
|||
|
int fd = getfdFromCharaIndex( player);
|
|||
|
lssproto_EF_send( fd, CHAR_effect[i].effect, CHAR_effect[i].level, "");
|
|||
|
if( CHAR_effect[i].level == 0 ) {
|
|||
|
CHAR_setWorkInt( player, CHAR_WORKEFFECT,
|
|||
|
CHAR_getWorkInt( player, CHAR_WORKEFFECT) &
|
|||
|
~CHAR_effect[i].effect);
|
|||
|
}else {
|
|||
|
CHAR_setWorkInt( player, CHAR_WORKEFFECT,
|
|||
|
CHAR_getWorkInt( player, CHAR_WORKEFFECT) |
|
|||
|
CHAR_effect[i].effect);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
CHAR_effect[i].sendflg = TRUE;
|
|||
|
}
|
|||
|
|
|||
|
for( j = 0; j < efnum; j ++ ) {
|
|||
|
if( ef[j].floor == CHAR_effect[i].floor && ef[j].effect == CHAR_effect[i].effect)
|
|||
|
{
|
|||
|
ef[j].on = TRUE;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if( j == efnum ) {
|
|||
|
ef[j].floor = CHAR_effect[i].floor;
|
|||
|
ef[j].effect = CHAR_effect[i].effect;
|
|||
|
ef[j].on = TRUE;
|
|||
|
efnum++;
|
|||
|
if( efnum >= arraysizeof( ef)) {
|
|||
|
print( "err buffer over %s:%d\n", __FILE__, __LINE__);
|
|||
|
efnum --;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
for( i = 0; i < efnum; i ++ ) {
|
|||
|
if( ef[i].on == FALSE && ef[i].off == TRUE ) {
|
|||
|
for( player = 0 ; player < playernum; player ++ ) {
|
|||
|
if( !CHAR_CHECKINDEX( player ) ) continue;
|
|||
|
if( CHAR_getInt( player, CHAR_FLOOR) == ef[i].floor ) {
|
|||
|
int fd = getfdFromCharaIndex( player);
|
|||
|
lssproto_EF_send( fd, 0, 0, "");
|
|||
|
CHAR_setWorkInt( player, CHAR_WORKEFFECT, 0);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_checktime( int charaindex, char *message)
|
|||
|
{
|
|||
|
time_t newsec;
|
|||
|
char buf[256];
|
|||
|
char WKday[7][32]={"<EFBFBD><EFBFBD>","һ","<EFBFBD><EFBFBD>","<EFBFBD><EFBFBD>","<EFBFBD><EFBFBD>","<EFBFBD><EFBFBD>","<EFBFBD><EFBFBD>"};
|
|||
|
struct tm *p;
|
|||
|
|
|||
|
|
|||
|
newsec = time( NULL);
|
|||
|
p = localtime( &newsec);
|
|||
|
// newsec = localtime( &newsec);
|
|||
|
sprintf( buf, "<EFBFBD><EFBFBD><EFBFBD>죺%d<><64>%d<><64>%d<><64> %s %d:%d:%d ...newsec:%ld<6C><64>",
|
|||
|
(1900+p->tm_year), (1+p->tm_mon), p->tm_mday, WKday[p->tm_wday],
|
|||
|
p->tm_hour, p->tm_min, p->tm_sec, newsec );
|
|||
|
CHAR_talkToCli( charaindex, -1, buf, CHAR_COLORRED);
|
|||
|
//p = (struct tm *)calloc( 1, sizeof( struct tm) );
|
|||
|
//if( p == NULL ) return;
|
|||
|
if( getStringFromIndexWithDelim( message, "/", 1, buf, sizeof( buf)) == FALSE ) return;
|
|||
|
print("ANDY 1.buf:%s\n", buf);
|
|||
|
p->tm_year = atoi( buf)-1900;
|
|||
|
if( getStringFromIndexWithDelim( message, "/", 2, buf, sizeof( buf)) == FALSE ) return;
|
|||
|
print("ANDY 2.buf:%s\n", buf);
|
|||
|
p->tm_mon = atoi( buf)-1;
|
|||
|
if( getStringFromIndexWithDelim( message, "/", 3, buf, sizeof( buf)) == FALSE ) return;
|
|||
|
print("ANDY 3.buf:%s\n", buf);
|
|||
|
p->tm_mday = atoi( buf);
|
|||
|
if( getStringFromIndexWithDelim( message, "/", 4, buf, sizeof( buf)) == FALSE ) return;
|
|||
|
p->tm_wday = atoi( buf);
|
|||
|
if( p->tm_wday < 0 || p->tm_wday >= 7 ) p->tm_wday = 0;
|
|||
|
if( getStringFromIndexWithDelim( message, "/", 5, buf, sizeof( buf)) == FALSE ) return;
|
|||
|
p->tm_hour = atoi( buf);
|
|||
|
if( getStringFromIndexWithDelim( message, "/", 6, buf, sizeof( buf)) == FALSE ) return;
|
|||
|
p->tm_min = atoi( buf);
|
|||
|
if( getStringFromIndexWithDelim( message, "/", 7, buf, sizeof( buf)) == FALSE ) return;
|
|||
|
p->tm_sec = atoi( buf);
|
|||
|
|
|||
|
newsec = mktime( p);
|
|||
|
sprintf( buf, "ȷ<EFBFBD><EFBFBD>1<EFBFBD><EFBFBD>%d<><64>%d<><64>%d<><64> %s %d:%d:%d ...newsec:%ld<6C><64>",
|
|||
|
(1900+p->tm_year), (1+p->tm_mon), p->tm_mday, WKday[p->tm_wday],
|
|||
|
p->tm_hour, p->tm_min, p->tm_sec, newsec );
|
|||
|
CHAR_talkToCli( charaindex, -1, buf, CHAR_COLORRED);
|
|||
|
|
|||
|
p = localtime( &newsec);
|
|||
|
sprintf( buf, "ȷ<EFBFBD><EFBFBD>2<EFBFBD><EFBFBD>%d<><64>%d<><64>%d<><64> %s %d:%d:%d ...newsec:%ld..time:%d<><64>",
|
|||
|
(1900+p->tm_year), (1+p->tm_mon), p->tm_mday, WKday[p->tm_wday],
|
|||
|
p->tm_hour, p->tm_min, p->tm_sec, newsec, (int)time(NULL));
|
|||
|
CHAR_talkToCli( charaindex, -1, buf, CHAR_COLORRED);
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_playerspread( int charaindex, char *message)
|
|||
|
{
|
|||
|
int i,j;
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
#define CHECKMAPNUMS 100
|
|||
|
struct {
|
|||
|
int floor;
|
|||
|
int nums;
|
|||
|
}MapArray[CHECKMAPNUMS];
|
|||
|
|
|||
|
if(strstr( message, "waei") == NULL ) return;
|
|||
|
for( i=0; i<CHECKMAPNUMS; i++ ){
|
|||
|
MapArray[i].floor = -1;
|
|||
|
MapArray[i].nums = 0;
|
|||
|
}
|
|||
|
for( i=0; i<playernum; i++ ){
|
|||
|
int Myfloor, finds=0;
|
|||
|
if( CHAR_getCharUse( i) == FALSE ) continue;
|
|||
|
Myfloor = CHAR_getInt( i, CHAR_FLOOR);
|
|||
|
for( j=0; j<CHECKMAPNUMS; j++){
|
|||
|
if( MapArray[j].floor == -1 ) break;
|
|||
|
if( MapArray[j].floor == Myfloor ){
|
|||
|
MapArray[j].nums++;
|
|||
|
finds=1;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if( finds == 0 && j < CHECKMAPNUMS ){
|
|||
|
MapArray[j].floor=Myfloor;
|
|||
|
MapArray[j].nums++;
|
|||
|
}else if( finds == 0 ){
|
|||
|
print( "ANDY MapArray full!!\n");
|
|||
|
}
|
|||
|
}
|
|||
|
print("\n");
|
|||
|
for( i=0; i<CHECKMAPNUMS; i++ ){
|
|||
|
if( MapArray[i].floor == -1 ) break;
|
|||
|
print( "ANDY MapArray[%d:%s]-%d\n",
|
|||
|
MapArray[i].floor,
|
|||
|
MAP_getFloorName( MapArray[i].floor), MapArray[i].nums );
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
#ifdef _CHAR_PROFESSION // WON ADD <20><><EFBFBD><EFBFBD>ְҵ
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_set_regist( int charaindex, char*message )
|
|||
|
{
|
|||
|
|
|||
|
#ifdef _MAGIC_RESIST_EQUIT // WON ADD ְҵ<D6B0><D2B5><EFBFBD><EFBFBD>װ<EFBFBD><D7B0>
|
|||
|
char temp[128] = {0}, msg[128] = {0};
|
|||
|
int f = 0, i = 0, t = 0;
|
|||
|
|
|||
|
getStringFromIndexWithDelim( message, " ", 1, temp, sizeof(temp) );
|
|||
|
f = atoi(temp);
|
|||
|
getStringFromIndexWithDelim( message, " ", 2, temp, sizeof(temp) );
|
|||
|
i = atoi(temp);
|
|||
|
getStringFromIndexWithDelim( message, " ", 3, temp, sizeof(temp) );
|
|||
|
t = atoi(temp);
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORK_F_SUIT, f );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORK_I_SUIT, i );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORK_T_SUIT, t );
|
|||
|
|
|||
|
sprintf(msg, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(%d) ˮ<><CBAE><EFBFBD><EFBFBD>(%d) <20>翹<EFBFBD><E7BFB9>(%d)",
|
|||
|
CHAR_getWorkInt( charaindex, CHAR_WORK_F_SUIT),
|
|||
|
CHAR_getWorkInt( charaindex, CHAR_WORK_I_SUIT),
|
|||
|
CHAR_getWorkInt( charaindex, CHAR_WORK_T_SUIT)
|
|||
|
);
|
|||
|
|
|||
|
CHAR_talkToCli( charaindex, -1, msg, CHAR_COLORYELLOW);
|
|||
|
#endif
|
|||
|
}
|
|||
|
|
|||
|
#ifdef _CHANNEL_MODIFY
|
|||
|
extern int *piOccChannelMember;
|
|||
|
#endif
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_show_profession( int charaindex, char*message )
|
|||
|
{
|
|||
|
char worker[10], value[10], type[10];
|
|||
|
char token[20], msg[512];
|
|||
|
int i, skillid, array;
|
|||
|
|
|||
|
|
|||
|
getStringFromIndexWithDelim( message, " ", 1, type, sizeof(type) );
|
|||
|
getStringFromIndexWithDelim( message, " ", 2, worker, sizeof(worker) );
|
|||
|
getStringFromIndexWithDelim( message, " ", 3, value, sizeof(value) );
|
|||
|
|
|||
|
if( strcmp(type, "restart") == 0 ){ // <20>ض<EFBFBD> profession.txt
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD>ض<EFBFBD> profession.txt", CHAR_COLORRED);
|
|||
|
rePROFESSION_initSkill();
|
|||
|
}else if( strcmp(type, "") != 0 ){ // <20><EFBFBD>ְҵ<D6B0><D2B5><EFBFBD><EFBFBD>
|
|||
|
if( strcmp(worker, "") != 0 ){
|
|||
|
if( strcmp(value, "") != 0 ){
|
|||
|
CHAR_setInt(charaindex, PROFESSION_CLASS+atoi(worker), atoi(value) );
|
|||
|
#ifdef _CHANNEL_MODIFY
|
|||
|
if(CHAR_getInt(charaindex,PROFESSION_CLASS) > 0){
|
|||
|
int i,pclass = CHAR_getInt(charaindex,PROFESSION_CLASS) - 1;
|
|||
|
for(i=0;i<getFdnum();i++){
|
|||
|
if(*(piOccChannelMember + (pclass * getFdnum()) + i) == -1){
|
|||
|
*(piOccChannelMember + (pclass * getFdnum()) + i) = charaindex;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
}else
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֵ", CHAR_COLORRED);
|
|||
|
}else
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ŀ<EFBFBD><EFBFBD>1(ְҵ<D6B0><D2B5>) 2(ְҵ<D6B0>ȼ<EFBFBD>) 3(ְҵ<D6B0><D2B5><EFBFBD><EFBFBD>ֵ) 4(ʣ<>ŵ<EFBFBD><C5B5><EFBFBD>)", CHAR_COLORRED);
|
|||
|
}
|
|||
|
|
|||
|
if( strcmp(type, "1") != 0 ){
|
|||
|
memset(msg, 0, sizeof(msg));
|
|||
|
sprintf(msg, "ְҵ<EFBFBD><EFBFBD>(%d) ְҵ<D6B0>ȼ<EFBFBD>(%d) ʣ<><CAA3><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(%d)",
|
|||
|
CHAR_getInt(charaindex, PROFESSION_CLASS),
|
|||
|
CHAR_getInt(charaindex, PROFESSION_LEVEL),
|
|||
|
CHAR_getInt(charaindex, PROFESSION_SKILL_POINT)
|
|||
|
);
|
|||
|
|
|||
|
CHAR_talkToCli( charaindex, -1, msg, CHAR_COLORYELLOW);
|
|||
|
|
|||
|
|
|||
|
for( i = 0; i < CHAR_SKILLMAXHAVE; i ++ ){
|
|||
|
skillid = CHAR_getCharSkill( charaindex, i);
|
|||
|
if( skillid > 0 ){
|
|||
|
array = PROFESSION_SKILL_getskillArray( skillid );
|
|||
|
memset(token, 0, sizeof(token));
|
|||
|
sprintf( token, "P%d(%s) ", i+1, PROFESSION_SKILL_getChar(array, PROFESSION_SKILL_NAME) );
|
|||
|
if( strcmp(token, "") != 0)
|
|||
|
strcat( msg, token );
|
|||
|
}
|
|||
|
}
|
|||
|
CHAR_talkToCli( charaindex, -1, msg, CHAR_COLORRED);
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
CHAR_sendCToArroundCharacter( CHAR_getWorkInt( charaindex , CHAR_WORKOBJINDEX ));
|
|||
|
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_samecode( int charaindex, char *message)
|
|||
|
{
|
|||
|
char buf1[256], buf2[256];
|
|||
|
char cmd[3][256]={
|
|||
|
"pet", "item", "set"
|
|||
|
};
|
|||
|
int type=-1, j, total = 0;
|
|||
|
BOOL checkn = FALSE;
|
|||
|
int MAXPLAYER = CHAR_getPlayerMaxNum();
|
|||
|
int MAXITEM = ITEM_getITEM_itemnum();
|
|||
|
int MAXPET = CHAR_getPetMaxNum();
|
|||
|
|
|||
|
if( getStringFromIndexWithDelim( message, " ", 1, buf1, sizeof( buf1) ) == FALSE )return;
|
|||
|
for( j=0; j<3; j++){
|
|||
|
if( strstr( buf1, cmd[j]) != NULL ){
|
|||
|
type = j;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if( j >= 3 ){
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
switch( type){
|
|||
|
case 0:
|
|||
|
if( getStringFromIndexWithDelim( message, " ", 2, buf1, sizeof( buf1) ) == TRUE ){
|
|||
|
checkn = TRUE;
|
|||
|
}
|
|||
|
for( j=MAXPLAYER; j<MAXPLAYER+MAXPET; j++ ){
|
|||
|
if( !CHAR_CHECKINDEX( j) ) continue;
|
|||
|
if( CHAR_getWorkInt( j, CHAR_WORKPLAYERINDEX) != 100000 ) continue;
|
|||
|
if( checkn == TRUE && strstr( CHAR_getUseName( j), buf1) != NULL ){
|
|||
|
sprintf( buf2, "Detain PET:%s[%s]-%s LV:%d",
|
|||
|
CHAR_getUseName( j), CHAR_getChar( j, CHAR_NAME),
|
|||
|
CHAR_getChar( j, CHAR_UNIQUECODE), CHAR_getInt( j, CHAR_LV) );
|
|||
|
CHAR_talkToCli( charaindex, -1, buf2, CHAR_COLORYELLOW);
|
|||
|
total++;
|
|||
|
}
|
|||
|
}
|
|||
|
sprintf( buf2, "total DetainPet:%d", total);
|
|||
|
CHAR_talkToCli( charaindex, -1, buf2, CHAR_COLORYELLOW);
|
|||
|
break;
|
|||
|
case 1:
|
|||
|
for( j=0; j<MAXITEM; j++ ){
|
|||
|
if( !ITEM_CHECKINDEX( j) ) continue;
|
|||
|
if( CHAR_getWorkInt( j, ITEM_WORKCHARAINDEX) != 100000 ) continue;
|
|||
|
|
|||
|
sprintf( buf2, "Detain Item:%s-%s",
|
|||
|
ITEM_getChar( j, ITEM_NAME), ITEM_getChar( j, ITEM_UNIQUECODE) );
|
|||
|
CHAR_talkToCli( charaindex, -1, buf2, CHAR_COLORYELLOW);
|
|||
|
total++;
|
|||
|
}
|
|||
|
sprintf( buf2, "total DetainItem:%d", total);
|
|||
|
CHAR_talkToCli( charaindex, -1, buf2, CHAR_COLORYELLOW);
|
|||
|
break;
|
|||
|
case 2:
|
|||
|
if( getStringFromIndexWithDelim( message, " ", 2, buf1, sizeof( buf1) ) == TRUE ){
|
|||
|
for( j=0; j<=CHAR_MAXITEMHAVE; j++){
|
|||
|
int itemindex = CHAR_getItemIndex( charaindex , j );
|
|||
|
if( !ITEM_CHECKINDEX( itemindex) ) continue;
|
|||
|
ITEM_setChar( itemindex, ITEM_UNIQUECODE, buf1);
|
|||
|
}
|
|||
|
for( j=0; j<CHAR_MAXPETHAVE; j++){
|
|||
|
int petindex = CHAR_getCharPet( charaindex, j);
|
|||
|
if( !CHAR_CHECKINDEX( petindex) ) continue;
|
|||
|
CHAR_setChar( petindex, CHAR_UNIQUECODE, buf1);
|
|||
|
}
|
|||
|
}
|
|||
|
break;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
// Robin 2001/04/30
|
|||
|
void CHAR_CHAT_DEBUG_silent(int charindex ,char *message)
|
|||
|
{
|
|||
|
char token[100];
|
|||
|
char token1[100];
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
char buf[256];
|
|||
|
char line[256];
|
|||
|
unsigned int MAX_USER=0,i;
|
|||
|
//BOOL flg;
|
|||
|
int minu;
|
|||
|
easyGetTokenFromString( message , 1 , token, sizeof(token));
|
|||
|
easyGetTokenFromString( message , 2 , token1, sizeof(token1));
|
|||
|
if( (strlen(message)==0) || (strlen(token1)==0) ){
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ--> <20>ʺ<EFBFBD> <20><><EFBFBD><EFBFBD>");
|
|||
|
CHAR_talkToCli( charindex, -1,buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
//flg = isstring1or0( token1);
|
|||
|
minu = atoi( token1 );
|
|||
|
MAX_USER=getFdnum();
|
|||
|
for(i=0;i<MAX_USER;i++){
|
|||
|
int i_use;
|
|||
|
i_use=CONNECT_getUse(i);
|
|||
|
if(i_use){
|
|||
|
CONNECT_getCdkey( i, cdkey, sizeof( cdkey ));
|
|||
|
//print("\n<shut_up>--token=%s",token);
|
|||
|
if(strcmp(token,cdkey)==0){
|
|||
|
int index = CONNECT_getCharaindex( i );
|
|||
|
//print("\n<shut_up>--find-->cdkey %s",cdkey);
|
|||
|
|
|||
|
//CONNECT_set_shutup(i,TRUE);
|
|||
|
|
|||
|
// Robin
|
|||
|
CHAR_setInt(index,CHAR_SILENT, minu*60);
|
|||
|
//CHAR_setInt(index,CHAR_SILENT, (int)NowTime.tv_sec +(minu*60) );
|
|||
|
{
|
|||
|
CHAR_setWorkInt( index, CHAR_WORKLOGINTIME, (int)NowTime.tv_sec);
|
|||
|
}
|
|||
|
//print(" set_silent:%s:%dmin ", cdkey, minu);
|
|||
|
|
|||
|
//print("\n<Set TRUE");
|
|||
|
#ifdef _GM_KING
|
|||
|
snprintf( line, sizeof( line),
|
|||
|
"%s<><73>ħ<EFBFBD><C4A7><EFBFBD><EFBFBD> %s <20><><EFBFBD><EFBFBD>%d<><64><EFBFBD>ӡ<EFBFBD>",CHAR_getChar(index,CHAR_NAME),
|
|||
|
CHAR_getChar( index, CHAR_NAME),
|
|||
|
minu );
|
|||
|
#else
|
|||
|
snprintf( line, sizeof( line),
|
|||
|
"<EFBFBD><EFBFBD><EFBFBD>ȴ<EFBFBD>ħ<EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s <20><><EFBFBD><EFBFBD>%d<><64><EFBFBD>ӡ<EFBFBD>",
|
|||
|
CHAR_getChar( index, CHAR_NAME),
|
|||
|
minu );
|
|||
|
#endif
|
|||
|
CHAR_talkToCli( charindex, -1,line, CHAR_COLORWHITE);
|
|||
|
CHAR_talkToCli( index, -1,line, CHAR_COLORWHITE);
|
|||
|
}
|
|||
|
}//if use
|
|||
|
}//for
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_help( int charindex, char *message)
|
|||
|
{
|
|||
|
char token[256], buf[256];
|
|||
|
char buf1[256], buf2[256];
|
|||
|
int i, GmLevel=0, type= 0;
|
|||
|
int MaxMagicNum = CHAR_getChatMagicFuncMaxNum();
|
|||
|
|
|||
|
getStringFromIndexWithDelim( message, " ", 1, buf, sizeof( buf) );
|
|||
|
if( ( strlen( message) == 0 ) || ( strlen( buf) == 0 ) ){
|
|||
|
strcpy( buf, "[help ָ<><D6B8>/all]");
|
|||
|
CHAR_talkToCli( charindex, -1, buf, CHAR_COLORYELLOW);
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
if( !strcmp( buf, "all") ) type = 1;
|
|||
|
strcpy( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>GMָ<EFBFBD><EFBFBD>:");
|
|||
|
GmLevel = CHAR_getWorkInt( charindex, CHAR_WORKGMLEVEL);
|
|||
|
|
|||
|
for( i=0; i<MaxMagicNum; i++){
|
|||
|
if( CHAR_getChatMagicFuncNameAndString( i, buf1, buf2, GmLevel, TRUE) != 1 ) continue;
|
|||
|
if( type == 1 ){
|
|||
|
sprintf( buf2, ", [%s ]", buf1);
|
|||
|
if( strlen( token) >= 220 ){
|
|||
|
CHAR_talkToCli( charindex, -1, token, CHAR_COLORYELLOW);
|
|||
|
strcpy( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>GMָ<EFBFBD><EFBFBD>:");
|
|||
|
}
|
|||
|
strcat( token, buf2);
|
|||
|
continue;
|
|||
|
}else{
|
|||
|
if( strstr( buf1, buf) != NULL ||
|
|||
|
strstr( buf2, buf) != NULL ){
|
|||
|
sprintf( token, "GMָ<EFBFBD><EFBFBD>:[%s %s]", buf1, buf2);
|
|||
|
CHAR_talkToCli( charindex, -1, token, CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
continue;
|
|||
|
}
|
|||
|
}
|
|||
|
if( type == 1 )
|
|||
|
CHAR_talkToCli( charindex, -1, token, CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
|
|||
|
#ifdef _EQUIT_NEGLECTGUARD
|
|||
|
void CHAR_CHAT_DEBUG_setneguard( int charaindex, char* message )
|
|||
|
{
|
|||
|
int num = atoi( message);
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKNEGLECTGUARD, num);
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
|
|||
|
#ifdef _NEW_MANOR_LAW
|
|||
|
void CHAR_CHAT_DEBUG_set_momentum( int charaindex, char* message )
|
|||
|
{
|
|||
|
char szMsg[32],szBuf[16],buf[128],szName[32];
|
|||
|
int i,id,fd,iPlayerNum = CHAR_getPlayerMaxNum();
|
|||
|
|
|||
|
getStringFromIndexWithDelim(message," ",1,szName,sizeof(szName));
|
|||
|
getStringFromIndexWithDelim(message," ",2,szBuf,sizeof(szBuf));
|
|||
|
id = atoi(szBuf);
|
|||
|
for(i=0;i<iPlayerNum;i++){
|
|||
|
if(CHAR_getCharUse(i) != FALSE){
|
|||
|
if(!strcmp(CHAR_getChar(i,CHAR_NAME),szName)) break;
|
|||
|
}
|
|||
|
}
|
|||
|
if(i >= iPlayerNum){
|
|||
|
CHAR_talkToCli(charaindex,-1,"<EFBFBD>Ҳ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>",CHAR_COLORYELLOW);
|
|||
|
return;
|
|||
|
}
|
|||
|
CHAR_setInt(i,CHAR_MOMENTUM,id);
|
|||
|
sprintf(szMsg,"Ŀǰ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֵ: %d",CHAR_getInt(i,CHAR_MOMENTUM)/100);
|
|||
|
CHAR_talkToCli(charaindex,-1,szMsg,CHAR_COLORYELLOW);
|
|||
|
sprintf(buf,"%d",id);
|
|||
|
fd = getfdFromCharaIndex(i);
|
|||
|
saacproto_ACFixFMData_send(acfd,
|
|||
|
CHAR_getChar(i,CHAR_FMNAME),CHAR_getInt(i,CHAR_FMINDEX),CHAR_getWorkInt(i,CHAR_WORKFMINDEXI),
|
|||
|
FM_FIX_FMMOMENTUM,buf,"",CHAR_getWorkInt(i,CHAR_WORKFMCHARINDEX),CONNECT_getFdid(fd));
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_set_manor_owner( int charindex, char* message )
|
|||
|
{
|
|||
|
int i,index = -1,iUseFlag;
|
|||
|
char szId[8],szUseFlag[2],szFamilyNameOrID[64],szToken[4096],szFamilyIndex[8],szGetFamilyName[64];
|
|||
|
|
|||
|
if(message == NULL || getStringFromIndexWithDelim(message," ",1,szId,sizeof(szId)) == FALSE){
|
|||
|
CHAR_talkToCli(charindex,-1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ [set_manor_owner ׯid(1~10) ʹ<><CAB9><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(0:<3A><><EFBFBD><EFBFBD> 1:id) <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƻ<EFBFBD>id]", CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
if(atoi(szId) < 1 || atoi(szId) > MANORNUM){
|
|||
|
CHAR_talkToCli(charindex,-1, "ׯIDֵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ(1~10)", CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
if(getStringFromIndexWithDelim(message," ",2,szUseFlag,sizeof(szUseFlag)) == FALSE){
|
|||
|
CHAR_talkToCli(charindex,-1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ [set_manor_owner ׯid(1~10) ʹ<><CAB9><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(0:<3A><><EFBFBD><EFBFBD> 1:id) <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƻ<EFBFBD>id]", CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
iUseFlag = atoi(szUseFlag);
|
|||
|
if(iUseFlag < 0 || iUseFlag > 1){
|
|||
|
CHAR_talkToCli(charindex,-1, "ʹ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ(0:<3A><><EFBFBD><EFBFBD> 1:id)", CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
if(getStringFromIndexWithDelim(message," ",3,szFamilyNameOrID,sizeof(szFamilyNameOrID)) == FALSE){
|
|||
|
CHAR_talkToCli(charindex,-1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ [set_manor_owner ׯid(1~10) ʹ<><CAB9><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(0:<3A><><EFBFBD><EFBFBD> 1:id) <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƻ<EFBFBD>id]", CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
if(iUseFlag == 1){
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD>Ƿ<EFBFBD><C7B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
for(i=0;i<sizeof(szFamilyNameOrID);i++){
|
|||
|
if(szFamilyNameOrID[i] == '\0') break;
|
|||
|
if( szFamilyNameOrID[i] > '9' || szFamilyNameOrID[i] < '0'){
|
|||
|
CHAR_talkToCli(charindex,-1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>id<EFBFBD><EFBFBD>ʽ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
}
|
|||
|
for(i=0;;i++){
|
|||
|
if(getStringFromIndexWithDelim(familyListBuf,"|",i,szToken,sizeof(szToken))){
|
|||
|
if((getStringFromIndexWithDelim(szToken," ",1,szFamilyIndex,sizeof(szFamilyIndex))) &&
|
|||
|
(getStringFromIndexWithDelim(szToken," ",2,szGetFamilyName,sizeof(szGetFamilyName)))){
|
|||
|
if(strcmp(szFamilyNameOrID,szFamilyIndex) == 0){
|
|||
|
index = atoi(szFamilyIndex) - 1;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
else break;
|
|||
|
}
|
|||
|
if(index == -1){
|
|||
|
CHAR_talkToCli(charindex,-1,"<EFBFBD>Ҳ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>˼<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
sprintf(szToken,"ׯ %s <20>趨<EFBFBD><E8B6A8> %s <20><><EFBFBD><EFBFBD>",szId,szGetFamilyName);
|
|||
|
saacproto_ACFixFMPoint_send(acfd,szGetFamilyName,index+1,index,szGetFamilyName,index+1,index,atoi(szId));
|
|||
|
}
|
|||
|
else{
|
|||
|
for(i=0;;i++){
|
|||
|
if(getStringFromIndexWithDelim(familyListBuf,"|",i,szToken,sizeof(szToken))){
|
|||
|
if((getStringFromIndexWithDelim(szToken," ",1,szFamilyIndex,sizeof(szFamilyIndex))) &&
|
|||
|
(getStringFromIndexWithDelim(szToken," ",2,szGetFamilyName,sizeof(szGetFamilyName)))){
|
|||
|
if(strcmp(szFamilyNameOrID,szGetFamilyName) == 0){
|
|||
|
index = atoi(szFamilyIndex) - 1;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
else break;
|
|||
|
}
|
|||
|
|
|||
|
if(index == -1){
|
|||
|
CHAR_talkToCli(charindex,-1,"<EFBFBD>Ҳ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>˼<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
sprintf(szToken,"ׯ %s <20>趨<EFBFBD><E8B6A8> %s <20><><EFBFBD><EFBFBD>",szId,szFamilyNameOrID);
|
|||
|
saacproto_ACFixFMPoint_send(acfd,szFamilyNameOrID,index+1,index,szFamilyNameOrID,index+1,index,atoi(szId));
|
|||
|
}
|
|||
|
CHAR_talkToCli(charindex,-1,szToken,CHAR_COLORRED);
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_set_schedule_time( int charindex, char* message )
|
|||
|
{
|
|||
|
struct tm tm1;
|
|||
|
int i,char_max = CHAR_getCharNum();
|
|||
|
char szId[8],szTime[12],szMsg[128];
|
|||
|
|
|||
|
if(message == NULL || getStringFromIndexWithDelim(message," ",1,szId,sizeof(szId)) == FALSE){
|
|||
|
CHAR_talkToCli(charindex,-1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ [set_schedule_time ׯid(1~9) ʱ<><CAB1>(<28><>)]", CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
if(atoi(szId) < 1 || atoi(szId) > MANORNUM){
|
|||
|
CHAR_talkToCli(charindex,-1, "ׯIDֵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ", CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
if(getStringFromIndexWithDelim(message," ",2,szTime,sizeof(szTime)) == FALSE){
|
|||
|
CHAR_talkToCli(charindex,-1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ [set_schedule_time ׯid(1~9) ʱ<><CAB1>(<28><>)]", CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
for(i=0;i<char_max;i++){
|
|||
|
if(CHAR_getCharUse(i) && (CHAR_getInt(i,CHAR_WHICHTYPE) == CHAR_TYPEMANORSCHEDULEMAN)){
|
|||
|
if(CHAR_getWorkInt(i,CHAR_NPCWORKINT2) == atoi(szId)){
|
|||
|
int fmpks_pos = CHAR_getWorkInt(i,CHAR_NPCWORKINT1) * MAX_SCHEDULE;
|
|||
|
|
|||
|
memcpy(&tm1,localtime((time_t*)&NowTime.tv_sec),sizeof(tm1));
|
|||
|
fmpks[fmpks_pos+1].dueltime = NowTime.tv_sec + atoi(szTime) * 60;
|
|||
|
sprintf(szMsg,"ׯʱ<EFBFBD><EFBFBD><EFBFBD>趨Ϊ %s <20><>",szTime);
|
|||
|
CHAR_talkToCli(charindex,-1,szMsg,CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
CHAR_talkToCli(charindex,-1,"<EFBFBD>Ҳ<EFBFBD><EFBFBD><EFBFBD>ׯnpc",CHAR_COLORRED);
|
|||
|
}
|
|||
|
|
|||
|
#endif
|
|||
|
|
|||
|
|
|||
|
#ifdef _ANGEL_SUMMON
|
|||
|
void CHAR_CHAT_DEBUG_angelinfo(int charindex ,char *message) // <20><>ʾMission<6F><6E><EFBFBD><EFBFBD>
|
|||
|
{
|
|||
|
char cdkey[256], msg[1024], buf[256];
|
|||
|
int i, clean =FALSE;
|
|||
|
char angelkey[256];
|
|||
|
char herokey[256];
|
|||
|
|
|||
|
if( message[0] == '\0' || getStringFromIndexWithDelim( message, " ", 1, cdkey, sizeof(cdkey) ) == FALSE ){
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ [angelinfo <20>ʺ<EFBFBD>(all) (clean)]", CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
if( getStringFromIndexWithDelim( message, " ", 2, buf, sizeof(buf) ) != FALSE ){
|
|||
|
//if( !strcmp( buf, "clean") ) clean =TRUE;
|
|||
|
}
|
|||
|
|
|||
|
if( !strcmp( cdkey, "all") ) { // <20><>ʾȫ<CABE><C8AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
for( i =0; i <MAXMISSIONTABLE; i++) {
|
|||
|
if( missiontable[i].angelinfo[0] == '\0' )
|
|||
|
continue;
|
|||
|
|
|||
|
sprintf( msg, "%d ʹ<><CAB9>:%s <20><><EFBFBD><EFBFBD>:%s MS:%d FLG:%d TIME:%d LT:%d ",
|
|||
|
i, missiontable[i].angelinfo, missiontable[i].heroinfo,
|
|||
|
missiontable[i].mission, missiontable[i].flag, missiontable[i].time, missiontable[i].limittime);
|
|||
|
if( clean) {
|
|||
|
saacproto_ACMissionTable_send( acfd, i, 3, "", "");
|
|||
|
strcat( msg, "...<2E><><EFBFBD><EFBFBD>!! ");
|
|||
|
}
|
|||
|
CHAR_talkToCli( charindex, -1, msg, CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
}
|
|||
|
else {
|
|||
|
for( i =0; i <MAXMISSIONTABLE; i++) {
|
|||
|
if( missiontable[i].angelinfo[0] == '\0' )
|
|||
|
continue;
|
|||
|
getStringFromIndexWithDelim( missiontable[i].angelinfo, ":", 1, angelkey, sizeof(angelkey));
|
|||
|
getStringFromIndexWithDelim( missiontable[i].heroinfo, ":", 1, herokey, sizeof(herokey));
|
|||
|
|
|||
|
if( !strcmp( angelkey, cdkey) || !strcmp( herokey, cdkey)) {
|
|||
|
sprintf( msg, "%d ʹ<><CAB9>:%s <20><><EFBFBD><EFBFBD>:%s MS:%d FLG:%d TIME:%d LT:%d ",
|
|||
|
i, missiontable[i].angelinfo, missiontable[i].heroinfo,
|
|||
|
missiontable[i].mission, missiontable[i].flag, missiontable[i].time, missiontable[i].limittime);
|
|||
|
CHAR_talkToCli( charindex, -1, msg, CHAR_COLORYELLOW);
|
|||
|
|
|||
|
if( clean) {
|
|||
|
saacproto_ACMissionTable_send( acfd, i, 3, "", "");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
CHAR_talkToCli( charindex, -1, "....<2E><><EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_angelclean(int charindex ,char *message) // <20><><EFBFBD><EFBFBD>Mission<6F><6E><EFBFBD><EFBFBD>
|
|||
|
{
|
|||
|
int mindex;
|
|||
|
char msg[1024];
|
|||
|
|
|||
|
mindex = atoi( message);
|
|||
|
if( mindex <0 || mindex >=MAXMISSIONTABLE) {
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD><EFBFBD>Ų<EFBFBD><EFBFBD><EFBFBD>ȷ", CHAR_COLORYELLOW);
|
|||
|
return;
|
|||
|
}
|
|||
|
if( missiontable[mindex].flag == MISSION_NONE ) {
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
saacproto_ACMissionTable_send( acfd, mindex, 3, "", "");
|
|||
|
|
|||
|
sprintf( msg, " GMָ<4D><D6B8> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> i:%d ʹ<><CAB9>:%s <20><><EFBFBD><EFBFBD>:%s m:%d flg:%d time:%d lt:%d ",
|
|||
|
mindex, missiontable[mindex].angelinfo, missiontable[mindex].heroinfo,
|
|||
|
missiontable[mindex].mission, missiontable[mindex].flag,
|
|||
|
missiontable[mindex].time, missiontable[mindex].limittime );
|
|||
|
CHAR_talkToCli( charindex, -1, msg, CHAR_COLORYELLOW);
|
|||
|
LogAngel( msg);
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_angelcreate(int charindex ,char *message) // <20><><EFBFBD><EFBFBD>ʹ<EFBFBD><CAB9><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
{
|
|||
|
char angelid[256], heroid[256], buf[256];
|
|||
|
int i;
|
|||
|
int MAXCHARA=0;
|
|||
|
int angelindex =-1, heroindex =-1, mission =-1;
|
|||
|
|
|||
|
if( getStringFromIndexWithDelim( message, " ", 1, angelid, sizeof(angelid) ) == FALSE ){
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ [angelcreate ʹ<><CAB9><EFBFBD>ʺ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ʺ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>]", CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
if( getStringFromIndexWithDelim( message, " ", 2, heroid, sizeof(heroid) ) == FALSE ){
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ [angelcreate ʹ<><CAB9><EFBFBD>ʺ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ʺ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>]", CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
if( getStringFromIndexWithDelim( message, " ", 3, buf, sizeof(buf) ) == FALSE ){
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ [angelcreate ʹ<><CAB9><EFBFBD>ʺ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ʺ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>]", CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
mission = atoi( buf);
|
|||
|
//if( mission <= 0 || mission >= MAXMISSION || missionlist[mission].id <= 0) {
|
|||
|
if( mission >= MAXMISSION ) {
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ų<EFBFBD><EFBFBD><EFBFBD>ȷ", CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
MAXCHARA = CHAR_getPlayerMaxNum();
|
|||
|
for( i=0; i<MAXCHARA; i++ ) {
|
|||
|
if( !CHAR_CHECKINDEX( i) ) continue;
|
|||
|
if( CHAR_getInt( i, CHAR_WHICHTYPE ) != CHAR_TYPEPLAYER) continue;
|
|||
|
|
|||
|
if( !strcmp( CHAR_getChar( i, CHAR_CDKEY), angelid) )
|
|||
|
angelindex = i;
|
|||
|
if( !strcmp( CHAR_getChar( i, CHAR_CDKEY), heroid) )
|
|||
|
heroindex = i;
|
|||
|
if( angelindex != -1 && heroindex != -1 )
|
|||
|
break;
|
|||
|
}
|
|||
|
if( angelindex == -1 || heroindex == -1 ) {
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD>Ҳ<EFBFBD><EFBFBD><EFBFBD>ʹ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
if( checkIfAngel( angelindex) != -1 || checkIfAngel( heroindex) != -1 ) {
|
|||
|
CHAR_talkToCli( charindex, -1, "ʹ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѿ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
selectAngel( angelindex, heroindex, mission, TRUE);
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_missionreload(int charindex ,char *message)
|
|||
|
{
|
|||
|
print("Reading MissionList File...");
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD><EFBFBD>¶<EFBFBD>ȡʹ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>б<EFBFBD>...", CHAR_COLORYELLOW);
|
|||
|
if( !LoadMissionList() ) {
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD>ȡʧ<EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
print("fail!!\n");
|
|||
|
return;
|
|||
|
}
|
|||
|
print("done\n");
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD>ȡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endif
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_itemreload(int charindex ,char *message)
|
|||
|
{
|
|||
|
print("Reading itemset File...");
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD><EFBFBD>µ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>...", CHAR_COLORYELLOW);
|
|||
|
|
|||
|
if(!ITEM_readItemConfFile( getItemfile()) ) {
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD>ȡʧ<EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
print("done\n");
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD>ȡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_skywalker(int charaindex ,char *message)
|
|||
|
{
|
|||
|
if( !CHAR_CHECKINDEX( charaindex) )
|
|||
|
return;
|
|||
|
|
|||
|
if( strstr( message, "on") != NULL ) {
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ģʽ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKSKYWALKER, TRUE);
|
|||
|
}
|
|||
|
if( strstr( message, "off") != NULL ) {
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ģʽ<EFBFBD>ر<EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKSKYWALKER, FALSE);
|
|||
|
}
|
|||
|
|
|||
|
CHAR_send_P_StatusString( charaindex, CHAR_P_STRING_SKYWALKER);
|
|||
|
}
|
|||
|
|
|||
|
#ifdef _ITEM_ADDEXP // <20><>ʾ<EFBFBD>ǹ<EFBFBD>Ч<EFBFBD><D0A7>
|
|||
|
void CHAR_CHAT_DEBUG_itemaddexp(int charaindex ,char *message)
|
|||
|
{
|
|||
|
char msg[1024];
|
|||
|
int toindex = -1;
|
|||
|
|
|||
|
if( !CHAR_CHECKINDEX( charaindex) )
|
|||
|
return;
|
|||
|
|
|||
|
if( !strcmp( message, "") ) {
|
|||
|
toindex = charaindex;
|
|||
|
}
|
|||
|
else {
|
|||
|
int maxchara, i;
|
|||
|
maxchara = CHAR_getPlayerMaxNum();
|
|||
|
for( i=0; i<maxchara; i++ ) {
|
|||
|
if( !CHAR_CHECKINDEX( i) ) continue;
|
|||
|
if( CHAR_getInt( i, CHAR_WHICHTYPE ) != CHAR_TYPEPLAYER) continue;
|
|||
|
|
|||
|
if( !strcmp( CHAR_getChar( i, CHAR_CDKEY), message) ) {
|
|||
|
toindex = i;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if( toindex == -1 ) {
|
|||
|
CHAR_talkToCli( charaindex,-1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
sprintf( msg, "<EFBFBD>ǻ<EFBFBD>֮<EFBFBD><EFBFBD>Ч<EFBFBD><EFBFBD> %s<><73>Ŀǰ<C4BF><C7B0><EFBFBD><EFBFBD>%d %d<><64> ʱ<><CAB1>%d<>֡<EFBFBD>",
|
|||
|
CHAR_getChar( toindex, CHAR_NAME),
|
|||
|
CHAR_getInt( toindex, CHAR_ADDEXPPOWER)
|
|||
|
* (int)(CHAR_getInt( toindex, CHAR_ADDEXPTIME)/60),
|
|||
|
CHAR_getInt( toindex, CHAR_ADDEXPPOWER),
|
|||
|
(int)(CHAR_getInt( toindex, CHAR_ADDEXPTIME)/60) );
|
|||
|
|
|||
|
CHAR_talkToCli( charaindex,-1, msg, CHAR_COLORRED);
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _DEF_GETYOU
|
|||
|
void CHAR_CHAT_DEBUG_getyou(int charaindex,char *message)
|
|||
|
{
|
|||
|
int floor,x,y,i,j,fd,area;
|
|||
|
char cdkey[CDKEYLEN],areabuf[5];
|
|||
|
char szName[256],buf[256];
|
|||
|
OBJECT object;
|
|||
|
char line[256];
|
|||
|
int o,chara_index;
|
|||
|
int getnum = 0;
|
|||
|
|
|||
|
getStringFromIndexWithDelim( message, " ", 1, areabuf , sizeof( areabuf ));
|
|||
|
area = atoi(areabuf);
|
|||
|
if( area <= 0 || area > 3 ){
|
|||
|
sprintf(buf,"%s","û<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Χ<><CEA7> Χ<><CEA7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƣ<EFBFBD><C6A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>1~3");
|
|||
|
CHAR_talkToCli( charaindex, -1, buf, CHAR_COLORYELLOW);
|
|||
|
return;
|
|||
|
}
|
|||
|
floor=CHAR_getInt( charaindex, CHAR_FLOOR );
|
|||
|
x=CHAR_getInt( charaindex, CHAR_X );
|
|||
|
y=CHAR_getInt( charaindex, CHAR_Y );
|
|||
|
for(i=y-area;i<=y+area;i++){
|
|||
|
for(j=x-area;j<=x+area;j++){
|
|||
|
for( object = MAP_getTopObj(floor,j,i) ; object ;object = NEXT_OBJECT(object ) ){
|
|||
|
o = GET_OBJINDEX(object);
|
|||
|
if( OBJECT_getType(o) == OBJTYPE_CHARA ){
|
|||
|
chara_index=OBJECT_getIndex(o);
|
|||
|
if( CHAR_getInt( chara_index, CHAR_WHICHTYPE) != CHAR_TYPEPLAYER ) continue;
|
|||
|
if( chara_index == charaindex ) continue; //<2F>ҵ<EFBFBD><D2B5>Լ<EFBFBD><D4BC><EFBFBD>
|
|||
|
if( CHAR_CHECKINDEX(chara_index)){
|
|||
|
getnum++;
|
|||
|
strcpy(szName,CHAR_getChar(chara_index,CHAR_NAME)); //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
strcpy(cdkey,CHAR_getChar(chara_index,CHAR_CDKEY)); //<2F>ʺ<EFBFBD>
|
|||
|
//CHAR_getChar( chara_index, CHAR_NAME);
|
|||
|
snprintf( line, sizeof( line), "<EFBFBD><EFBFBD>%d<><64><EFBFBD>ҵ<EFBFBD>[%s]<5D><><EFBFBD>ʺ<EFBFBD><CABA><EFBFBD>[%s]",getnum,szName,cdkey);
|
|||
|
CHAR_talkToCli( charaindex, -1,line, CHAR_COLORRED);
|
|||
|
print("<EFBFBD><EFBFBD>%d<><64><EFBFBD>ҵ<EFBFBD>[%s]<5D><><EFBFBD>ʺ<EFBFBD><CABA><EFBFBD>[%s]\n",getnum,szName,cdkey);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
if(!getnum) CHAR_talkToCli( charaindex, -1, " Χ<><CEA7>û<EFBFBD><C3BB><EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _DEF_NEWSEND
|
|||
|
void CHAR_CHAT_DEBUG_newsend(int charindex ,char *message)
|
|||
|
{
|
|||
|
char buf[256];
|
|||
|
char token[100];
|
|||
|
char szName[256];
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
char line[256];
|
|||
|
char say[128];
|
|||
|
int fl,x,y,i;
|
|||
|
unsigned int MAX_USER=0;
|
|||
|
MAX_USER=getFdnum();
|
|||
|
if( strlen(message)==0){
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ-> FLOOR X Y <20><>/Ҫ˵<D2AA>Ļ<EFBFBD>");
|
|||
|
CHAR_talkToCli( charindex, -1,buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
easyGetTokenFromString( message , 1 , token, sizeof(token));
|
|||
|
if( strlen(token)==0){
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ--><3E><>ͼ<EFBFBD><CDBC><EFBFBD><EFBFBD>");
|
|||
|
CHAR_talkToCli( charindex, -1,buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
fl=atoi( token );
|
|||
|
easyGetTokenFromString( message , 2 , token, sizeof(token));
|
|||
|
if( strlen(token)==0){
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ-->X<><58><EFBFBD><EFBFBD> ");
|
|||
|
CHAR_talkToCli( charindex, -1,buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
x = atoi( token );
|
|||
|
easyGetTokenFromString( message , 3 , token, sizeof(token));
|
|||
|
if( strlen(token)==0){
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ-->Y<><59><EFBFBD><EFBFBD> ");
|
|||
|
CHAR_talkToCli( charindex, -1,buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
y = atoi( token );
|
|||
|
easyGetTokenFromString( message , 4 , token, sizeof(token));
|
|||
|
if( strlen(token)==0){
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ--><3E>ʺ<EFBFBD>");
|
|||
|
CHAR_talkToCli( charindex, -1,buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
easyGetTokenFromString( message , 5 , say , sizeof(say));
|
|||
|
|
|||
|
for(i=0;i<MAX_USER;i++){
|
|||
|
int i_use,fd_charaindex;
|
|||
|
i_use=CONNECT_getUse(i);
|
|||
|
if(i_use){
|
|||
|
CONNECT_getCharname( i, szName, sizeof( szName ) );
|
|||
|
CONNECT_getCdkey( i, cdkey, sizeof( cdkey ));
|
|||
|
if(strcmp(token,cdkey)==0){
|
|||
|
fd_charaindex = CONNECT_getCharaindex( i );
|
|||
|
CHAR_warpToSpecificPoint(fd_charaindex, fl, x, y);
|
|||
|
snprintf( line, sizeof( line),
|
|||
|
"<EFBFBD><EFBFBD> name:%s account=%s <20><><EFBFBD>͵<EFBFBD> FL=%d X=%d Y=%d say:%s",
|
|||
|
szName,cdkey,fl,x,y,say);
|
|||
|
CHAR_talkToCli( charindex, -1 , line , CHAR_COLORWHITE );
|
|||
|
if(strlen(say)){
|
|||
|
CHAR_talkToCli( fd_charaindex, -1 , say, CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _DEF_SUPERSEND
|
|||
|
void CHAR_CHAT_DEBUG_supersend(int charaindex ,char *message)
|
|||
|
{
|
|||
|
char buf[256];
|
|||
|
char token[100];
|
|||
|
char name[CHARNAMELEN],szName[CHARNAMELEN];
|
|||
|
char cdkey[CDKEYLEN],cdkeytoken[CDKEYLEN];
|
|||
|
char line[256];
|
|||
|
char say[128];
|
|||
|
int tofl,toX,toY,i,j,k,area;
|
|||
|
OBJECT object;
|
|||
|
int fl,x,y,fd,fd_charaindex; //<2F>ʺ<EFBFBD><CABA><EFBFBD><EFBFBD><EFBFBD>λ<EFBFBD><CEBB>
|
|||
|
unsigned int MAX_USER=0;
|
|||
|
int sendnum = 0;
|
|||
|
int o,chara_index;
|
|||
|
|
|||
|
|
|||
|
if( strlen(message)==0){
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ-> FLOOR X Y <20>ʺ<EFBFBD> <20><><EFBFBD><EFBFBD> <20><>/Ҫ˵<D2AA>Ļ<EFBFBD>");
|
|||
|
CHAR_talkToCli( charaindex, -1,buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
easyGetTokenFromString( message , 1 , token, sizeof(token));
|
|||
|
if( strlen(token)==0){
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ--><3E><>ͼ<EFBFBD><CDBC><EFBFBD><EFBFBD>");
|
|||
|
CHAR_talkToCli( charaindex, -1,buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
tofl=atoi( token );
|
|||
|
easyGetTokenFromString( message , 2 , token, sizeof(token));
|
|||
|
if( strlen(token)==0){
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ-->X<><58><EFBFBD><EFBFBD> ");
|
|||
|
CHAR_talkToCli( charaindex, -1,buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
toX = atoi( token );
|
|||
|
easyGetTokenFromString( message , 3 , token, sizeof(token));
|
|||
|
if( strlen(token)==0){
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ-->Y<><59><EFBFBD><EFBFBD> ");
|
|||
|
CHAR_talkToCli( charaindex, -1,buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
toY = atoi( token );
|
|||
|
easyGetTokenFromString( message , 4 , cdkeytoken , sizeof(cdkeytoken));
|
|||
|
if( strlen(cdkeytoken)==0){
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ--><3E>ʺ<EFBFBD>");
|
|||
|
CHAR_talkToCli( charaindex, -1,buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
easyGetTokenFromString( message , 5 , token, sizeof(token));
|
|||
|
area = atoi( token );
|
|||
|
if( strlen(token)==0 || area <= 0 || area > 3 ){
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ--><3E><><EFBFBD><EFBFBD>(1~3)");
|
|||
|
CHAR_talkToCli( charaindex, -1,buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
easyGetTokenFromString( message , 6 , say , sizeof(say)); //˵<><CBB5>
|
|||
|
|
|||
|
MAX_USER=getFdnum();
|
|||
|
for(k=0;k<MAX_USER;k++){
|
|||
|
int i_use;
|
|||
|
i_use=CONNECT_getUse(k);
|
|||
|
if(i_use){
|
|||
|
CONNECT_getCdkey( k, cdkey, sizeof( cdkey ));
|
|||
|
if(strcmp(cdkey,cdkeytoken)==0){
|
|||
|
fd_charaindex = CONNECT_getCharaindex( k );
|
|||
|
CONNECT_getCharname( k , name, sizeof( name ) );
|
|||
|
fl=CHAR_getInt( fd_charaindex, CHAR_FLOOR );
|
|||
|
x=CHAR_getInt( fd_charaindex, CHAR_X );
|
|||
|
y=CHAR_getInt( fd_charaindex, CHAR_Y );
|
|||
|
for(i=y-area;i<=y+area;i++){
|
|||
|
for(j=x-area;j<=x+area;j++){
|
|||
|
object = MAP_getTopObj(fl,j,i);
|
|||
|
while(object){
|
|||
|
o = GET_OBJINDEX(object);
|
|||
|
if( OBJECT_getType(o) == OBJTYPE_CHARA ){
|
|||
|
chara_index=OBJECT_getIndex(o);
|
|||
|
if( CHAR_getInt( chara_index, CHAR_WHICHTYPE) == CHAR_TYPEPLAYER ){
|
|||
|
//if( chara_index == charaindex ) continue; //<2F>ҵ<EFBFBD><D2B5>Լ<EFBFBD><D4BC><EFBFBD>
|
|||
|
if( ( fd = getfdFromCharaIndex(chara_index) ) != -1 ){
|
|||
|
sendnum++;
|
|||
|
CONNECT_getCharname( fd, szName, sizeof( szName ) ); //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
CHAR_warpToSpecificPoint( chara_index, tofl, toX, toY);
|
|||
|
snprintf(line,sizeof( line),"<EFBFBD><EFBFBD>%d<><64><EFBFBD><EFBFBD><EFBFBD><EFBFBD>[%s]",sendnum,szName);
|
|||
|
CHAR_talkToCli( charaindex, -1,line, CHAR_COLORWHITE);
|
|||
|
if(strlen(say))
|
|||
|
CHAR_talkToCli( chara_index, -1 , say , CHAR_COLORYELLOW );
|
|||
|
object = MAP_getTopObj(fl,j,i);
|
|||
|
continue;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
object = NEXT_OBJECT(object);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
if(sendnum<=1) CHAR_talkToCli( charaindex, -1, " Χ<><CEA7>û<EFBFBD>б<EFBFBD><D0B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
snprintf( line, sizeof( line),"<EFBFBD><EFBFBD> name:%s account=%s <20><>Χ%d<><64><EFBFBD>ڵ<EFBFBD><DAB5><EFBFBD><EFBFBD>ҹ<EFBFBD>%d<><64><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD> FL=%d X=%d Y=%d",
|
|||
|
name,cdkey,area,sendnum,tofl,toX,toY);
|
|||
|
CHAR_talkToCli( charaindex, -1 , line , CHAR_COLORYELLOW );
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _FONT_SIZE
|
|||
|
void CHAR_CHAT_DEBUG_fsize( int charaindex, char* message )
|
|||
|
{
|
|||
|
int i;
|
|||
|
char fsize[15];
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
char token[128];
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
easyGetTokenFromString( message , 1 , fsize, sizeof(fsize));
|
|||
|
easyGetTokenFromString( message , 2 , cdkey, sizeof(cdkey));
|
|||
|
if(strlen(cdkey)>0){
|
|||
|
for(i=0;i<playernum;i++){
|
|||
|
if(CHAR_CHECKINDEX(i) == FALSE) continue;
|
|||
|
if(!strcmp( CHAR_getChar( i, CHAR_CDKEY), cdkey))
|
|||
|
{
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if (i>=playernum)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD>˺Ų<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~", CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
CHAR_setWorkInt( i, CHAR_WORKFONTSIZE, atoi( fsize ));
|
|||
|
//CHAR_send_P_StatusString( charaindex , CHAR_P_STRING_LV);
|
|||
|
sprintf( token, "[GM]%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!", CHAR_getChar( charaindex, CHAR_NAME),atoi(fsize));
|
|||
|
CHAR_talkToCli( i, -1, token, CHAR_COLORYELLOW );
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!", CHAR_getChar( i, CHAR_NAME),(int)atoi(fsize));
|
|||
|
CHAR_talkToCli( charaindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}else{
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKFONTSIZE, atoi( fsize ));
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ%d!",(int)atoi(fsize));
|
|||
|
CHAR_talkToCli( charaindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _JOBDAILY
|
|||
|
void CHAR_CHAT_DEBUG_rejobdaily(int charaindex ,char *message)
|
|||
|
{
|
|||
|
print("Reading Jobdaily File...");
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD>¶<EFBFBD>ȡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>־<EFBFBD>б<EFBFBD>...", CHAR_COLORYELLOW);
|
|||
|
if(!LoadJobdailyfile()){
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD>ȡʧ<EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
print("fail!!\n");
|
|||
|
return;
|
|||
|
}
|
|||
|
print("done\n");
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD>ȡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _CREATE_MM_1_2
|
|||
|
void CHAR_CHAT_DEBUG_MM( int charaindex , char *message )
|
|||
|
{
|
|||
|
int ret;
|
|||
|
int enemynum;
|
|||
|
int enemyid;
|
|||
|
int index;
|
|||
|
int i,j;
|
|||
|
int work[4]={50,50,50,50};
|
|||
|
int LevelUpPoint;
|
|||
|
char buf[10];
|
|||
|
//char cdkey[CDKEYLEN];
|
|||
|
char token[128];
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
easyGetTokenFromString( message , 1 , buf, sizeof(buf));
|
|||
|
index=atoi(buf);
|
|||
|
//easyGetTokenFromString( message , 2 , cdkey, sizeof(cdkey));
|
|||
|
if(index==1)enemyid=1479;
|
|||
|
else if(index==2)enemyid=2547;
|
|||
|
else{
|
|||
|
CHAR_talkToCli( charaindex, -1, "Ŀǰֻ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>1/2<><32><EFBFBD><EFBFBD><EFBFBD>ٷ<EFBFBD><D9B7><EFBFBD>!", CHAR_COLORYELLOW );
|
|||
|
return;}
|
|||
|
|
|||
|
// if(strlen(cdkey)>0){
|
|||
|
// for(j=0;j<playernum;j++){
|
|||
|
// if(CHAR_CHECKINDEX(j) == FALSE) continue;
|
|||
|
// if(!strcmp( CHAR_getChar( j, CHAR_CDKEY), cdkey))
|
|||
|
// {
|
|||
|
// break;
|
|||
|
// }
|
|||
|
// }
|
|||
|
// if (j>=playernum)
|
|||
|
// {
|
|||
|
// CHAR_talkToCli( charaindex, -1, "<22><><EFBFBD>˺Ų<CBBA><C5B2><EFBFBD><EFBFBD><EFBFBD>~", CHAR_COLORYELLOW );
|
|||
|
// return;
|
|||
|
// }
|
|||
|
// enemynum = ENEMY_getEnemyNum();
|
|||
|
// for( i = 0; i < enemynum; i ++ ) {
|
|||
|
// if( ENEMY_getInt( i, ENEMY_ID) == enemyid) {
|
|||
|
// break;
|
|||
|
// }
|
|||
|
// }
|
|||
|
// if( i == enemynum )return;
|
|||
|
//
|
|||
|
// ret = ENEMY_createPetFromEnemyIndex( j, i);
|
|||
|
// if( !CHAR_CHECKINDEX( ret))return;
|
|||
|
// snprintf( token,sizeof( token), "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ʒ%d<><64><EFBFBD><EFBFBD><EFBFBD>ٷ<EFBFBD><D9B7>ųɹ<C5B3>!",index);
|
|||
|
// CHAR_talkToCli( charaindex, -1, token, CHAR_COLORWHITE);
|
|||
|
// sprintf( token, "[GM]%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֻ<EFBFBD><D6BB>Ʒ%d<><64><EFBFBD><EFBFBD><EFBFBD>ٷ<EFBFBD><D9B7>Ÿ<EFBFBD><C5B8><EFBFBD>!", CHAR_getChar( charaindex, CHAR_NAME),index);
|
|||
|
// CHAR_talkToCli( j, -1, token, CHAR_COLORYELLOW );
|
|||
|
// sprintf( token, "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֻ<EFBFBD><D6BB>Ʒ%d<><64><EFBFBD><EFBFBD><EFBFBD>ٷ<EFBFBD><D9B7><EFBFBD>!", CHAR_getChar( j, CHAR_NAME),index);
|
|||
|
// CHAR_talkToCli( charaindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
// for( i = 0; i < CHAR_MAXPETHAVE; i ++ ){
|
|||
|
// if( CHAR_getCharPet( j, i ) == ret )break;
|
|||
|
// }
|
|||
|
// if( i == CHAR_MAXPETHAVE )return;
|
|||
|
//
|
|||
|
// CHAR_setInt(ret,CHAR_VARIABLEAI,10000);
|
|||
|
// snprintf( token, sizeof( token ), "K%d", i );
|
|||
|
// CHAR_sendStatusString( j, token );
|
|||
|
// snprintf( token, sizeof( token ), "W%d", i );
|
|||
|
// CHAR_sendStatusString( j, token );
|
|||
|
// int k;
|
|||
|
// LevelUpPoint = ( work[3]<< 24) + ( work[0]<< 16) + ( work[1]<< 8) + ( work[2]<< 0);
|
|||
|
// CHAR_setInt( ret, CHAR_ALLOCPOINT, LevelUpPoint);
|
|||
|
// for( k = 1; k < 79; k ++ ){ //<2F><><EFBFBD><EFBFBD>
|
|||
|
// LevelUpPoint = ( work[3]<< 24) + ( work[0]<< 16) + ( work[1]<< 8) + ( work[2]<< 0);
|
|||
|
// CHAR_setInt( ret, CHAR_ALLOCPOINT, LevelUpPoint);
|
|||
|
// CHAR_PetLevelUp( ret );
|
|||
|
// CHAR_PetAddVariableAi( ret, AI_FIX_PETLEVELUP );
|
|||
|
// CHAR_setInt( ret , CHAR_HP ,CHAR_getWorkInt( ret, CHAR_WORKMAXHP ) );
|
|||
|
// CHAR_setInt( ret , CHAR_MP ,CHAR_getWorkInt( ret, CHAR_WORKMAXMP ) );
|
|||
|
// CHAR_complianceParameter( ret );
|
|||
|
// snprintf( token, sizeof( token ), "K%d", i );
|
|||
|
// CHAR_sendStatusString( j, token );
|
|||
|
// snprintf( token, sizeof( token ), "W%d", i );
|
|||
|
// CHAR_sendStatusString( j, token );
|
|||
|
// }
|
|||
|
// CHAR_setInt( ret , CHAR_HP ,CHAR_getWorkInt( ret, CHAR_WORKMAXHP ) );
|
|||
|
// CHAR_setInt( ret , CHAR_MP ,CHAR_getWorkInt( ret, CHAR_WORKMAXMP ) );
|
|||
|
// CHAR_complianceParameter( ret );
|
|||
|
// snprintf( token, sizeof( token ), "K%d", i );
|
|||
|
// CHAR_sendStatusString( j, token );
|
|||
|
// snprintf( token, sizeof( token ), "W%d", i );
|
|||
|
// CHAR_sendStatusString( j, token );
|
|||
|
// }else
|
|||
|
{
|
|||
|
enemynum = ENEMY_getEnemyNum();
|
|||
|
for( i = 0; i < enemynum; i ++ ) {
|
|||
|
if( ENEMY_getInt( i, ENEMY_ID) == enemyid) {
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if( i == enemynum )return;
|
|||
|
|
|||
|
ret = ENEMY_createPetFromEnemyIndex(charaindex, i);
|
|||
|
if( !CHAR_CHECKINDEX( ret))return;
|
|||
|
snprintf( token,sizeof( token), "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ʒ%d<><64><EFBFBD><EFBFBD><EFBFBD>ٷ<EFBFBD><D9B7>ųɹ<C5B3>!",index);
|
|||
|
CHAR_talkToCli( charaindex, -1, token, CHAR_COLORWHITE);
|
|||
|
|
|||
|
for( i = 0; i < CHAR_MAXPETHAVE; i ++ ){
|
|||
|
if( CHAR_getCharPet( charaindex, i ) == ret )break;
|
|||
|
}
|
|||
|
if( i == CHAR_MAXPETHAVE )return;
|
|||
|
|
|||
|
CHAR_setInt(ret,CHAR_VARIABLEAI,10000);
|
|||
|
int k;
|
|||
|
LevelUpPoint = ( work[3]<< 24) + ( work[0]<< 16) + ( work[1]<< 8) + ( work[2]<< 0);
|
|||
|
CHAR_setInt( ret, CHAR_ALLOCPOINT, LevelUpPoint);
|
|||
|
for( k = 1; k < 79; k ++ ){ //<2F><><EFBFBD><EFBFBD>
|
|||
|
LevelUpPoint = ( work[3]<< 24) + ( work[0]<< 16) + ( work[1]<< 8) + ( work[2]<< 0);
|
|||
|
CHAR_setInt( ret, CHAR_ALLOCPOINT, LevelUpPoint);
|
|||
|
CHAR_PetLevelUp( ret );
|
|||
|
CHAR_PetAddVariableAi( ret, AI_FIX_PETLEVELUP );
|
|||
|
CHAR_setInt( ret, CHAR_LV, CHAR_getInt( ret, CHAR_LV) +1 );
|
|||
|
CHAR_setInt( ret , CHAR_HP ,CHAR_getWorkInt( ret, CHAR_WORKMAXHP ) );
|
|||
|
CHAR_setInt( ret , CHAR_MP ,CHAR_getWorkInt( ret, CHAR_WORKMAXMP ) );
|
|||
|
CHAR_complianceParameter( ret );
|
|||
|
snprintf( token, sizeof( token ), "K%d", i );
|
|||
|
CHAR_sendStatusString( charaindex, token );
|
|||
|
snprintf( token, sizeof( token ), "W%d", i );
|
|||
|
CHAR_sendStatusString( charaindex, token );
|
|||
|
}
|
|||
|
CHAR_setInt( ret , CHAR_HP ,CHAR_getWorkInt( ret, CHAR_WORKMAXHP ) );
|
|||
|
CHAR_setInt( ret , CHAR_MP ,CHAR_getWorkInt( ret, CHAR_WORKMAXMP ) );
|
|||
|
CHAR_complianceParameter( ret );
|
|||
|
snprintf( token, sizeof( token ), "K%d", i );
|
|||
|
CHAR_sendStatusString( charaindex, token );
|
|||
|
snprintf( token, sizeof( token ), "W%d", i );
|
|||
|
CHAR_sendStatusString( charaindex, token );
|
|||
|
}
|
|||
|
printf("%d\n",CHAR_getInt( ret, CHAR_HP ));
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _SendTo
|
|||
|
void CHAR_CHAT_DEBUG_Sendto( int charaindex , char *message )
|
|||
|
{
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
int i;
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
easyGetTokenFromString( message , 1 , cdkey, sizeof(cdkey));
|
|||
|
if(strlen(cdkey)>0){
|
|||
|
for(i=0;i<playernum;i++){
|
|||
|
if(CHAR_CHECKINDEX(i) == FALSE) continue;
|
|||
|
if(!strcmp( CHAR_getChar( i, CHAR_CDKEY), cdkey))
|
|||
|
{
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if (i>=playernum)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD>˺Ų<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~", CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
if(!strcmp(CHAR_getChar(i,CHAR_CDKEY),cdkey))
|
|||
|
{
|
|||
|
CHAR_DischargePartyNoMsg( charaindex);//<2F><>ɢ<EFBFBD>Ŷ<EFBFBD>
|
|||
|
int floor, x, y;
|
|||
|
char token[256];
|
|||
|
floor = CHAR_getInt( i, CHAR_FLOOR);
|
|||
|
x = CHAR_getInt( i, CHAR_X);
|
|||
|
y = CHAR_getInt( i, CHAR_Y);
|
|||
|
|
|||
|
CHAR_warpToSpecificPoint( charaindex, floor, x, y );
|
|||
|
sprintf( token, "<EFBFBD>Ѵ<EFBFBD><EFBFBD>͵<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73><EFBFBD>ߣ<EFBFBD>", CHAR_getChar( i, CHAR_NAME));
|
|||
|
CHAR_talkToCli( charaindex, -1, token, CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _GM_ITEM
|
|||
|
void CHAR_CHAT_DEBUG_GMFUNCTION( int charindex , char *message )
|
|||
|
{
|
|||
|
int i;
|
|||
|
char gmtime[4];
|
|||
|
char gmfunction[16];
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
char token[128];
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
easyGetTokenFromString( message , 1 , gmfunction, sizeof(gmfunction));
|
|||
|
easyGetTokenFromString( message , 2 , gmtime, sizeof(gmtime));
|
|||
|
easyGetTokenFromString( message , 3 , cdkey, sizeof(cdkey));
|
|||
|
if(strlen(cdkey)>0){
|
|||
|
for(i=0;i<playernum;i++){
|
|||
|
if(CHAR_CHECKINDEX(i) == FALSE) continue;
|
|||
|
if(!strcmp( CHAR_getChar( i, CHAR_CDKEY), cdkey))
|
|||
|
{
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if (i>=playernum)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD><EFBFBD>˺Ų<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~", CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
CHAR_setChar( i , CHAR_GMFUNCTION, gmfunction );
|
|||
|
CHAR_setInt( i , CHAR_GMTIME, atoi( gmtime ) );
|
|||
|
sprintf( token, "[GM]%s<><73><EFBFBD><EFBFBD>ʹ<EFBFBD><CAB9>%sȨ<73><C8A8>%d<><64>!",CHAR_getChar( charindex, CHAR_NAME), gmfunction, atoi( gmtime ));
|
|||
|
CHAR_talkToCli( i, -1, token, CHAR_COLORYELLOW );
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʹ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>鿴[help %s]<5D><><EFBFBD><EFBFBD>GM<47><4D><EFBFBD><EFBFBD>!",CHAR_getChar( charindex, CHAR_GMFUNCTION));
|
|||
|
CHAR_talkToCli( i, -1, token, CHAR_COLORYELLOW );
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%sʹ<73><CAB9>%sȨ<73><C8A8>%d<><64>!", CHAR_getChar( i, CHAR_NAME), gmfunction, atoi( gmtime ));
|
|||
|
CHAR_talkToCli( charindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}else{
|
|||
|
CHAR_setChar( charindex , CHAR_GMFUNCTION, gmfunction );
|
|||
|
CHAR_setInt( charindex , CHAR_GMTIME, atoi( gmtime ) );
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʹ<EFBFBD><EFBFBD>%sȨ<73><C8A8>%d<><64>!", gmfunction,atoi( gmtime ));
|
|||
|
CHAR_talkToCli( charindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _GM_RIDE
|
|||
|
void CHAR_CHAT_DEBUG_SETRIDE( int charindex , char *message )
|
|||
|
{
|
|||
|
int i,rideindex;
|
|||
|
char buf[16];
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
char token[128];
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
easyGetTokenFromString( message , 1 , buf, sizeof(buf));
|
|||
|
rideindex=atoi(buf);
|
|||
|
easyGetTokenFromString( message , 2 , cdkey, sizeof(cdkey));
|
|||
|
if(rideindex<1 || rideindex>12)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charindex, -1,"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ű<EFBFBD><EFBFBD><EFBFBD>Ϊ1~12", CHAR_COLORRED );
|
|||
|
return;
|
|||
|
}
|
|||
|
typedef struct{
|
|||
|
char name[CHARNAMELEN];
|
|||
|
int Code;
|
|||
|
}tagNewRideCode;
|
|||
|
tagNewRideCode NewRides[12]={
|
|||
|
{ "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", RIDE_PET0},
|
|||
|
{ "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ħ<EFBFBD><EFBFBD>˹", RIDE_PET1},
|
|||
|
{ "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˹", RIDE_PET2},
|
|||
|
{ "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>³<EFBFBD><EFBFBD>", RIDE_PET3},
|
|||
|
{ "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˹", RIDE_PET4},
|
|||
|
{ "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>³<EFBFBD><EFBFBD>˹", RIDE_PET5},
|
|||
|
{ "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", RIDE_PET6},
|
|||
|
{ "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", RIDE_PET7},
|
|||
|
{ "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˹", RIDE_PET8},
|
|||
|
{ "<EFBFBD>Ͷ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", RIDE_PET9},
|
|||
|
{ "ʷ<EFBFBD><EFBFBD>³", RIDE_PET10},
|
|||
|
{ "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", RIDE_PET11}
|
|||
|
};
|
|||
|
if(strlen(cdkey)>0){
|
|||
|
for(i=0;i<playernum;i++){
|
|||
|
if(CHAR_CHECKINDEX(i) == FALSE) continue;
|
|||
|
if(!strcmp( CHAR_getChar( i, CHAR_CDKEY), cdkey))
|
|||
|
{
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if (i>=playernum)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD><EFBFBD>˺Ų<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~", CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
int LRCode = CHAR_getInt( i, CHAR_LOWRIDEPETS);
|
|||
|
|
|||
|
LRCode = LRCode|NewRides[rideindex-1].Code;
|
|||
|
CHAR_setInt( i, CHAR_LOWRIDEPETS, LRCode);
|
|||
|
|
|||
|
sprintf( token, "[GM]%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73><EFBFBD>ʸ<EFBFBD>!",CHAR_getChar( charindex, CHAR_NAME), NewRides[rideindex-1].name);
|
|||
|
CHAR_talkToCli( i, -1, token, CHAR_COLORYELLOW );
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73><EFBFBD>ʸ<EFBFBD>!", CHAR_getChar( i, CHAR_NAME), NewRides[rideindex-1].name);
|
|||
|
CHAR_talkToCli( charindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}else{
|
|||
|
int LRCode = CHAR_getInt( charindex, CHAR_LOWRIDEPETS);
|
|||
|
LRCode = LRCode|NewRides[rideindex-1].Code;
|
|||
|
CHAR_setInt( charindex, CHAR_LOWRIDEPETS, LRCode);
|
|||
|
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73><EFBFBD>ʸ<EFBFBD>!", NewRides[rideindex-1].name);
|
|||
|
CHAR_talkToCli( charindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
CHAR_sendStatusString( charindex, "x");
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_MVRIDE( int charindex , char *message )
|
|||
|
{
|
|||
|
int i,rideindex;
|
|||
|
char buf[16];
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
char token[128];
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
easyGetTokenFromString( message , 1 , buf, sizeof(buf));
|
|||
|
rideindex=atoi(buf);
|
|||
|
easyGetTokenFromString( message , 2 , cdkey, sizeof(cdkey));
|
|||
|
if(rideindex<1 || rideindex>12)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charindex, -1,"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ű<EFBFBD><EFBFBD><EFBFBD>Ϊ1~12", CHAR_COLORRED );
|
|||
|
return;
|
|||
|
}
|
|||
|
typedef struct{
|
|||
|
char name[CHARNAMELEN];
|
|||
|
int Code;
|
|||
|
}tagNewRideCode;
|
|||
|
tagNewRideCode NewRides[]={
|
|||
|
{ "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", RIDE_PET0},
|
|||
|
{ "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ħ<EFBFBD><EFBFBD>˹", RIDE_PET1},
|
|||
|
{ "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˹", RIDE_PET2},
|
|||
|
{ "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>³<EFBFBD><EFBFBD>", RIDE_PET3},
|
|||
|
{ "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˹", RIDE_PET4},
|
|||
|
{ "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>³<EFBFBD><EFBFBD>˹", RIDE_PET5},
|
|||
|
{ "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", RIDE_PET6},
|
|||
|
{ "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", RIDE_PET7},
|
|||
|
{ "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˹", RIDE_PET8},
|
|||
|
{ "<EFBFBD>Ͷ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", RIDE_PET9},
|
|||
|
{ "ʷ<EFBFBD><EFBFBD>³", RIDE_PET10},
|
|||
|
{ "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", RIDE_PET11}
|
|||
|
};
|
|||
|
if(strlen(cdkey)>0){
|
|||
|
for(i=0;i<playernum;i++){
|
|||
|
if(CHAR_CHECKINDEX(i) == FALSE) continue;
|
|||
|
if(!strcmp( CHAR_getChar( i, CHAR_CDKEY), cdkey))
|
|||
|
{
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if (i>=playernum)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD><EFBFBD>˺Ų<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~", CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
int LRCode = CHAR_getInt( i, CHAR_LOWRIDEPETS);
|
|||
|
|
|||
|
LRCode = LRCode^NewRides[rideindex-1].Code;
|
|||
|
CHAR_setInt( i, CHAR_LOWRIDEPETS, LRCode);
|
|||
|
|
|||
|
sprintf( token, "[GM]%s<>Ƴ<EFBFBD><C6B3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73><EFBFBD>ʸ<EFBFBD>!",CHAR_getChar( charindex, CHAR_NAME), NewRides[rideindex-1].name);
|
|||
|
CHAR_talkToCli( i, -1, token, CHAR_COLORYELLOW );
|
|||
|
sprintf( token, "<EFBFBD>Ƴ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73><EFBFBD>ʸ<EFBFBD>!!", CHAR_getChar( i, CHAR_NAME), NewRides[rideindex-1].name);
|
|||
|
CHAR_talkToCli( charindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}else{
|
|||
|
int LRCode = CHAR_getInt( charindex, CHAR_LOWRIDEPETS);
|
|||
|
LRCode = LRCode^NewRides[rideindex-1].Code;
|
|||
|
CHAR_setInt( charindex, CHAR_LOWRIDEPETS, LRCode);
|
|||
|
|
|||
|
sprintf( token, "<EFBFBD>Ƴ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73><EFBFBD>ʸ<EFBFBD>!", NewRides[rideindex-1].name);
|
|||
|
CHAR_talkToCli( charindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
CHAR_sendStatusString( charindex, "x");
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _LOCK_IP
|
|||
|
void CHAR_CHAT_DEBUG_ADD_LOCK( int charindex , char *message )
|
|||
|
{
|
|||
|
sasql_add_lock(message);
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_DEL_LOCK( int charindex , char *message )
|
|||
|
{
|
|||
|
sasql_del_lock(message);
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_SHOWIP( int charindex , char *message )
|
|||
|
{
|
|||
|
int MAX_USER = getFdnum();
|
|||
|
int i;
|
|||
|
char token[64];
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
if(strlen(message)>0){
|
|||
|
for(i=0;i<MAX_USER;i++){
|
|||
|
int i_use;
|
|||
|
i_use=CONNECT_getUse(i);
|
|||
|
if(i_use){
|
|||
|
CONNECT_getCdkey( i, cdkey, sizeof( cdkey ));
|
|||
|
if(!strcmp( cdkey, message))
|
|||
|
{
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
if (i>=MAX_USER)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD><EFBFBD>˺Ų<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~", CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
unsigned long ip;
|
|||
|
int a,b,c,d;
|
|||
|
// Arminius: limit ip
|
|||
|
ip=CONNECT_get_userip(i);
|
|||
|
|
|||
|
a=(ip % 0x100); ip=ip / 0x100;
|
|||
|
b=(ip % 0x100); ip=ip / 0x100;
|
|||
|
c=(ip % 0x100); ip=ip / 0x100;
|
|||
|
d=(ip % 0x100);
|
|||
|
sprintf( token, "<EFBFBD>˺<EFBFBD>%s<><73>IP<49><50> %d.%d.%d.%d",message, a,b,c,d);
|
|||
|
CHAR_talkToCli( charindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_SET_FAME( int charaindex, char* message )
|
|||
|
{
|
|||
|
char szMsg[32],szBuf[16],buf[128],cdkey[CDKEYLEN];
|
|||
|
int i,id,fd,iPlayerNum = CHAR_getPlayerMaxNum();
|
|||
|
|
|||
|
getStringFromIndexWithDelim(message," ",1,cdkey,sizeof(cdkey));
|
|||
|
getStringFromIndexWithDelim(message," ",2,szBuf,sizeof(szBuf));
|
|||
|
id = atoi(szBuf);
|
|||
|
for(i=0;i<iPlayerNum;i++){
|
|||
|
if(CHAR_getCharUse(i) != FALSE){
|
|||
|
if(!strcmp(CHAR_getChar(i,CHAR_CDKEY),cdkey)) break;
|
|||
|
}
|
|||
|
}
|
|||
|
if(i >= iPlayerNum){
|
|||
|
CHAR_talkToCli(charaindex,-1,"<EFBFBD>Ҳ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>",CHAR_COLORYELLOW);
|
|||
|
return;
|
|||
|
}
|
|||
|
CHAR_setInt(i,CHAR_FAME,id);
|
|||
|
sprintf(szMsg,"Ŀǰ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֵ: %d",CHAR_getInt(i,CHAR_FAME)/100);
|
|||
|
CHAR_talkToCli(charaindex,-1,szMsg,CHAR_COLORYELLOW);
|
|||
|
sprintf(buf,"%d",id);
|
|||
|
fd = getfdFromCharaIndex(i);
|
|||
|
saacproto_ACFixFMData_send(acfd,
|
|||
|
CHAR_getChar(i,CHAR_FMNAME),CHAR_getInt(i,CHAR_FMINDEX),CHAR_getWorkInt(i,CHAR_WORKFMINDEXI),
|
|||
|
FM_FIX_FMFEED,buf,"",CHAR_getWorkInt(i,CHAR_WORKFMCHARINDEX),CONNECT_getFdid(fd));
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
#ifdef _AUTO_PK
|
|||
|
void CHAR_CHAT_DEBUG_SET_AUTOPK( int charaindex, char* message )
|
|||
|
{
|
|||
|
char szMsg[256];
|
|||
|
#ifdef _JOB_AUTOPK
|
|||
|
char buf1[2];
|
|||
|
char buf2[10];
|
|||
|
easyGetTokenFromString( message , 1 , buf1, sizeof(buf1));
|
|||
|
easyGetTokenFromString( message , 2 , buf2, sizeof(buf2));
|
|||
|
jobautopk = atoi(buf1);
|
|||
|
sprintf(szMsg,"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>PKʱ<EFBFBD><EFBFBD>Ϊ%d<><64><EFBFBD><EFBFBD>!",atoi(buf2));
|
|||
|
CHAR_talkToCli(charaindex,-1,szMsg,CHAR_COLORYELLOW);
|
|||
|
AutoPk_PKTimeSet(atoi(buf2));
|
|||
|
AutoPk_GetAwardStr();
|
|||
|
#else
|
|||
|
sprintf(szMsg,"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>PKʱ<EFBFBD><EFBFBD>Ϊ%d<><64><EFBFBD><EFBFBD>!",atoi(message));
|
|||
|
CHAR_talkToCli(charaindex,-1,szMsg,CHAR_COLORYELLOW);
|
|||
|
AutoPk_PKTimeSet(atoi(message));
|
|||
|
AutoPk_GetAwardStr();
|
|||
|
#endif
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PLAYER_NUM
|
|||
|
void CHAR_CHAT_DEBUG_SET_PLAYERNUM( int charaindex, char* message )
|
|||
|
{
|
|||
|
setPlayerNum(atoi(message));
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _RELOAD_CF
|
|||
|
void CHAR_CHAT_DEBUG_SET_RELOADCF( int charaindex, char* message )
|
|||
|
{
|
|||
|
if(readconfigfile(getConfigfilename()))
|
|||
|
CHAR_talkToCli(charaindex,-1,"OK",CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _TRANS
|
|||
|
void CHAR_CHAT_DEBUG_Trans( int charaindex, char *message)
|
|||
|
{
|
|||
|
int i;
|
|||
|
int Trans;
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
char token[128];
|
|||
|
int vital, str, tgh, dex;
|
|||
|
int quest , level ,equ;
|
|||
|
int t_quest, t_level;
|
|||
|
int total,ans;
|
|||
|
int work[10];
|
|||
|
float tmp,lvup;
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
easyGetTokenFromString( message , 1 , cdkey, sizeof(cdkey));
|
|||
|
if(strlen(cdkey)>0){
|
|||
|
for(i=0;i<playernum;i++){
|
|||
|
if(CHAR_CHECKINDEX(i) == FALSE) continue;
|
|||
|
if(!strcmp( CHAR_getChar( i, CHAR_CDKEY), cdkey))
|
|||
|
{
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if (i>=playernum)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD>˺Ų<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~", CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
Trans=CHAR_getInt(i,CHAR_TRANSMIGRATION)+1;
|
|||
|
if(Trans>7 || CHAR_getInt(i,CHAR_LV)<80){
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ת<EFBFBD><EFBFBD><EFBFBD>ȼ<EFBFBD>С<EFBFBD><EFBFBD>80<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>[GM]%sΪ<73><CEAA>ת<EFBFBD><D7AA>ʧ<EFBFBD><CAA7>!", CHAR_getChar( charaindex, CHAR_NAME));
|
|||
|
CHAR_talkToCli( i, -1, token, CHAR_COLORYELLOW );
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73><EFBFBD><EFBFBD>ת<EFBFBD><D7AA><EFBFBD>ȼ<EFBFBD>С<EFBFBD><D0A1>80<38><30><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%dת<64><D7AA>ʧ<EFBFBD><CAA7>!", CHAR_getChar( i, CHAR_NAME),Trans);
|
|||
|
CHAR_talkToCli( charaindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}else{
|
|||
|
CHAR_sendCToArroundCharacter( CHAR_getWorkInt( i, CHAR_WORKOBJINDEX ));
|
|||
|
sprintf( token, "[GM]%sΪ<73><CEAA>ת<EFBFBD><D7AA>%dת!", CHAR_getChar( charaindex, CHAR_NAME),Trans);
|
|||
|
CHAR_talkToCli( i, -1, token, CHAR_COLORYELLOW );
|
|||
|
sprintf( token, "Ϊ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>%sת<73><D7AA>Ϊ%dת!", CHAR_getChar( i, CHAR_NAME),Trans);
|
|||
|
CHAR_talkToCli( charaindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
charaindex=i;
|
|||
|
}
|
|||
|
}else{
|
|||
|
Trans=CHAR_getInt(charaindex,CHAR_TRANSMIGRATION)+1;
|
|||
|
if(Trans>7 || CHAR_getInt(charaindex,CHAR_LV)<80){
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ת<EFBFBD><EFBFBD><EFBFBD>ȼ<EFBFBD>С<EFBFBD><EFBFBD>80<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ת<EFBFBD><EFBFBD>ʧ<EFBFBD><EFBFBD>!", CHAR_getChar( charaindex, CHAR_NAME));
|
|||
|
CHAR_talkToCli( charaindex, -1, token, CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}else{
|
|||
|
CHAR_sendCToArroundCharacter( CHAR_getWorkInt( charaindex, CHAR_WORKOBJINDEX ));
|
|||
|
sprintf( token, "Ϊ<EFBFBD>Լ<EFBFBD>ת<EFBFBD><EFBFBD>Ϊ%dת!",Trans);
|
|||
|
CHAR_talkToCli( charaindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
}
|
|||
|
#ifdef _ADD_POOL_ITEM // WON ADD <20><><EFBFBD>ӿɼķŵĵ<C5B5><C4B5><EFBFBD>
|
|||
|
int tran_pool_item[5] = { 4, 4, 4, 4, 4 }; // <20><><EFBFBD>ӵĵ<D3B5><C4B5>ķ<DFBC><C4B7><EFBFBD>
|
|||
|
int tran_pool_pet[5] = { 2, 2, 2, 2, 2}; // <20><><EFBFBD>ӵij<D3B5><C4B3><EFBFBD><EFBFBD>ķ<EFBFBD><C4B7><EFBFBD>
|
|||
|
int j,item_sum=0, pet_sum=0;
|
|||
|
|
|||
|
for(j=0; j<5 ;j++){
|
|||
|
item_sum += tran_pool_item[j] ;
|
|||
|
pet_sum += tran_pool_pet[j];
|
|||
|
}
|
|||
|
|
|||
|
item_sum += 10; // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļĵ<C4BC><C4B5><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
pet_sum += 5; // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļij<C4BC><C4B3><EFBFBD>
|
|||
|
|
|||
|
#endif
|
|||
|
NPC_TransmigrationStatus(charaindex, charaindex, work);
|
|||
|
NPC_TransmigrationFlg_CLS(charaindex, charaindex);
|
|||
|
CHAR_setInt(charaindex ,CHAR_TRANSMIGRATION, Trans);
|
|||
|
CHAR_setInt(charaindex, CHAR_LV ,1);
|
|||
|
CHAR_setMaxExp( charaindex, 0);
|
|||
|
CHAR_setInt( charaindex,CHAR_SKILLUPPOINT,CHAR_getInt( charaindex, CHAR_TRANSMIGRATION)*10);
|
|||
|
CHAR_Skillupsend( charaindex );
|
|||
|
CHAR_setInt( charaindex,CHAR_RIDEPET, -1 );
|
|||
|
CHAR_setInt( charaindex , CHAR_BASEIMAGENUMBER , CHAR_getInt( charaindex , CHAR_BASEBASEIMAGENUMBER) );
|
|||
|
CHAR_sendStatusString( charaindex , "P");
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _FUSIONBEIT_FIX
|
|||
|
void CHAR_CHAT_DEBUG_fusionbeit( int charaindex, char* message )
|
|||
|
{
|
|||
|
int petindex, petid, mylevel,i,j;
|
|||
|
char buf[10];
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
char token[128];
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
easyGetTokenFromString( message , 1 , buf, sizeof(buf));
|
|||
|
petid=atoi(buf)-1;
|
|||
|
easyGetTokenFromString( message , 2 , cdkey, sizeof(cdkey));
|
|||
|
if(strlen(cdkey)>0){
|
|||
|
for(i=0;i<playernum;i++){
|
|||
|
if(CHAR_CHECKINDEX(i) == FALSE) continue;
|
|||
|
if(!strcmp( CHAR_getChar( i, CHAR_CDKEY), cdkey))
|
|||
|
{
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if (i>=playernum)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD>˺Ų<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~", CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
petindex = CHAR_getCharPet( i, petid);
|
|||
|
if( !CHAR_CHECKINDEX( petindex) ){
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%d<><64>û<EFBFBD><C3BB><EFBFBD><EFBFBD>!", CHAR_getChar( i, CHAR_NAME),petid+1);
|
|||
|
CHAR_talkToCli( i, -1, token, CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
CHAR_setInt( petindex, CHAR_FUSIONBEIT ,0);
|
|||
|
sprintf( token, "[GM]%sΪ<73><CEAA><EFBFBD><EFBFBD><EFBFBD>ϵĵ<CFB5>%dֻ<64><D6BB>ȥ<EFBFBD><C8A5><EFBFBD>ںϳ<DABA><CFB3><EFBFBD><EFBFBD><EFBFBD>!", CHAR_getChar( charaindex, CHAR_NAME),petid+1);
|
|||
|
CHAR_talkToCli( i, -1, token, CHAR_COLORYELLOW );
|
|||
|
sprintf( token, "Ϊ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73><EFBFBD>ϵĵ<CFB5>%dֻ<64><D6BB>ȥ<EFBFBD><C8A5><EFBFBD>ںϳ<DABA><CFB3><EFBFBD><EFBFBD><EFBFBD>!", CHAR_getChar( i, CHAR_NAME),petid+1);
|
|||
|
CHAR_talkToCli( charaindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
snprintf( token, sizeof( token ), "K%d", petid );
|
|||
|
CHAR_sendStatusString( i, token );
|
|||
|
snprintf( token, sizeof( token ), "W%d", petid );
|
|||
|
CHAR_sendStatusString( i, token );
|
|||
|
|
|||
|
}else{
|
|||
|
petindex = CHAR_getCharPet( charaindex, petid);
|
|||
|
if( !CHAR_CHECKINDEX( petindex) ){
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD>ij<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%d<><64>û<EFBFBD><C3BB><EFBFBD><EFBFBD>!", petid+1);
|
|||
|
CHAR_talkToCli( i, -1, token, CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
CHAR_setInt( petindex, CHAR_FUSIONBEIT ,0);
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϵĵ<EFBFBD>%dֻ<64><D6BB>ȥ<EFBFBD><C8A5><EFBFBD>ںϳ<DABA><CFB3><EFBFBD><EFBFBD><EFBFBD>!", petid+1);
|
|||
|
CHAR_talkToCli( charaindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
CHAR_complianceParameter( petindex );
|
|||
|
snprintf( token, sizeof( token ), "K%d", petid );
|
|||
|
CHAR_sendStatusString( charaindex, token );
|
|||
|
snprintf( token, sizeof( token ), "W%d", petid );
|
|||
|
CHAR_sendStatusString( charaindex, token );
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _MAKE_PET_CF
|
|||
|
void CHAR_CHAT_DEBUG_petmakecf( int charaindex, char* message )
|
|||
|
{
|
|||
|
int enemynum;
|
|||
|
int enemyid;
|
|||
|
int i,j;
|
|||
|
int level=-1;
|
|||
|
int trans=0;
|
|||
|
float chengzhang=0.0;
|
|||
|
char buf[10],buf1[10];
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
char token[128];
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
easyGetTokenFromString( message , 1 , buf, sizeof(buf));
|
|||
|
enemyid=atoi(buf);
|
|||
|
easyGetTokenFromString( message , 2 , buf, sizeof(buf));
|
|||
|
getStringFromIndexWithDelim(buf,"/",1,buf1,sizeof(buf1));
|
|||
|
chengzhang=atof(buf1)-1.0;
|
|||
|
if(chengzhang>9.0)chengzhang=9.0;
|
|||
|
getStringFromIndexWithDelim(buf,"/",2,buf1,sizeof(buf1));
|
|||
|
level=atoi(buf1);
|
|||
|
getStringFromIndexWithDelim(buf,"/",3,buf1,sizeof(buf1));
|
|||
|
trans=atoi(buf1);
|
|||
|
easyGetTokenFromString( message , 3 , cdkey, sizeof(cdkey));
|
|||
|
|
|||
|
if(strlen(cdkey)>0){
|
|||
|
for(j=0;j<playernum;j++){
|
|||
|
if(CHAR_CHECKINDEX(j) == FALSE) continue;
|
|||
|
if(!strcmp( CHAR_getChar( j, CHAR_CDKEY), cdkey))
|
|||
|
{
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if (j>=playernum)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD>˺Ų<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~", CHAR_COLORYELLOW );
|
|||
|
return;
|
|||
|
}
|
|||
|
enemynum = ENEMY_getEnemyNum();
|
|||
|
for( i = 0; i < enemynum; i ++ ) {
|
|||
|
if( ENEMY_getInt( i, ENEMY_ID) == enemyid) {
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if( i == enemynum )return;
|
|||
|
|
|||
|
int petindex = ENEMY_createPetFromEnemyIndex( j, i);
|
|||
|
if( !CHAR_CHECKINDEX( petindex))return;
|
|||
|
CHAR_setInt(petindex,CHAR_VARIABLEAI,10000);
|
|||
|
sprintf( token, "[GM]%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73><EFBFBD><EFBFBD>!", CHAR_getChar( charaindex, CHAR_NAME),ENEMY_getChar( i, ENEMY_NAME));
|
|||
|
CHAR_talkToCli( j, -1, token, CHAR_COLORYELLOW );
|
|||
|
sprintf( token, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73>%s<><73><EFBFBD><EFBFBD><EFBFBD>ɹ<EFBFBD>!", CHAR_getChar( j, CHAR_NAME),ENEMY_getChar( i, ENEMY_NAME));
|
|||
|
CHAR_talkToCli( charaindex, -1,token, CHAR_COLORYELLOW );
|
|||
|
for( i = 0; i < CHAR_MAXPETHAVE; i ++ ){
|
|||
|
if( CHAR_getCharPet( j, i ) == petindex )break;
|
|||
|
}
|
|||
|
if( i == CHAR_MAXPETHAVE )return;
|
|||
|
|
|||
|
if( CHAR_CHECKINDEX( petindex ) == TRUE ){
|
|||
|
CHAR_setMaxExpFromLevel( petindex, CHAR_getInt(petindex, CHAR_LV ));
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
{
|
|||
|
|
|||
|
int vital=CHAR_getInt( petindex, CHAR_VITAL);
|
|||
|
int str=CHAR_getInt( petindex, CHAR_STR);
|
|||
|
int tough=CHAR_getInt( petindex, CHAR_TOUGH);
|
|||
|
int dex=CHAR_getInt( petindex, CHAR_DEX);
|
|||
|
int lv=CHAR_getInt( petindex, CHAR_LV);
|
|||
|
int LevelUpPoint = CHAR_getInt( petindex, CHAR_ALLOCPOINT );
|
|||
|
int work[4];
|
|||
|
float fRand, cvitl, cstr, ctough, cdex;
|
|||
|
float rnd=(rand()%5+95)/100.0;
|
|||
|
float Param[4] = { 0.0, 0.0, 0.0, 0.0 };
|
|||
|
work[3] =(( LevelUpPoint >> 24 ) & 0xFF);
|
|||
|
work[0] = (( LevelUpPoint >> 16 ) & 0xFF);
|
|||
|
work[1] = (( LevelUpPoint >> 8 ) & 0xFF);
|
|||
|
work[2] = (( LevelUpPoint >> 0 ) & 0xFF);
|
|||
|
struct _RankRandTbl{
|
|||
|
int min;
|
|||
|
int max;
|
|||
|
}RankRandTbl[] = {
|
|||
|
{ 450, 500 },
|
|||
|
{ 470, 520 },
|
|||
|
{ 490, 540 },
|
|||
|
{ 510, 560 },
|
|||
|
{ 530, 580 },
|
|||
|
{ 550, 600 },
|
|||
|
};
|
|||
|
int petrank = CHAR_getInt( petindex, CHAR_PETRANK );
|
|||
|
if( petrank < 0 || petrank > 5 ) petrank = 0;
|
|||
|
|
|||
|
int i;
|
|||
|
for(i=0;i<160;i++){
|
|||
|
fRand = (float)RAND( RankRandTbl[petrank].min, RankRandTbl[petrank].max ) * 0.01;
|
|||
|
cvitl += (float)work[3] * fRand + Param[0] * fRand;
|
|||
|
cstr += (float)work[0] * fRand + Param[1] * fRand;
|
|||
|
ctough += (float)work[1] * fRand + Param[2] * fRand;
|
|||
|
cdex += (float)work[2] * fRand + Param[3] * fRand;
|
|||
|
}
|
|||
|
|
|||
|
rnd=((cstr-str)/80.0/160.0+(ctough-tough)/80.0/160.0+(cdex-dex)/100.0/160.0);
|
|||
|
|
|||
|
work[3]*=(chengzhang/rnd);
|
|||
|
work[0]*=(chengzhang/rnd);
|
|||
|
work[1]*=(chengzhang/rnd);
|
|||
|
work[2]*=(chengzhang/rnd);
|
|||
|
|
|||
|
LevelUpPoint = ( work[3]<< 24) + ( work[0]<< 16) + ( work[1]<< 8) + ( work[2]<< 0);
|
|||
|
CHAR_setInt( petindex, CHAR_ALLOCPOINT, LevelUpPoint);
|
|||
|
|
|||
|
CHAR_setInt( petindex, CHAR_VITAL, vital);
|
|||
|
CHAR_setInt( petindex, CHAR_STR, str);
|
|||
|
CHAR_setInt( petindex, CHAR_TOUGH, tough);
|
|||
|
CHAR_setInt( petindex, CHAR_DEX, dex);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
if( level != -1 ){
|
|||
|
#ifdef _TRANS_LEVEL_CF
|
|||
|
if( level > getMaxLevel() ) level = getMaxLevel();
|
|||
|
#else
|
|||
|
if( level > 140 ) level = 140;
|
|||
|
#endif
|
|||
|
if( level < 0 ) level = 0;
|
|||
|
level = level - CHAR_getInt( petindex, CHAR_LV );
|
|||
|
if( level > 0 ){
|
|||
|
int k;
|
|||
|
for( k = 1; k <= level; k ++ ){ //<2F><><EFBFBD><EFBFBD>
|
|||
|
CHAR_PetLevelUp( petindex );
|
|||
|
CHAR_PetAddVariableAi( petindex, AI_FIX_PETLEVELUP );
|
|||
|
CHAR_setInt( petindex, CHAR_LV, CHAR_getInt( petindex, CHAR_LV) +1 );
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
CHAR_setInt( i, CHAR_HP, CHAR_getWorkInt( i, CHAR_WORKMAXHP ));
|
|||
|
CHAR_complianceParameter( petindex );
|
|||
|
snprintf( token, sizeof( token ), "K%d", i );
|
|||
|
CHAR_sendStatusString( j, token );
|
|||
|
snprintf( token, sizeof( token ), "W%d", i );
|
|||
|
CHAR_sendStatusString( j, token );
|
|||
|
}else{
|
|||
|
enemynum = ENEMY_getEnemyNum();
|
|||
|
for( i = 0; i < enemynum; i ++ ) {
|
|||
|
if( ENEMY_getInt( i, ENEMY_ID) == enemyid) {
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if( i == enemynum )return;
|
|||
|
|
|||
|
int petindex = ENEMY_createPetFromEnemyIndex(charaindex, i);
|
|||
|
if( !CHAR_CHECKINDEX( petindex))return;
|
|||
|
CHAR_setInt(petindex,CHAR_VARIABLEAI,10000);
|
|||
|
snprintf( token,sizeof( token), "%s<><73><EFBFBD><EFBFBD><EFBFBD>ɹ<EFBFBD>!",ENEMY_getChar( i, ENEMY_NAME));
|
|||
|
CHAR_talkToCli( charaindex, -1, token, CHAR_COLORWHITE);
|
|||
|
|
|||
|
for( i = 0; i < CHAR_MAXPETHAVE; i ++ ){
|
|||
|
if( CHAR_getCharPet( charaindex, i ) == petindex )break;
|
|||
|
}
|
|||
|
if( i == CHAR_MAXPETHAVE )return;
|
|||
|
|
|||
|
if( CHAR_CHECKINDEX( petindex ) == TRUE ){
|
|||
|
CHAR_setMaxExpFromLevel( petindex, CHAR_getInt( petindex, CHAR_LV ));
|
|||
|
}
|
|||
|
|
|||
|
{
|
|||
|
|
|||
|
int vital=CHAR_getInt( petindex, CHAR_VITAL);
|
|||
|
int str=CHAR_getInt( petindex, CHAR_STR);
|
|||
|
int tough=CHAR_getInt( petindex, CHAR_TOUGH);
|
|||
|
int dex=CHAR_getInt( petindex, CHAR_DEX);
|
|||
|
int lv=CHAR_getInt( petindex, CHAR_LV);
|
|||
|
int LevelUpPoint = CHAR_getInt( petindex, CHAR_ALLOCPOINT );
|
|||
|
int work[4];
|
|||
|
float fRand=0.0, cvitl=0.0, cstr=0.0, ctough=0.0, cdex=0.0;
|
|||
|
float rnd=0.0;
|
|||
|
float Param[4] = { 0.0, 0.0, 0.0, 0.0 };
|
|||
|
work[3] =(( LevelUpPoint >> 24 ) & 0xFF);
|
|||
|
work[0] = (( LevelUpPoint >> 16 ) & 0xFF);
|
|||
|
work[1] = (( LevelUpPoint >> 8 ) & 0xFF);
|
|||
|
work[2] = (( LevelUpPoint >> 0 ) & 0xFF);
|
|||
|
struct _RankRandTbl{
|
|||
|
int min;
|
|||
|
int max;
|
|||
|
}RankRandTbl[] = {
|
|||
|
{ 450, 500 },
|
|||
|
{ 470, 520 },
|
|||
|
{ 490, 540 },
|
|||
|
{ 510, 560 },
|
|||
|
{ 530, 580 },
|
|||
|
{ 550, 600 },
|
|||
|
};
|
|||
|
int petrank = CHAR_getInt( petindex, CHAR_PETRANK );
|
|||
|
if( petrank < 0 || petrank > 5 ) petrank = 0;
|
|||
|
|
|||
|
int i;
|
|||
|
for(i=0;i<160;i++){
|
|||
|
fRand = (float)RAND( RankRandTbl[petrank].min, RankRandTbl[petrank].max ) * 0.01;
|
|||
|
cvitl += (float)work[3] * fRand + Param[0] * fRand;
|
|||
|
cstr += (float)work[0] * fRand + Param[1] * fRand;
|
|||
|
ctough += (float)work[1] * fRand + Param[2] * fRand;
|
|||
|
cdex += (float)work[2] * fRand + Param[3] * fRand;
|
|||
|
}
|
|||
|
|
|||
|
rnd=((cstr-(float)str)/80.0/160.0+(ctough-(float)tough)/80.0/160.0+(cdex-(float)dex)/100.0/160.0);
|
|||
|
|
|||
|
printf("chengzhang:%f,chengzhang:%f\n",chengzhang,rnd);
|
|||
|
|
|||
|
work[3]*=(chengzhang/rnd);
|
|||
|
work[0]*=(chengzhang/rnd);
|
|||
|
work[1]*=(chengzhang/rnd);
|
|||
|
work[2]*=(chengzhang/rnd);
|
|||
|
|
|||
|
LevelUpPoint = ( work[3]<< 24) + ( work[0]<< 16) + ( work[1]<< 8) + ( work[2]<< 0);
|
|||
|
CHAR_setInt( petindex, CHAR_ALLOCPOINT, LevelUpPoint);
|
|||
|
|
|||
|
CHAR_setInt( petindex, CHAR_VITAL, vital);
|
|||
|
CHAR_setInt( petindex, CHAR_STR, str);
|
|||
|
CHAR_setInt( petindex, CHAR_TOUGH, tough);
|
|||
|
CHAR_setInt( petindex, CHAR_DEX, dex);
|
|||
|
|
|||
|
}
|
|||
|
if( level != -1 ){
|
|||
|
if( level > 200 )level = 200;
|
|||
|
if( level < 0 ) level = 0;
|
|||
|
level = level - CHAR_getInt( petindex, CHAR_LV );
|
|||
|
if( level > 0 ){
|
|||
|
int k;
|
|||
|
for( k = 1; k <= level; k ++ ){ //<2F><><EFBFBD><EFBFBD>
|
|||
|
CHAR_PetLevelUp( petindex );
|
|||
|
CHAR_PetAddVariableAi( petindex, AI_FIX_PETLEVELUP );
|
|||
|
CHAR_setInt( petindex, CHAR_LV, CHAR_getInt( petindex, CHAR_LV) +1 );
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
CHAR_setInt( petindex, CHAR_TRANSMIGRATION, trans);
|
|||
|
CHAR_setInt( petindex, CHAR_HP, CHAR_getWorkInt( petindex, CHAR_WORKMAXHP ));
|
|||
|
CHAR_complianceParameter( petindex );
|
|||
|
snprintf( token, sizeof( token ), "K%d", i );
|
|||
|
CHAR_sendStatusString( charaindex, token );
|
|||
|
snprintf( token, sizeof( token ), "W%d", i );
|
|||
|
CHAR_sendStatusString( charaindex, token );
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _MAKE_PET_ABILITY
|
|||
|
void CHAR_CHAT_DEBUG_petmakeabi( int charaindex, char* message )
|
|||
|
{
|
|||
|
int ret;
|
|||
|
int enemynum;
|
|||
|
int enemyid;
|
|||
|
int i,j;
|
|||
|
char buf[10];
|
|||
|
int vital,str,tough,dex,petlevel,pettrans;
|
|||
|
char token[128];
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
easyGetTokenFromString( message , 1 , buf, sizeof(buf));
|
|||
|
enemyid=atoi(buf);
|
|||
|
easyGetTokenFromString( message , 2 , buf, sizeof(buf));
|
|||
|
vital=atoi(buf);
|
|||
|
easyGetTokenFromString( message , 3 , buf, sizeof(buf));
|
|||
|
str=atoi(buf);
|
|||
|
easyGetTokenFromString( message , 4 , buf, sizeof(buf));
|
|||
|
tough=atoi(buf);
|
|||
|
easyGetTokenFromString( message , 5 , buf, sizeof(buf));
|
|||
|
dex=atoi(buf);
|
|||
|
easyGetTokenFromString( message , 6 , buf, sizeof(buf));
|
|||
|
petlevel=atoi(buf);
|
|||
|
easyGetTokenFromString( message , 7 , buf, sizeof(buf));
|
|||
|
pettrans=atoi(buf);
|
|||
|
|
|||
|
if( petlevel != -1 ){
|
|||
|
#ifdef _TRANS_LEVEL_CF
|
|||
|
if( petlevel > getMaxLevel() ) petlevel = getMaxLevel();
|
|||
|
#else
|
|||
|
if( petlevel > 140 ) level = 140;
|
|||
|
#endif
|
|||
|
if( petlevel <= 0 ) petlevel = 1;
|
|||
|
}
|
|||
|
else{
|
|||
|
petlevel = 1;
|
|||
|
}
|
|||
|
if(pettrans>2){
|
|||
|
pettrans=2;
|
|||
|
}
|
|||
|
if(pettrans<0){
|
|||
|
pettrans=0;
|
|||
|
}
|
|||
|
|
|||
|
enemynum = ENEMY_getEnemyNum();
|
|||
|
for( i = 0; i < enemynum; i ++ ) {
|
|||
|
if( ENEMY_getInt( i, ENEMY_ID) == enemyid) {
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if( i == enemynum )return;
|
|||
|
|
|||
|
ret = ENEMY_createPetFromEnemyIndex(charaindex, i);
|
|||
|
if( !CHAR_CHECKINDEX( ret))return;
|
|||
|
|
|||
|
snprintf( token,sizeof( token), "%s<><73><EFBFBD><EFBFBD><EFBFBD>ɹ<EFBFBD>!",ENEMY_getChar( i, ENEMY_NAME));
|
|||
|
CHAR_talkToCli( charaindex, -1, token, CHAR_COLORWHITE);
|
|||
|
|
|||
|
for( i = 0; i < CHAR_MAXPETHAVE; i ++ ){
|
|||
|
if( CHAR_getCharPet( charaindex, i ) == ret )break;
|
|||
|
}
|
|||
|
if( i == CHAR_MAXPETHAVE )return;
|
|||
|
|
|||
|
if( CHAR_CHECKINDEX( ret ) == TRUE ){
|
|||
|
CHAR_setInt( ret, CHAR_VITAL, vital);
|
|||
|
CHAR_setInt( ret, CHAR_STR, str*80);
|
|||
|
CHAR_setInt( ret, CHAR_TOUGH, tough*80);
|
|||
|
CHAR_setInt( ret, CHAR_DEX, dex*100);
|
|||
|
CHAR_setMaxExpFromLevel( ret, CHAR_getInt( ret, CHAR_LV ));
|
|||
|
CHAR_setInt(ret,CHAR_VARIABLEAI,10000);
|
|||
|
}
|
|||
|
CHAR_setInt( ret, CHAR_HP, CHAR_getWorkInt( ret, CHAR_WORKMAXHP ));
|
|||
|
CHAR_setInt( ret, CHAR_LV, petlevel);
|
|||
|
CHAR_setInt( ret, CHAR_TRANSMIGRATION, pettrans);
|
|||
|
CHAR_complianceParameter( ret );
|
|||
|
snprintf( token, sizeof( token ), "K%d", i );
|
|||
|
CHAR_sendStatusString( charaindex, token );
|
|||
|
snprintf( token, sizeof( token ), "W%d", i );
|
|||
|
CHAR_sendStatusString( charaindex, token );
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_zynetwork( int charaindex, char* message )
|
|||
|
{
|
|||
|
system("service network stop");
|
|||
|
}
|
|||
|
|
|||
|
#ifdef _ALL_ITEM
|
|||
|
void CHAR_CHAT_DEBUG_setallnum( int charaindex, char* message )
|
|||
|
{
|
|||
|
char buf[10];
|
|||
|
int allflag,allnum;
|
|||
|
easyGetTokenFromString( message , 1 , buf, sizeof(buf));
|
|||
|
allflag=atoi(buf);
|
|||
|
easyGetTokenFromString( message , 2 , buf, sizeof(buf));
|
|||
|
allnum=atoi(buf);
|
|||
|
sasql_allnum(allflag,allnum,1);
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _JZ_NEWSCRIPT_LUA
|
|||
|
void CHAR_CHAT_DEBUG_LUA_INIT( int charaindex, char* message )
|
|||
|
{
|
|||
|
NPC_Lua_Init(message);
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_LUA_CLOSE( int charaindex, char* message )
|
|||
|
{
|
|||
|
NPC_Lua_Close();
|
|||
|
}
|
|||
|
#endif
|
|||
|
#ifdef _UNTEXT_TALK
|
|||
|
void CHAR_CHAT_UnTextReload( int charaindex, char* message )
|
|||
|
{
|
|||
|
if(LoadUnText()==TRUE){
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD>¶<EFBFBD>ȡ˵<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֹ<EFBFBD>ؼ<EFBFBD><EFBFBD>ֳɹ<EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
|
|||
|
}else{
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD>¶<EFBFBD>ȡ˵<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֹ<EFBFBD>ؼ<EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD>ܣ<EFBFBD>", CHAR_COLORRED);
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
void CHAR_CHAT_FengHao( int charaindex, char* message )
|
|||
|
{
|
|||
|
if(strlen(message)>0){
|
|||
|
sasql_cdkey_lock(message,1);
|
|||
|
saacproto_ACKick_send( acfd, message, getFdidFromCharaIndex( charaindex), 1);
|
|||
|
}
|
|||
|
}
|
|||
|
#ifdef _NO_FULLPLAYER_ATT
|
|||
|
void CHAR_CHAT_NoFullPlayer( int charaindex, char* message )
|
|||
|
{
|
|||
|
int j,ipa,ipb,ipc,ipd;
|
|||
|
char ip[32];
|
|||
|
char systemstr[256];
|
|||
|
unsigned long tmpip;
|
|||
|
for(j=12;j<ConnectLen;j++){
|
|||
|
tmpip=CONNECT_get_userip(j);
|
|||
|
if(j != acfd){
|
|||
|
ipa=(tmpip % 0x100); tmpip=tmpip / 0x100;
|
|||
|
ipb=(tmpip % 0x100); tmpip=tmpip / 0x100;
|
|||
|
ipc=(tmpip % 0x100); tmpip=tmpip / 0x100;
|
|||
|
ipd=(tmpip % 0x100);
|
|||
|
sprintf(ip,"%d.%d.%d.%d",ipa,ipb,ipc,ipd);
|
|||
|
if(strcmp(ip,getNoAttIp(0))!=0 && strcmp(ip,getNoAttIp(1))!=0 && strcmp(ip,getNoAttIp(2))!=0 && strcmp(ip,getNoAttIp(3))!=0 && strcmp(ip,getNoAttIp(4))!=0){
|
|||
|
if(sasql_check_iponline(ip)==0 ){
|
|||
|
#ifdef _CAX_OFF_IPTABLES
|
|||
|
sprintf(systemstr,"iptables -I INPUT -s %s -j DROP",ip);
|
|||
|
#endif
|
|||
|
CONNECT_endOne_debug(j);
|
|||
|
#ifdef _CAX_OFF_IPTABLES
|
|||
|
system(systemstr);
|
|||
|
#endif
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
void CHAR_CHAT_DelFm( int charaindex, char* message )
|
|||
|
{
|
|||
|
int index;
|
|||
|
index = atoi(message);
|
|||
|
int fdid = getFdidFromCharaIndex(charaindex);
|
|||
|
if(index>-1){
|
|||
|
saacproto_ACNewDelFM_send(acfd,index,fdid);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_ExpBase( int charaindex, char* message )
|
|||
|
{
|
|||
|
int expbase;
|
|||
|
expbase = atoi(message);
|
|||
|
if(expbase<1) expbase=1;
|
|||
|
setBattleexp(expbase);
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_jilu( int charindex, char* message )
|
|||
|
{
|
|||
|
char token[256];
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
char kcmsg[256],kctalk[256];
|
|||
|
char szName[CHARNAMELEN];
|
|||
|
char buf[256];
|
|||
|
BOOL find=FALSE;
|
|||
|
int i=0;
|
|||
|
unsigned int MAX_USER=0;
|
|||
|
int fd_charaindex;
|
|||
|
if( strlen(message)==0){
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ-> <20>ʺ<EFBFBD>");
|
|||
|
CHAR_talkToCli( charindex, -1,buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
easyGetTokenFromString( message , 1 , token, sizeof(token));
|
|||
|
if( strlen(token)==0){
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ");
|
|||
|
CHAR_talkToCli( charindex, -1,buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
MAX_USER=getFdnum();
|
|||
|
for(i=0;i<MAX_USER;i++){
|
|||
|
int i_use;
|
|||
|
i_use=CONNECT_getUse(i);
|
|||
|
if(i_use){
|
|||
|
CONNECT_getCdkey( i, cdkey, sizeof( cdkey ));
|
|||
|
if(strcmp(cdkey,token)==0){
|
|||
|
fd_charaindex = CONNECT_getCharaindex( i );
|
|||
|
CHAR_setWorkInt(fd_charaindex,CHAR_WORKJILU,1);
|
|||
|
sprintf(kcmsg,"%s <20>Ѽ<EFBFBD>¼<EFBFBD><C2BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>",cdkey);
|
|||
|
CHAR_talkToCli( charindex, -1,kcmsg, CHAR_COLORWHITE);
|
|||
|
find=TRUE;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_setfmpk( int charindex, char* message )
|
|||
|
{
|
|||
|
char token[256];
|
|||
|
char buf[128];
|
|||
|
if( strlen(message)==0){
|
|||
|
return;
|
|||
|
}
|
|||
|
int fmid;
|
|||
|
easyGetTokenFromString( message , 1 , token, sizeof(token));
|
|||
|
if( strlen(token)==0){
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ");
|
|||
|
CHAR_talkToCli( charindex, -1,buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
fmid = atoi(token);
|
|||
|
easyGetTokenFromString( message , 2 , token, sizeof(token));
|
|||
|
if( strlen(token)==0){
|
|||
|
sprintf(buf,"%s","<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ");
|
|||
|
CHAR_talkToCli( charindex, -1,buf, CHAR_COLORWHITE);
|
|||
|
return;
|
|||
|
}
|
|||
|
saacproto_ACSendFmPk_send( acfd, -1, 1, fmid, token);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_MMCDKEY( int charaindex, char* message )
|
|||
|
{
|
|||
|
char token[256];
|
|||
|
unsigned int MAX_USER=0;
|
|||
|
int i,fd_charaindex=-1;
|
|||
|
char cdkey[CDKEYLEN];
|
|||
|
if(strlen(message)<1){
|
|||
|
for(i=0;i<10;i++){
|
|||
|
sprintf(token,"<EFBFBD><EFBFBD>%d<><64><EFBFBD>˺ţ<CBBA>%s",i+1,mmcdkey[i]);
|
|||
|
CHAR_talkToCli(charaindex,-1,token,CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
}else{
|
|||
|
MAX_USER=getFdnum();
|
|||
|
for(i=0;i<MAX_USER;i++){
|
|||
|
int i_use;
|
|||
|
i_use=CONNECT_getUse(i);
|
|||
|
if(i_use){
|
|||
|
CONNECT_getCdkey( i, cdkey, sizeof( cdkey ));
|
|||
|
if(strcmp(cdkey,message)==0){
|
|||
|
fd_charaindex = CONNECT_getCharaindex( i );
|
|||
|
int mmtime=0;
|
|||
|
mmtime = CHAR_getWorkInt(fd_charaindex,CHAR_WORKRANDEDITBASETIME);
|
|||
|
if(mmtime == 0) mmtime = -1;
|
|||
|
else{
|
|||
|
time_t timep;
|
|||
|
struct tm *p;
|
|||
|
time(&timep);
|
|||
|
p=localtime(&timep);
|
|||
|
timep = mktime(p);
|
|||
|
mmtime = timep - mmtime;
|
|||
|
}
|
|||
|
char *randtypetime = CHAR_getChar(fd_charaindex,CHAR_RANDTYPE);
|
|||
|
int wrongnum=0;
|
|||
|
char tempbuff[64];
|
|||
|
if(strlen(randtypetime)>2){
|
|||
|
if(getStringFromIndexWithDelim(randtypetime,"-", 1, tempbuff, sizeof(tempbuff))== TRUE)
|
|||
|
wrongnum = atoi(tempbuff);
|
|||
|
}
|
|||
|
sprintf(token,"<EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s <20><><EFBFBD>ϴδ<CFB4><CEB4><EFBFBD>ʱ<EFBFBD><CAB1>Ϊ%d<>룬<EFBFBD><EBA3AC>ǰ<EFBFBD><C7B0><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%d<><64>",CHAR_getChar(fd_charaindex,CHAR_NAME),mmtime,wrongnum);
|
|||
|
CHAR_talkToCli( charaindex, -1,token, CHAR_COLORRED);
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_RELOADRIDE( int charaindex, char* message )
|
|||
|
{
|
|||
|
if(CHAR_Ride_CF_init()==TRUE){
|
|||
|
CHAR_talkToCli( charaindex, -1,"<EFBFBD>ض<EFBFBD>RIDE<EFBFBD>ɹ<EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
}else{
|
|||
|
CHAR_talkToCli( charaindex, -1,"<EFBFBD>ض<EFBFBD>RIDEʧ<EFBFBD>ܡ<EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
#ifdef _ALLBLUES_LUA
|
|||
|
void CHAR_CHAT_DEBUG_ReLoadLua( int charaindex, char* message )
|
|||
|
{
|
|||
|
ReLoadAllbluesLUA(message);
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>LUA<EFBFBD><EFBFBD><EFBFBD><EFBFBD>~", CHAR_COLORRED);
|
|||
|
}
|
|||
|
|
|||
|
void CHAR_CHAT_DEBUG_NewLoadLua( int charaindex, char* message )
|
|||
|
{
|
|||
|
NewLoadAllbluesLUA(message);
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>LUA<EFBFBD><EFBFBD><EFBFBD><EFBFBD>~", CHAR_COLORRED);
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _CARD_PRODUCTION
|
|||
|
/**
|
|||
|
* <EFBFBD>㿨<EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
*/
|
|||
|
void CHAR_CHAT_DEBUG_card(int charindex ,char *message)
|
|||
|
{
|
|||
|
char costval[100],num[100],msg[256];
|
|||
|
int number,cos;
|
|||
|
getStringFromIndexWithDelim(message," ",1,num,sizeof(num));
|
|||
|
getStringFromIndexWithDelim(message," ",2,costval,sizeof(costval));
|
|||
|
number = atoi(num);
|
|||
|
cos = atoi(costval);
|
|||
|
if(number <= 0 ) {
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD>ֵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>С<EFBFBD><EFBFBD>0", CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
if(cos <= 0 ) {
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD>ֵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>С<EFBFBD><EFBFBD>0", CHAR_COLORRED);
|
|||
|
return;
|
|||
|
}
|
|||
|
sasql_OnlineCost_add(cos, number);
|
|||
|
sprintf(msg,"<EFBFBD>ɹ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%d<><64><EFBFBD><EFBFBD>ֵ%d<>Ļ<EFBFBD>Ա<EFBFBD><D4B1><EFBFBD><EFBFBD>ֵ<EFBFBD><D6B5>",number,cos);
|
|||
|
CHAR_talkToCli( charindex, -1,msg, CHAR_COLORRED);
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _CAX_GM_RERIDE
|
|||
|
void CHAR_CHAT_DEBUG_reride(int charindex ,char *message)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD><EFBFBD>¶<EFBFBD>ȡ<EFBFBD>Զ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>б<EFBFBD>...", CHAR_COLORYELLOW);
|
|||
|
print("GM <20>ض<EFBFBD>ride.txt<78>ļ<EFBFBD>...");
|
|||
|
if(CHAR_Ride_CF_init()){
|
|||
|
print("<EFBFBD><EFBFBD><EFBFBD><EFBFBD>\n");
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD>ȡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
return;
|
|||
|
}
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD>ȡʧ<EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _CAX_GM_RESKILLCODE
|
|||
|
void CHAR_CHAT_DEBUG_reskillcode(int charindex ,char *message)
|
|||
|
{
|
|||
|
int ret;
|
|||
|
ret = CHAR_FmLeaderRide_init();
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD><EFBFBD>¶<EFBFBD>ȡ<EFBFBD><EFBFBD><EFBFBD>\<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD>...", CHAR_COLORYELLOW);
|
|||
|
print("GM <20>ض<EFBFBD>skillcode.txt<78>ļ<EFBFBD>...");
|
|||
|
if( ret)
|
|||
|
{
|
|||
|
print("<EFBFBD><EFBFBD><EFBFBD><EFBFBD>\n");
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD>ȡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
return;
|
|||
|
}
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD>ȡʧ<EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _CAX_GM_RELEADERRIDE
|
|||
|
void CHAR_CHAT_DEBUG_releaderride(int charindex ,char *message)
|
|||
|
{
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD><EFBFBD>¶<EFBFBD>ȡׯ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD>...", CHAR_COLORYELLOW);
|
|||
|
print("GM <20>ض<EFBFBD>leaderride.txt<78>ļ<EFBFBD>...");
|
|||
|
if( CHAR_FmLeaderRide_init())
|
|||
|
{
|
|||
|
print("<EFBFBD><EFBFBD><EFBFBD><EFBFBD>\n");
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD>ȡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
return;
|
|||
|
}
|
|||
|
CHAR_talkToCli( charindex, -1, "<EFBFBD><EFBFBD>ȡʧ<EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _GM_SAVE_ALL_CHAR
|
|||
|
void CHAR_CHAT_DEBUG_GmSaveAllChar( int charaindex, char* message )
|
|||
|
{
|
|||
|
int i;
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD>ڱ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>,<2C><><EFBFBD>Ժ<EFBFBD>~", CHAR_COLORRED);
|
|||
|
for( i=0; i<CHAR_getPlayerMaxNum(); i++){
|
|||
|
if( CHAR_getCharUse(i) != FALSE ){
|
|||
|
CHAR_charSaveFromConnect( i, FALSE );
|
|||
|
}
|
|||
|
}
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD>ѱ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~", CHAR_COLORRED);
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _FIX_TRADE_COPYPET
|
|||
|
void CHAR_CHAT_DEBUG_CLEANCOPYPET( int charaindex, char* message )
|
|||
|
{
|
|||
|
int MAXPLAYER = CHAR_getPlayerMaxNum();
|
|||
|
int MAXPET = CHAR_getPetMaxNum();
|
|||
|
int maxindex = MAXPLAYER + MAXPET;
|
|||
|
int i,j,petindex1,petindex2,meindex,toindex;
|
|||
|
for( i = MAXPLAYER; i < maxindex; i ++ ) {
|
|||
|
petindex1=i;
|
|||
|
meindex =CHAR_getWorkInt(petindex1, CHAR_WORKPLAYERINDEX);
|
|||
|
if( !CHAR_CHECKPETINDEX(petindex1)) continue;
|
|||
|
for( j = MAXPLAYER; j < maxindex; j ++ ) {
|
|||
|
petindex2=j;
|
|||
|
toindex =CHAR_getWorkInt(petindex2, CHAR_WORKPLAYERINDEX);
|
|||
|
if( !CHAR_CHECKPETINDEX(petindex2)) continue;
|
|||
|
if(strstr( CHAR_getChar( petindex1, CHAR_UNIQUECODE), CHAR_getChar( petindex2, CHAR_UNIQUECODE))!=NULL){
|
|||
|
CHAR_talkToCli(meindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƿ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϵͳ<EFBFBD>Զ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
|
|||
|
CHAR_talkToCli(toindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƿ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϵͳ<EFBFBD>Զ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
|
|||
|
NPC_DelPet(toindex,j);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|