chuyiwen_gmsv/callfromcli.c

4737 lines
154 KiB
C
Raw Normal View History

2016-12-24 08:45:52 +08:00
#include "version.h"
#include <stdio.h>
#include <time.h>
#include <stdlib.h>
#include "common.h"
#include "util.h"
#include "lssproto_serv.h"
#include "saacproto_cli.h"
#include "npc_exchangeman.h"
#include "net.h"
#include "char.h"
#include "object.h"
#include "readmap.h"
#include "addressbook.h"
#include "handletime.h"
#include "configfile.h"
#include "event.h"
#include "pet.h"
#include "battle.h"
#include "battle_command.h"
#include "magic.h"
#include "petmail.h"
#include "item_gen.h"
#include "pet_skill.h"
#include "log.h" //add this because the second had it
#include "map_deal.h" // CoolFish: 2001/4/18
#include "trade.h" // CoolFish: Trade 2001/4/18
#include "family.h" // CoolFish: Family 2001/5/24
#include "item_event.h" // shan: blackmarket
#include "npc_petshop.h"
#include "enemy.h"
#include "char_base.h"
#ifdef _PROFESSION_SKILL // WON ADD <20><><EFBFBD><EFBFBD>ְҵ<D6B0><D2B5><EFBFBD><EFBFBD>
#include "profession_skill.h"
#endif
#ifdef _CHATROOMPROTOCOL // (<28><><EFBFBD>ɿ<EFBFBD>) Syu ADD <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƶ<EFBFBD><C6B5>
#include "chatroom.h"
#endif
#ifdef _ALLBLUES_LUA
#include "mylua/function.h"
#endif
BOOL checkStringErr( char * );
#ifdef _AVOIEDamageCharName
int
dbKeyHasDamageChar( char* key)
{
if( strstr(key , "'") != NULL )
{
printf("test . key damage\n");
return 1;
}
return 0;
}
#endif
// shan add
extern struct FM_PKFLOOR fmpkflnum[FAMILY_FMPKFLOOR];
extern char question[64];
extern char answer[64];
extern int questionstarttime;
extern int questionman;
#ifdef _UNTEXT_TALK
extern int textcnt;
#endif
extern int sameipnum;
extern int player_online;
extern int autopkcnt;
char mmcdkey[10][32]={"<EFBFBD><EFBFBD>","<EFBFBD><EFBFBD>","<EFBFBD><EFBFBD>","<EFBFBD><EFBFBD>","<EFBFBD><EFBFBD>","<EFBFBD><EFBFBD>","<EFBFBD><EFBFBD>","<EFBFBD><EFBFBD>","<EFBFBD><EFBFBD>","<EFBFBD><EFBFBD>"};
char mmcdkeybuf[10][64]={"-1.-1.-1","-1.-1.-1","-1.-1.-1","-1.-1.-1","-1.-1.-1","-1.-1.-1","-1.-1.-1","-1.-1.-1","-1.-1.-1","-1.-1.-1",};
//static unsigned long cdkeycount=0;
//static unsigned long cdkeymaxnum=100000;
//static char** playcdkey=NULL;
//static unsigned long* cdkeylogintime=0;
//static int* cdkeylogincount=0;
/* -----------------------------------------------------------------------
* ----------------------------------------------------------------------*/
static int Callfromcli_Util_getTargetCharaindex( int fd, int toindex)
{
int to_charaindex = -1;
int fd_charaindex = CONNECT_getCharaindex( fd );
/* <20><><EFBFBD>з<EFBFBD><D0B7><EFBFBD> */
if( toindex == 0 ) {
to_charaindex = fd_charaindex;
}
else if( toindex > 0 && toindex < 6 ) {
to_charaindex = CHAR_getCharPet( fd_charaindex, toindex-1);
if( !CHAR_CHECKINDEX( to_charaindex)) {
to_charaindex = -1;
}
}
else if( toindex > 5 && toindex < 11 ) {
to_charaindex = CHAR_getPartyIndex( fd_charaindex, toindex - 6);
}
return to_charaindex;
}
#ifdef _MO_LOGINCHECK
#define MX (z>>5^y<<2) + (y>>3^z<<4)^(sum^y) + (k[p&3^e]^z);
long btea(long* v, long n, long* k) {
unsigned long z=v[n-1], y=v[0], sum=0, e, DELTA=0x9e3779b9;
long p, q ;
if (n > 1) { /* Coding Part */
q = 6 + 52/n;
while (q-- > 0) {
sum += DELTA;
e = (sum >> 2) & 3;
for (p=0; p<n-1; p++) y = v[p+1], z = v[p] += MX;
y = v[0];
z = v[n-1] += MX;
}
return 0 ;
} else if (n < -1) { /* Decoding Part */
n = -n;
q = 6 + 52/n;
sum = q*DELTA ;
while (sum != 0) {
e = (sum >> 2) & 3;
for (p=n-1; p>0; p--) z = v[p-1], y = v[p] -= MX;
z = v[n-1];
y = v[0] -= MX;
sum -= DELTA;
}
return 0;
}
return 1;
}
#endif
int check_jqm(char *jqm){
int i;
int len = strlen(jqm);
for(i=0;i<len;i++){
if ( (jqm[i]>47&&jqm[i]<58) || (jqm[i]>64 &&jqm[i]<91) || (jqm[i]>98 &&jqm[i]<123))
{
continue;
}
return -1;
}
return 1;
}
//int cdkeyinit(void){
// playcdkey = (char**)calloc(cdkeymaxnum, sizeof(char*));
// int tempi;
// for(tempi=0;tempi<cdkeymaxnum;tempi++){
// playcdkey[tempi] = (char*)calloc(12, sizeof(char));
// playcdkey[tempi][0] = 0;
// }
// if(cdkeylogintime=0) cdkeylogintime = malloc(sizeof(unsigned long)*cdkeymaxnum);
// if(cdkeylogincount=0) cdkeylogincount = malloc(sizeof(int)*cdkeymaxnum);
//
// return 1;
//}
/*----------------------------------------
* <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><EFBFBD>ئ<EFBFBD><EFBFBD>ƥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͷ<EFBFBD>ئ<EFBFBD><EFBFBD>
----------------------------------------*/
void lssproto_ClientLogin_recv( int fd,char* cdkey, char* passwd )
{
/* 2<>ֱ<EFBFBD><D6B1><EFBFBD>ľ<EFBFBD><C4BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ľ<EFBFBD>¼<EFBFBD><C2BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
{//ttom avoid the restore 2001/01/09
if(CONNECT_isNOTLOGIN(fd)==FALSE){
print("\n the Client had Logined fd=%d",fd);
return;
}
}
//print( "CliLogin cdkey=%s\n" , cdkey );
/* connect<63><74><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
CONNECT_setCdkey( fd, cdkey );
CONNECT_setPasswd( fd, passwd );
//CONNECT_setCtype( fd, CLI );
/* if(getLoginJqmType()==1){ //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>޻<EFBFBD><DEBB><EFBFBD><EFBFBD><EFBFBD><EBB2BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>¼
//CONNECT_endOne_debug(fd);
lssproto_ClientLogin_send( fd , "<EFBFBD><EFBFBD><EFBFBD>Ŀͻ<EFBFBD><EFBFBD>˲<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϵ<EFBFBD>ͷ<EFBFBD><EFBFBD><EFBFBD>" );
return;
}*/
unsigned long tmpip;
int a,b,c,d,i;
char ip[32];
tmpip=CONNECT_get_userip(fd);
a=(tmpip % 0x100); tmpip=tmpip / 0x100;
b=(tmpip % 0x100); tmpip=tmpip / 0x100;
c=(tmpip % 0x100); tmpip=tmpip / 0x100;
d=(tmpip % 0x100);
sprintf(ip,"%d.%d.%d.%d",a,b,c,d);
//print( "\n<><6E>½<EFBFBD>˺<EFBFBD>=%s <20><><EFBFBD><EFBFBD>=%s <20><><EFBFBD><EFBFBD>=%s\n",cdkey,passwd,ip);
{
int res;
if (strlen(cdkey)==0 || strlen(passwd)==0 || strlen(ip)==0){
//printf("<22><>½<EFBFBD><C2BD>Ϣ<EFBFBD>д<EFBFBD><D0B4><EFBFBD><EFBFBD><EFBFBD>\n");
lssproto_ClientLogin_send( fd , "no" );
CONNECT_endOne_debug(fd);
return;
}
if (sasql_chehk_lock(cdkey)){
//printf("<22><><EFBFBD>˺<EFBFBD>%s<><73>ֹ<EFBFBD><D6B9>½!\n",cdkey);
lssproto_ClientLogin_send( fd , "no" );
CONNECT_endOne_debug(fd);
return;
}
if (sasql_chehk_lock(ip)){
//printf("<22><>IP%s<><73>ֹ<EFBFBD><D6B9>½!\n",ip);
lssproto_ClientLogin_send( fd , "no" );
CONNECT_endOne_debug(fd);
return;
}
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 ( getSameIpNum()>0 && sasql_onlinenum(cdkey,ip) >= getSameIpNum() ){
//printf("ͬһIP%s<><73>ֹͬʱ<CDAC><CAB1>½%d<><64>!\n",ip,sameipnum);
lssproto_ClientLogin_send( fd , "no" );
CONNECT_endOne_debug(fd);
return;
}
}
res=sasql_query(cdkey,passwd);
if (res==3){
if(getNoCdkeyPlayer()>0 && fd-player_online>=getNoCdkeyPlayer() && getNoCdkeyMode()!=0){
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(getNoCdkeyType()==0){
//if(sasql_query_online_ip(ip)==0 && sasql_check_lockip(ip,getFengType())<1){
if(sasql_query_online_ip(ip)==0){
//if(sasql_add_lockip(ip,getFengType(),getServernumber(),2)==1){
#ifdef _CAX_OFF_IPTABLES
if(strcmp(ip,"0.0.0.0")!=0){
char systemstr[128];
sprintf(systemstr,"iptables -I INPUT -s %s -j DROP",ip);
system(systemstr);
logWrongCdkey(ip);
}
#endif
CONNECT_endOne_debug(fd);
return;
//}
}
}else{
#ifdef _CAX_OFF_IPTABLES
if(strcmp(ip,"0.0.0.0")!=0){
char systemstr[128];
sprintf(systemstr,"iptables -I INPUT -s %s -j DROP",ip);
system(systemstr);
logWrongCdkey(ip);
}
#endif
CONNECT_endOne_debug(fd);
return;
}
}
}
if(!sasql_register(cdkey,passwd))
{//<2F>˺<EFBFBD>û<EFBFBD><C3BB>ע<EFBFBD><D7A2>
lssproto_ClientLogin_send( fd , "no" );
// if(getSaType()==8018)
// CONNECT_endOne_debug(fd);
return;
}
}else if (res!=1){
if(getNoCdkeyPlayer()>0 && fd-player_online>=getNoCdkeyPlayer() && getNoCdkeyMode()==2){
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(getNoCdkeyType()==0){
//if(sasql_query_online_ip(ip)==0 && sasql_check_lockip(ip,getFengType())<1){
if(sasql_query_online_ip(ip)==0){
//if(sasql_add_lockip(ip,getFengType(),getServernumber(),2)==1){
#ifdef _CAX_OFF_IPTABLES
if(strcmp(ip,"0.0.0.0")!=0){
char systemstr[128];
sprintf(systemstr,"iptables -I INPUT -s %s -j DROP",ip);
system(systemstr);
logWrongCdkey(ip);
}
#endif
CONNECT_endOne_debug(fd);
return;
//}
}
}else{
#ifdef _CAX_OFF_IPTABLES
if(strcmp(ip,"0.0.0.0")!=0){
char systemstr[128];
sprintf(systemstr,"iptables -I INPUT -s %s -j DROP",ip);
system(systemstr);
logWrongCdkey(ip);
}
#endif
CONNECT_endOne_debug(fd);
return;
}
}
}
lssproto_ClientLogin_send( fd , "no" );;
// if(getSaType()==8018)
// CONNECT_endOne_debug(fd);
return;
}
if(sasql_cdkey_online(cdkey)>0){
saacproto_ACKick_send(acfd,cdkey,-1,1);
lssproto_ClientLogin_send( fd , "no" );
sasql_online(cdkey,NULL,NULL,NULL,NULL,0);
CONNECT_endOne_debug(fd);
return;
}
CONNECT_setCtype( fd, CLI );
lssproto_ClientLogin_send( fd , "ok" );
sasql_online(cdkey,NULL,ip,NULL,NULL,4);
}
}
void lssproto_ClientLoginJqm_recv( int fd,char* cdkey, char* passwd, char* jqm
#ifdef _CAX_NEWMAC_LOGIN
,char* mac
#endif
#ifdef _MO_LOGINCHECK
,char* szdata
#endif
)
{
/* 2<>ֱ<EFBFBD><D6B1><EFBFBD>ľ<EFBFBD><C4BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ľ<EFBFBD>¼<EFBFBD><C2BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
{//ttom avoid the restore 2001/01/09
if(CONNECT_isNOTLOGIN(fd)==FALSE){
print("\n the Client had Logined fd=%d",fd);
return;
}
}
// print("\n fd: %d",fd);
// print("\n cdkey: %s",cdkey);
// print("\n password: %s",passwd);
// print("\n jqm: %s",jqm);
// print("\n 1-mac: %s",mac);
char* newjqm[128];
int logintype = -1;
char buftest[128];
memset(newjqm,0,sizeof(newjqm));
memset(buftest,0,sizeof(buftest));
strcpy(newjqm,jqm);
if(strstr(jqm,"|")!=NULL){
if(getStringFromIndexWithDelim(jqm,"|", 1, buftest, sizeof(buftest)) == FALSE)
strcpy(newjqm,jqm);
else
strcpy(newjqm,buftest);
if(getStringFromIndexWithDelim(jqm,"|", 2, buftest, sizeof(buftest)) == FALSE)
logintype = -1;
else
logintype = atoi(buftest);
}
jqm = newjqm;
// print("\n logintype : %d",logintype);
// print("\n jqm 2 : %s",jqm);
/* if(check_jqm(jqm)==-1){
lssproto_ClientLogin_send( fd , "<EFBFBD><EFBFBD>¼<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>µ<EFBFBD>¼<EFBFBD><EFBFBD>" );
return;
}*/
//print( "CliLogin cdkey=%s\n" , cdkey );
/* connect<63><74><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
CONNECT_setCdkey( fd, cdkey );
CONNECT_setPasswd( fd, passwd );
CONNECT_setPcid(fd, jqm);
#ifdef _CAX_NEWMAC_LOGIN
CONNECT_setMAC(fd, mac);
#endif
if (sasql_check_lockmac(mac)>0||sasql_check_lockpcid(jqm)>0){
lssproto_ClientLogin_send( fd , "<EFBFBD><EFBFBD><EFBFBD>ӳ<EFBFBD>ʱ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϵGM<EFBFBD><EFBFBD>" );
CONNECT_endOne_debug(fd);
}
#ifdef _MO_LOGINCHECK
long n = XXTEA_ROUND;
long k[4] = {XXTEA_KEY_1,XXTEA_KEY_2,XXTEA_KEY_3,XXTEA_KEY_4};
char data[1024] = "";
int datalen = 0;
int j = 0;
char demac[20];
char detime[20];
long recvtime;
//<2F><><EFBFBD><EFBFBD>ת<EFBFBD><D7AA><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
//printf("Hex data: %s\n", szdata);
datalen = strlen(szdata);
for(j = 0; j < datalen/2; j++){
int temp;
sscanf(&szdata[2 * j], "%02X", &temp);
data[j] = (char)temp;
}
data[datalen/2] = '\0';
//printf("Bin data: \n %s\n", data);
btea((long*)data, -n, k); // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
//printf( "Decrypt Data:\n %s\n", data);
sscanf(data,"%[^=]=%[^\n]",&demac,&detime);
//printf("\n demac=%s,mac=%s\n",demac, mac);
if(strstr(demac,mac)==NULL){
lssproto_ClientLogin_send( fd , "<EFBFBD><EFBFBD>¼<EFBFBD><EFBFBD>֤<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϵGM<EFBFBD><EFBFBD>" );
CONNECT_endOne_debug(fd);
return;
}
recvtime=atoi(detime);
//<2F><>ȡϵͳʱ<CDB3><CAB1>
time_t timep;
struct tm *p;
timep = time (NULL);
p = localtime ( &timep );
if(abs(timep-recvtime)>86400){
lssproto_ClientLogin_send( fd , "<EFBFBD><EFBFBD><EFBFBD>ӳ<EFBFBD>ʱ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϵGM<EFBFBD><EFBFBD>" );
CONNECT_endOne_debug(fd);
return;
}
#endif
//CONNECT_setCtype( fd, CLI );
if(getLoginType()>0){
if(logintype == -1){
lssproto_ClientLogin_send( fd , "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>¿ͻ<EFBFBD><EFBFBD>˺<EFBFBD><EFBFBD><EFBFBD>¼<EFBFBD><EFBFBD><EFBFBD><EFBFBD>·<EFBFBD><EFBFBD>" );
return;
}else if(logintype!=0 && logintype!=1){
lssproto_ClientLogin_send( fd , "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>·ֻ֧<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һ<EFBFBD><EFBFBD><EFBFBD>STW<EFBFBD><EFBFBD><EFBFBD>ҵ<EFBFBD>¼<EFBFBD><EFBFBD>" );
return;
}
}
unsigned long tmpip;
int a,b,c,d,i;
char ip[32];
tmpip=CONNECT_get_userip(fd);
a=(tmpip % 0x100); tmpip=tmpip / 0x100;
b=(tmpip % 0x100); tmpip=tmpip / 0x100;
c=(tmpip % 0x100); tmpip=tmpip / 0x100;
d=(tmpip % 0x100);
sprintf(ip,"%d.%d.%d.%d",a,b,c,d);
//print( "\n<><6E>½<EFBFBD>˺<EFBFBD>=%s <20><><EFBFBD><EFBFBD>=%s <20><><EFBFBD><EFBFBD>=%s\n",cdkey,passwd,ip);
{
int res;
if (strlen(cdkey)==0 || strlen(passwd)==0 || strlen(ip)==0){
//printf("<22><>½<EFBFBD><C2BD>Ϣ<EFBFBD>д<EFBFBD><D0B4><EFBFBD><EFBFBD><EFBFBD>\n");
lssproto_ClientLogin_send( fd , "no" );
CONNECT_endOne_debug(fd);
return;
}
if (sasql_chehk_lock(jqm)){
//printf("<22><><EFBFBD>˺<EFBFBD>%s<><73>ֹ<EFBFBD><D6B9>½!\n",cdkey);
lssproto_ClientLogin_send( fd , "<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><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>޷<EFBFBD><EFBFBD><EFBFBD>½<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϸ<EFBFBD><EFBFBD>" );
//CONNECT_endOne_debug(fd);
return;
}
if (sasql_chehk_lock(ip)){
//printf("<22><>IP%s<><73>ֹ<EFBFBD><D6B9>½!\n",ip);
lssproto_ClientLogin_send( fd , "no" );
CONNECT_endOne_debug(fd);
return;
}
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 ( getSameIpNum()>0 && sasql_onlinenum(cdkey,ip) >= getSameIpNum() ){
//printf("ͬһIP%s<><73>ֹͬʱ<CDAC><CAB1>½%d<><64>!\n",ip,sameipnum);
//lssproto_ClientLogin_send( fd , "no" );
//char tmpbuf[128];
//sprintf(tmpbuf,"<22><><EFBFBD>ĵ<EFBFBD>¼<EFBFBD><C2BC><EFBFBD>Ѵ<EFBFBD><D1B4><EFBFBD><EFBFBD>ޣ<EFBFBD>%d<><64>ID<49><44><EFBFBD><EFBFBD><EFBFBD>޷<EFBFBD><DEB7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϸ<EFBFBD><CFB7>",getSameIpNum());
lssproto_ClientLogin_send( fd , "<EFBFBD><EFBFBD><EFBFBD>ĵ<EFBFBD>¼<EFBFBD><EFBFBD><EFBFBD>Ѵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޣ<EFBFBD><EFBFBD>޷<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϸ<EFBFBD><EFBFBD>" );
//CONNECT_endOne_debug(fd);
return;
}
}
if( getSameJqmNum()>0 && sasql_onlinejqmnum(jqm,1) >= getSameJqmNum() ){
//lssproto_ClientLogin_send( fd , "no" );
//CONNECT_endOne_debug(fd);
//char tmpbuf[128];
//sprintf(tmpbuf,"<22><><EFBFBD>ڸ<EFBFBD><DAB8>ߵĵ<DFB5>¼<EFBFBD><C2BC><EFBFBD>Ѵ<D1B4><EFB5BD><EFBFBD>ޣ<EFBFBD>%d<><64>ID<49><44><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ե<EFBFBD>½<EFBFBD><C2BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>·<EFBFBD><C2B7>",getSameJqmNum());
lssproto_ClientLogin_send( fd , "<EFBFBD><EFBFBD><EFBFBD>ڸ<EFBFBD><EFBFBD>ߵĵ<EFBFBD>¼<EFBFBD><EFBFBD><EFBFBD>Ѵ<EFBFBD><EFBFBD><EFBFBD>ޣ<EFBFBD><EFBFBD><EFBFBD>Ե<EFBFBD>½<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>·<EFBFBD><EFBFBD>" );
//printf("ͬһIP%s<><73>ֹͬʱ<CDAC><CAB1>½%d<><64>!\n");
return;
}
if( getSameJqmAllNum()>0 && sasql_onlinejqmnum(jqm,2) >= getSameJqmAllNum() ){
//lssproto_ClientLogin_send( fd , "no" );
//CONNECT_endOne_debug(fd);
//char tmpbuf[128];
//sprintf(tmpbuf,"<22><><EFBFBD>ĵ<EFBFBD>¼<EFBFBD><C2BC><EFBFBD>Ѵ<EFBFBD><D1B4><EFBFBD><EFBFBD>ޣ<EFBFBD>%d<><64>ID<49><44><EFBFBD><EFBFBD><EFBFBD>޷<EFBFBD><DEB7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϸ<EFBFBD><CFB7>",getSameJqmAllNum());
lssproto_ClientLogin_send( fd , "<EFBFBD><EFBFBD><EFBFBD>ĵ<EFBFBD>¼<EFBFBD><EFBFBD><EFBFBD>Ѵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޣ<EFBFBD><EFBFBD>޷<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϸ<EFBFBD><EFBFBD>" );
//printf("<22><><EFBFBD>ĵ<EFBFBD>¼<EFBFBD><C2BC><EFBFBD>Ѵ<EFBFBD><D1B4><EFBFBD><EFBFBD>ޣ<EFBFBD><DEA3>޷<EFBFBD><DEB7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϸ\n");
return;
}
res=sasql_query(cdkey,passwd);
// print("\n res 2 : %d",res);
if (res==3){
if(getNoCdkeyPlayer()>0 && fd-player_online>=getNoCdkeyPlayer() && getNoCdkeyMode()!=0){
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(getNoCdkeyType()==0){
//if(sasql_query_online_ip(ip)==0 && sasql_check_lockip(ip,getFengType())<1){
if(sasql_query_online_ip(ip)==0){
//if(sasql_add_lockip(ip,getFengType(),getServernumber(),2)==1){
#ifdef _CAX_OFF_IPTABLES
if(strcmp(ip,"0.0.0.0")!=0){
char systemstr[128];
sprintf(systemstr,"iptables -I INPUT -s %s -j DROP",ip);
system(systemstr);
logWrongCdkey(ip);
}
#endif
CONNECT_endOne_debug(fd);
return;
//}
}
}else{
#ifdef _CAX_OFF_IPTABLES
if(strcmp(ip,"0.0.0.0")!=0){
char systemstr[128];
sprintf(systemstr,"iptables -I INPUT -s %s -j DROP",ip);
system(systemstr);
logWrongCdkey(ip);
}
#endif
CONNECT_endOne_debug(fd);
return;
}
}
}
if(!sasql_register(cdkey,passwd))
{//<2F>˺<EFBFBD>û<EFBFBD><C3BB>ע<EFBFBD><D7A2>
//lssproto_ClientLogin_send( fd , "no" );
lssproto_ClientLogin_send( fd , "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˺Ų<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڣ<EFBFBD><EFBFBD><EFBFBD>δע<EFBFBD><EFBFBD><EFBFBD>ٷ<EFBFBD><EFBFBD><EFBFBD>վע<EFBFBD>" );
// if(getSaType()==8018)
// CONNECT_endOne_debug(fd);
return;
}
}else if (res!=1){
if(getNoCdkeyPlayer()>0 && fd-player_online>=getNoCdkeyPlayer() && getNoCdkeyMode()==2){
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(getNoCdkeyType()==0){
//if(sasql_query_online_ip(ip)==0 && sasql_check_lockip(ip,getFengType())<1){
if(sasql_query_online_ip(ip)==0){
//if(sasql_add_lockip(ip,getFengType(),getServernumber(),2)==1){
#ifdef _CAX_OFF_IPTABLES
if(strcmp(ip,"0.0.0.0")!=0){
char systemstr[128];
sprintf(systemstr,"iptables -I INPUT -s %s -j DROP",ip);
system(systemstr);
logWrongCdkey(ip);
}
#endif
CONNECT_endOne_debug(fd);
return;
//}
}
}else{
#ifdef _CAX_OFF_IPTABLES
if(strcmp(ip,"0.0.0.0")!=0){
char systemstr[128];
sprintf(systemstr,"iptables -I INPUT -s %s -j DROP",ip);
system(systemstr);
logWrongCdkey(ip);
}
#endif
CONNECT_endOne_debug(fd);
return;
}
}
}
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
//lssproto_ClientLogin_send( fd , "no" );
lssproto_ClientLogin_send( fd , "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϸȷ<EFBFBD>Ϻ<EFBFBD><EFBFBD><EFBFBD>½<EFBFBD><EFBFBD>" );
// if(getSaType()==8018)
// CONNECT_endOne_debug(fd);
return;
}
if(sasql_cdkey_online(cdkey)>0){
saacproto_ACKick_send(acfd,cdkey,-1,1);
lssproto_ClientLogin_send( fd , "no" );
sasql_online(cdkey,NULL,NULL,NULL,NULL,0);
CONNECT_endOne_debug(fd);
return;
}
CONNECT_setCtype( fd, CLI );
char* oldpcid = NULL;
oldpcid = sasql_query_jqm(cdkey);
#ifdef _CAX_NEWMAC_LOGIN
char* oldmac = NULL;
oldmac = sasql_query_mac(cdkey);
#endif
/* if(strlen(oldpcid)<10){
CONNECT_setOldPcid(fd,jqm);
}else{
CONNECT_setOldPcid(fd,oldpcid);
}*/
lssproto_ClientLogin_send( fd , "ok" );
//print("\n jqm: %s",jqm);
sasql_online_jqm(cdkey,jqm,ip,logintype);
#ifdef _CAX_NEWMAC_LOGIN
sasql_online_mac(cdkey,mac,ip,logintype);
#endif
}
}
void lssproto_CreateNewChar_recv( int fd,int dataplacenum,char* charname,
int imgno,int faceimgno,
int vital,int str,int tgh,int dex,
int earth,int water,int fire,int wind,
int hometown )
{
char cdkey[CDKEYLEN];
if( CONNECT_isCLI( fd ) == FALSE )return;
if( CONNECT_isNOTLOGIN(fd) == FALSE ){
lssproto_CreateNewChar_send( fd, FAILED, "Not NOTLOGIN State\n" );
return;
}
if( strlen( charname ) == 0 ){
lssproto_CreateNewChar_send(fd,FAILED, "<EFBFBD><EFBFBD><EFBFBD>ֹ<EFBFBD><EFBFBD>̣<EFBFBD><EFBFBD>޷<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>\n");
return;
#ifdef _AVOIEDamageCharName
}else if ( dbKeyHasDamageChar(charname)){
lssproto_CreateNewChar_send(fd,FAILED, "<EFBFBD><EFBFBD><EFBFBD>ֽ<EFBFBD>ֹʹ<EFBFBD><EFBFBD>\n");
return;
#endif
}else if( strlen(charname) >= 32 ){
lssproto_CreateNewChar_send(fd,FAILED, "<EFBFBD><EFBFBD><EFBFBD>ֹ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>޷<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>\n");
return;
// Nuke start 0711: Avoid naming as WAEI
}else if (strstr(charname,"<EFBFBD><EFBFBD><EFBFBD><EFBFBD>")
// WON ADD
|| strstr(charname,"gm") || strstr(charname,"GM")
|| strstr(charname,"Gm") || strstr(charname,"gM")
|| strstr(charname,"<EFBFBD><EFBFBD><EFBFBD><EFBFBD>") || strstr(charname,"<EFBFBD>ǣ<EFBFBD>")
|| strstr(charname,"<EFBFBD>ǣ<EFBFBD>") || strstr(charname,"<EFBFBD><EFBFBD><EFBFBD><EFBFBD>")
|| strstr(charname," ") || strstr(charname,"=") || strstr(charname,",")
#ifdef _UNREG_NEMA
|| (strstr(charname,getUnregname(0)) && strlen(getUnregname(0))>0)
|| (strstr(charname,getUnregname(1)) && strlen(getUnregname(1))>0)
|| (strstr(charname,getUnregname(2)) && strlen(getUnregname(2))>0)
|| (strstr(charname,getUnregname(3)) && strlen(getUnregname(3))>0)
|| (strstr(charname,getUnregname(4)) && strlen(getUnregname(4))>0)
|| (strstr(charname,getUnregname(5)) && strlen(getUnregname(5))>0)
|| (strstr(charname,getUnregname(6)) && strlen(getUnregname(6))>0)
|| (strstr(charname,getUnregname(7)) && strlen(getUnregname(7))>0)
|| (strstr(charname,getUnregname(8)) && strlen(getUnregname(8))>0)
#endif
|| strstr(charname,"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>")
// WON END
) {
unsigned ip=CONNECT_get_userip(fd);
int a, b, c, d, ck;
a=(ip % 0x100); ip=ip / 0x100;
b=(ip % 0x100); ip=ip / 0x100;
c=(ip % 0x100); ip=ip / 0x100;
d=(ip % 0x100);
ck= (
( (a== 10) && (b==0) && (c==0) ) ||
( (a==211) && (b==76) && (c==176) && (d==21) ) || // ̨<><CCA8>wayi
( (a==210) && (b==64) && (c==97) && ((d>=21)&&(d<=25)) ) ||
( (a==61) && (b==222) && (c==142) && (d==66)) ||
( (a==172) && (b==16) && (c==172) && (d==29) )
);
print(" name_WAEI_IP:%d.%d.%d.%d ck:%d ",a,b,c,d,ck );
if( !ck ) {
lssproto_CreateNewChar_send(fd,FAILED, "<EFBFBD>Ƿ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>֣<EFBFBD><EFBFBD>޷<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>\n");
return;
}
}
{
// Nuke start 0801,0916: Avoid strange name
int i,ach;
for (i=0,ach=0;i<strlen(charname);i++) {
if ((unsigned char)charname[i]==0xff) { ach=1; break; } // Force no 0xff
if (((unsigned char)charname[i]>=0x7f)&&
((unsigned char)charname[i]<=0xa0)) { ach=1; break; } // Force no 0x7f~0xa0
if ((unsigned char)charname[i]<=0x20) { ach=1; break; } // Force greater than 0x20
if (ach) {
if ((((unsigned char)charname[i]>=0x40)&&((unsigned char)charname[i]<=0x7e))||
(((unsigned char)charname[i]>=0xa1)&&((unsigned char)charname[i]<=0xfe))) ach=0;
} else {
if (((unsigned char)charname[i]>=0xa1)&&((unsigned char)charname[i]<=0xfe)) ach=1;
}
}
if (ach) { lssproto_CreateNewChar_send(fd,FAILED, "<EFBFBD>Ƿ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>֣<EFBFBD><EFBFBD>޷<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>\n"); return; }
// Nuke end
}
// Nuke end
CONNECT_getCdkey( fd, cdkey, sizeof( cdkey ));
CHAR_createNewChar( fd, dataplacenum, charname ,imgno, faceimgno,
vital, str, tgh, dex,
earth, water, fire, wind,
hometown , cdkey );
}
void lssproto_CharLogin_recv( int fd,char* charname )
{
char cdkey[CDKEYLEN], passwd[PASSWDLEN];
if( CONNECT_isCLI( fd ) == FALSE )return;
print( "\n<EFBFBD><EFBFBD><EFBFBD>Ե<EFBFBD>½: <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>=%s\n", charname);
if( charname[0] == '\0' ){
lssproto_CharLogin_send( fd, FAILED, "Can't access char have no name\n" );
return;
}
if( CONNECT_isNOTLOGIN(fd) == FALSE ){
lssproto_CharLogin_send( fd, FAILED, "Already Logged in\n" );
return;
}
if( strstr(charname,",")!=NULL ){
CONNECT_endOne_debug(fd);
return;
}
CONNECT_setCharname( fd, charname );
CONNECT_getCdkey( fd, cdkey, sizeof( cdkey ));
CONNECT_getPasswd( fd, passwd, sizeof(passwd));
unsigned long tmpip;
int a,b,c,d;
char ip[32];
tmpip=CONNECT_get_userip(fd);
a=(tmpip % 0x100); tmpip=tmpip / 0x100;
b=(tmpip % 0x100); tmpip=tmpip / 0x100;
c=(tmpip % 0x100); tmpip=tmpip / 0x100;
d=(tmpip % 0x100);
sprintf(ip,"%d.%d.%d.%d",a,b,c,d);
int res;
res = sasql_load_query( cdkey, passwd);
if(res!=1){
lssproto_CharLogin_send( fd ,FAILED, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>޷<EFBFBD><EFBFBD><EFBFBD>¼<EFBFBD><EFBFBD>\n" );
//CONNECT_endOne_debug(fd);
return;
}
saacproto_ACCharLoad_send( acfd, cdkey,passwd, charname,1,"",
CONNECT_getFdid(fd),ip );
CONNECT_setState( fd, WHILELOGIN );
}
#ifdef _ITEM_CHECKDROPATLOGOUT
BOOL CheckDropatLogout(int charaindex )
{
int i;
for( i=0 ; i<CHAR_MAXITEMHAVE ; i++ ){
int itemindex;
itemindex = CHAR_getItemIndex(charaindex,i);
if( ITEM_CHECKINDEX(itemindex) == FALSE )continue;
if( ITEM_getInt(itemindex,ITEM_DROPATLOGOUT ) == TRUE ) {
return TRUE;
}
}
return FALSE;
}
#endif
void lssproto_CharLogout_recv( int fd, int flg)
{
char cdkey[CDKEYLEN] , charname[CHARNAMELEN];
if( CONNECT_isCLI( fd ) == FALSE )return;
if( CONNECT_isLOGIN(fd) == FALSE ){
lssproto_CharLogout_send( fd, FAILED, "Not Logged in\n" );
return;
}
int charaindex=CONNECT_getCharaindex(fd);
{
int fl,x,y;
// CoolFish: 2001/10/18
if (!CHAR_CHECKINDEX(charaindex)) return;
if( CHAR_getInt( charaindex, CHAR_LASTTALKELDER) >= 0 )
{
CHAR_getElderPosition( CHAR_getInt( charaindex, CHAR_LASTTALKELDER), &fl, &x, &y );
#ifdef _CHAR_NEWLOGOUT
if( flg == 1 ){//<2F>ؼ<EFBFBD>¼<EFBFBD><C2BC>
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEMODE) != BATTLE_CHARMODE_NONE){
CHAR_talkToCli( charaindex, -1, "ս<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>޷<EFBFBD><EFBFBD>ؼ<EFBFBD>¼<EFBFBD>", CHAR_COLORYELLOW);
return;
}
#ifdef _ITEM_CHECKWARES
if( CHAR_CheckInItemForWares( charaindex, 0) == FALSE ){
CHAR_talkToCli( charaindex, -1, "Я<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>޷<EFBFBD>ʹ<EFBFBD>á<EFBFBD>", CHAR_COLORYELLOW);
return;
}
#endif
#ifdef _TEAM_WARP
if( CHAR_getWorkInt( charaindex, CHAR_WORKPARTYMODE ) == CHAR_PARTY_CLIENT ){
CHAR_talkToCli( charaindex, -1, "<EFBFBD>Ŷ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>޷<EFBFBD><EFBFBD>ؼ<EFBFBD>¼<EFBFBD>", CHAR_COLORYELLOW);
return;
}
if( CHAR_getWorkInt( charaindex, CHAR_WORKPARTYMODE ) == CHAR_PARTY_LEADER ){
int i;
for( i = 0; i < CHAR_PARTYMAX; i ++ ){
int subindex = CHAR_getWorkInt( charaindex, CHAR_WORKPARTYINDEX1+i );
if( CHAR_CHECKINDEX( subindex ) == FALSE ) continue;
CHAR_talkToCli( subindex, -1, "ȫ<EFBFBD><EFBFBD>˲<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>У<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORWHITE);
ITEM_WarpDelErrorItem( subindex );
CHAR_warpToSpecificPoint( subindex, fl, x, y );
}
return;
}
#endif
if( CHAR_getWorkInt( charaindex, CHAR_WORKPARTYMODE ) != CHAR_PARTY_NONE ){
#ifdef _PLAYER_NPC
int i;
for( i = 1; i < CHAR_PARTYMAX; i ++ ){
int pindex = CHAR_getWorkInt( charaindex, i + CHAR_WORKPARTYINDEX1 );
if( CHAR_CHECKINDEX( pindex)){
if(CHAR_getInt( pindex, CHAR_WHICHTYPE) != CHAR_TYPEPLAYERNPC)break;
}
}
if(i < CHAR_MAXPETHAVE)
#endif
{
CHAR_talkToCli( charaindex, -1, "<EFBFBD>Ŷ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>޷<EFBFBD><EFBFBD>ؼ<EFBFBD>¼<EFBFBD>", CHAR_COLORYELLOW);
return;
}
}
#ifdef _ITEM_CHECKDROPATLOGOUT
if( CheckDropatLogout( charaindex ) ){
CHAR_talkToCli( charaindex, -1, "Я<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ʒʹ<EFBFBD><EFBFBD><EFBFBD>޷<EFBFBD><EFBFBD>ؼ<EFBFBD>¼<EFBFBD>", CHAR_COLORYELLOW);
return;
}
#endif
#ifdef _AUTO_PK
if(CHAR_getInt(charaindex,CHAR_FLOOR)==20000
&& CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEMODE) == BATTLE_CHARMODE_NONE
&& CHAR_getInt(charaindex,CHAR_AUTOPK)!=-1 ){
char buf[64];
int i,num=0,winindex;
int playernum = CHAR_getPlayerMaxNum();
#ifndef _YUANGUSA
sprintf(buf, "<EFBFBD><EFBFBD>С<EFBFBD><EFBFBD>%s<>˳<EFBFBD><CBB3><EFBFBD>ǰ<EFBFBD><C7B0><EFBFBD><EFBFBD><EFBFBD><EFBFBD>",CHAR_getChar(charaindex,CHAR_NAME));
AutoPk_PKSystemTalk( buf, buf );
#endif
if(AutoPk_PKTimeGet()<=0){
for(i=0;i<playernum;i++){
if(CHAR_CHECKINDEX(i) == FALSE || CHAR_getInt(i,CHAR_AUTOPK)==-1 ) continue;
if(CHAR_getInt(i, CHAR_FLOOR) == 20000
){
if(CHAR_getInt(i,CHAR_AUTOPK)!=-1){
if(i!=charaindex)
winindex=i;
num++;
}
}
}
#ifdef _NONUM_AUTOPK
if(num==5){
AutoPk_ChampionShipSet( CHAR_getChar(charaindex,CHAR_CDKEY),
CHAR_getChar(charaindex,CHAR_NAME), CHAR_getInt(charaindex,CHAR_AUTOPK),4);
}else if(num==4){
AutoPk_ChampionShipSet( CHAR_getChar(charaindex,CHAR_CDKEY),
CHAR_getChar(charaindex,CHAR_NAME), CHAR_getInt(charaindex,CHAR_AUTOPK),3);
}else if(num==3){
AutoPk_ChampionShipSet( CHAR_getChar(charaindex,CHAR_CDKEY),
CHAR_getChar(charaindex,CHAR_NAME), CHAR_getInt(charaindex,CHAR_AUTOPK),2);
}else if(num==2){
int fl = 0, x = 0, y = 0;
CHAR_getElderPosition(CHAR_getInt(winindex, CHAR_LASTTALKELDER), &fl, &x, &y);
CHAR_warpToSpecificPoint(winindex, fl, x, y);
AutoPk_ChampionShipSet( CHAR_getChar(winindex,CHAR_CDKEY),
CHAR_getChar(winindex,CHAR_NAME), CHAR_getInt(winindex,CHAR_AUTOPK),0);
AutoPk_ChampionShipSet( CHAR_getChar(charaindex,CHAR_CDKEY),
CHAR_getChar(charaindex,CHAR_NAME), CHAR_getInt(charaindex,CHAR_AUTOPK),1);
AutoPk_GetChampionShip();
}
#else
if(num==2){
int fl = 0, x = 0, y = 0;
char pktoken1[256],pktoken2[256];
CHAR_getElderPosition(CHAR_getInt(winindex, CHAR_LASTTALKELDER), &fl, &x, &y);
CHAR_warpToSpecificPoint(winindex, fl, x, y);
autopkcnt++;
int autopkvigor = getAutoPkVigorPkNum()*CHAR_getInt(charaindex,CHAR_AUTOPK)+getAutoPkVigorPkCnt()*autopkcnt;
CHAR_setInt(charaindex,CHAR_VIGOR,CHAR_getInt(charaindex,CHAR_VIGOR)+autopkvigor);
sprintf(pktoken1,"[<5B><><EFBFBD><EFBFBD>ս<EFBFBD><D5BD>]<5D><><EFBFBD><EFBFBD>%s<><73><EFBFBD><EFBFBD>ɱ<EFBFBD><C9B1><EFBFBD><EFBFBD> %d <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %d <20><><EFBFBD>û<EFBFBD><C3BB><EFBFBD>%d",CHAR_getChar(charaindex,CHAR_NAME),CHAR_getInt(charaindex,CHAR_AUTOPK),autopkcnt,autopkvigor);
autopkcnt++;
CHAR_setInt(winindex,CHAR_AUTOPK,CHAR_getInt(winindex,CHAR_AUTOPK)+2);
autopkvigor = getAutoPkVigorPkNum()*CHAR_getInt(winindex,CHAR_AUTOPK)+getAutoPkVigorPkCnt()*autopkcnt;
CHAR_setInt(winindex,CHAR_VIGOR,CHAR_getInt(winindex,CHAR_VIGOR)+autopkvigor);
sprintf(pktoken2,"[<5B><><EFBFBD><EFBFBD>ս<EFBFBD><D5BD>]<5D><><EFBFBD><EFBFBD>%s<><73><EFBFBD><EFBFBD>ɱ<EFBFBD><C9B1><EFBFBD><EFBFBD> %d <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %d <20><><EFBFBD>û<EFBFBD><C3BB><EFBFBD>%d",CHAR_getChar(winindex,CHAR_NAME),CHAR_getInt(winindex,CHAR_AUTOPK),autopkcnt,autopkvigor);
i=0;
for(i=0;i<playernum;i++){
if(CHAR_CHECKINDEX(i) == FALSE) continue;
CHAR_talkToCli( i, -1, pktoken1, CHAR_COLORCYAN );
CHAR_talkToCli( i, -1, pktoken2, CHAR_COLORCYAN );
}
AutoPk_ChampionShipSet( CHAR_getChar(winindex,CHAR_CDKEY),
CHAR_getChar(winindex,CHAR_NAME), CHAR_getInt(winindex,CHAR_AUTOPK),0);
AutoPk_ChampionShipSet( CHAR_getChar(winindex,CHAR_CDKEY),
CHAR_getChar(winindex,CHAR_NAME), CHAR_getInt(winindex,CHAR_AUTOPK),1);
AutoPk_ChampionShipSet( CHAR_getChar(charaindex,CHAR_CDKEY),
CHAR_getChar(charaindex,CHAR_NAME), CHAR_getInt(charaindex,CHAR_AUTOPK),2);
AutoPk_GetChampionShip();
}
#endif
}
}
#endif
if( CHAR_getInt( charaindex,CHAR_FLOOR ) != 117 &&
CHAR_getInt( charaindex,CHAR_FLOOR ) != 887
#ifdef _ADD_DUNGEON //׷<>ӵ<EFBFBD><D3B5><EFBFBD>
&& CHAR_getInt( charaindex,CHAR_FLOOR ) != 8513
#endif
){
CHAR_warpToSpecificPoint( charaindex, fl, x, y );
}
return;
}
#else
if( CHAR_getInt(charaindex,CHAR_FLOOR ) == 117){
CHAR_setInt(charaindex,CHAR_X,225);
CHAR_setInt(charaindex,CHAR_Y,13);
}else{
CHAR_setInt(charaindex,CHAR_FLOOR,fl);
CHAR_setInt(charaindex,CHAR_X,x);
CHAR_setInt(charaindex,CHAR_Y,y);
}
#endif
}
// Robin add
//CHAR_setInt( charaindex, CHAR_LASTLEAVETIME, (int)time(NULL));
}
CHAR_logout(charaindex,TRUE);
CONNECT_setState( fd, WHILELOGOUTSAVE );
CONNECT_setCharaindex( fd, -1 );
CONNECT_getCdkey( fd, cdkey, sizeof(cdkey ));
CONNECT_getCharname( fd, charname, sizeof(charname));
print( "Logout cdkey:%s charname=%s\n" , cdkey, charname );
}
void lssproto_CharDelete_recv( int fd , char* charname,char* safepass)
{
char cdkey[CDKEYLEN];//passwd[PASSWDLEN];
int fdid;
if( CONNECT_isCLI( fd ) == FALSE ){
CONNECT_endOne_debug(fd);
return;
}
if( CONNECT_isNOTLOGIN( fd ) == FALSE ){
lssproto_CharDelete_send( fd, FAILED, "Already Logged in\n" );
CONNECT_endOne_debug(fd);
return;
}
CONNECT_getCdkey( fd, cdkey, sizeof(cdkey));
//CONNECT_getPasswd( fd, passwd, sizeof(passwd));
// if(strstr(cdkey,safepass)!=NULL){
// lssproto_CharDelete_send( fd, FAILED, "<22><>ȫ<EFBFBD><EFBFBD><EBB2BB>ȫ<EFBFBD><C8AB><EFBFBD>޷<EFBFBD>ɾ<EFBFBD><C9BE><EFBFBD><EFBFBD>\n" );
// return;
// }
int res=sasql_del_query(cdkey, safepass);
if(res!=1){
lssproto_CharDelete_send( fd, FAILED, "<EFBFBD><EFBFBD>ʹ<EFBFBD>ð<EFBFBD>ȫ<EFBFBD><EFBFBD>ɾ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>޷<EFBFBD>ɾ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>\n" );
return;
}
fdid = CONNECT_getFdid(fd);
unsigned long ip;
int a,b,c,d;
ip=CONNECT_get_userip(fd);
a=(ip % 0x100); ip=ip / 0x100;
b=(ip % 0x100); ip=ip / 0x100;
c=(ip % 0x100); ip=ip / 0x100;
d=(ip % 0x100);
char userip[32];
sprintf(userip,"%d.%d.%d.%d",a,b,c,d);
saacproto_ACCharDelete_send( acfd, cdkey,safepass, charname , "" ,fdid,userip );
{
char buff[512];
char escapebuf[1024];
snprintf( buff, sizeof(buff), "%s_%s", cdkey, charname);
makeEscapeString( buff, escapebuf, sizeof(escapebuf));
saacproto_DBDeleteEntryInt_send(acfd, DB_DUELPOINT, escapebuf, fdid, 0 );
saacproto_DBDeleteEntryString_send( acfd, DB_ADDRESSBOOK, escapebuf, fdid, 0 );
}
saacproto_Broadcast_send( acfd, cdkey, charname, "chardelete", 0);
CONNECT_setState( fd, WHILECHARDELETE );
}
void lssproto_CharList_recv( int fd )
{
char cdkey[CDKEYLEN], passwd[PASSWDLEN];
int fdid=-1;
if( CONNECT_isCLI( fd ) == FALSE ){
CONNECT_endOne_debug(fd);
return;
}
if( CONNECT_isNOTLOGIN( fd ) == FALSE ){
lssproto_CharList_send( fd, FAILED, "Already Logged in\n" );
CONNECT_endOne_debug(fd);
return;
}
CONNECT_getCdkey( fd, cdkey, sizeof(cdkey));
CONNECT_getPasswd( fd, passwd, sizeof(passwd));
int res=sasql_query(cdkey,passwd);
if(res!=1){
lssproto_CharList_send( fd, FAILED, "Pass Wrong\n" );
CONNECT_endOne_debug(fd);
return;
}
fdid = CONNECT_getFdid( fd );
{
int i;
int playernum = CHAR_getPlayerMaxNum();
for( i=0; i<playernum; i++){
if( !CHAR_CHECKINDEX( i) )continue;
if( !strcmp( CHAR_getChar( i, CHAR_CDKEY), cdkey) ){
#ifdef _OFFLINE_SYSTEM
if(CHAR_getWorkInt( i, CHAR_WORK_OFFLINE )!=0){
CHAR_logout(i,TRUE);
sasql_online(cdkey,NULL,NULL,NULL,NULL,0);
CONNECT_endOne_debug(fd);
//find=TRUE;
return;
}
#endif
CHAR_talkToCli(i, -1, "<EFBFBD><EFBFBD><EFBFBD>ظ<EFBFBD><EFBFBD><EFBFBD>½<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!",CHAR_COLORYELLOW);
CONNECT_setCloseRequest( getfdFromCharaIndex( i ) , 1 );
// lssproto_CharList_send( fd, FAILED, "-1" );
// CONNECT_setState( fd, NOTLOGIN );
}
}
}
//#ifdef _PKSEVER_VER
// saacproto_ACCharList_send(acfd, cdkey, passwd, fdid, star);
//#else
saacproto_ACCharList_send(acfd, cdkey, passwd, fdid );
//#endif
CONNECT_setState( fd, WHILEDOWNLOADCHARLIST );
CONNECT_setStarttime(fd,0);
}
void lssproto_Echo_recv( int fd,char* arg0 )
{
lssproto_Echo_send( fd , arg0 );
}
#define CHECKFD if( CONNECT_isCLI( fd ) == FALSE )return; if( CONNECT_isLOGIN(fd) == FALSE )return;
#define CHECKFDANDTIME if( CONNECT_isCLI(fd) == FALSE )return; if( CONNECT_isLOGIN(fd) == FALSE )return;
void lssproto_W_recv( int fd,int x,int y,char* direction )
{
//ttom +3
int fd_charaindex, ix, iy;
fd_charaindex = CONNECT_getCharaindex( fd );
ix=CHAR_getInt(fd_charaindex, CHAR_X);
iy=CHAR_getInt(fd_charaindex, CHAR_Y);
// CoolFish: Prevent Trade Cheat 2001/4/18
if (CHAR_getWorkInt(fd_charaindex, CHAR_WORKTRADEMODE) != CHAR_TRADE_FREE)
return;
if( CHAR_getWorkInt(fd_charaindex,CHAR_WORKSTREETVENDOR)!=-1) return;
// nuke 0407
if (checkNu(fd)<0) {
// Robin 0521
print(" NU-Err ");
CHAR_talkToCli(fd_charaindex, -1, "Ѷ<EFBFBD>Ŵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
CONNECT_setCloseRequest( fd , 1 );
return;
}
//ttom debug
if((x==0)&&(y==0)){
//CHAR_talkToCli(fd_charaindex, -1, "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ߡ<EFBFBD>", CHAR_COLORYELLOW);
// Roibn 03/14
return;
}
//ttom avoid the warp at will 11/6
{
int i_diff_x,i_diff_y;
i_diff_x=abs(ix-x);
i_diff_y=abs(iy-y);
// Robin 03/14
if( (i_diff_x>1)||(i_diff_y>1) ){
// Robin 0518
//CHAR_talkToCli(fd_charaindex, -1, "<22><><EFBFBD><EFBFBD>·<EFBFBD><C2B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ߡ<EFBFBD>", CHAR_COLORYELLOW);
//return;
x = ix;
y = iy;
}
}
if(!(MAP_walkAble(fd_charaindex,CHAR_getInt(fd_charaindex, CHAR_FLOOR),x,y))){
// Robin 03/14
x = ix;
y = iy;
}else{
}
CHAR_walk_init( fd, x, y, direction, TRUE);
}
/*------------------------------------------------------------
------------------------------------------------------------*/
void lssproto_W2_recv( int fd,int x,int y,char* direction )
{
//ttom +3
int fd_charaindex, ix, iy, i_fl,wx,wy,w_fl,warfd;
char workxyd[30];
char workbuf[20];
char w_d[5];
//Char *chwk;// CoolFish: Rem 2001/4/18
fd_charaindex = CONNECT_getCharaindex( fd );
ix=CHAR_getInt(fd_charaindex, CHAR_X);
iy=CHAR_getInt(fd_charaindex, CHAR_Y);
i_fl=CHAR_getInt(fd_charaindex, CHAR_FLOOR);
// CoolFish: Prevent Trade Cheat 2001/4/18
if (CHAR_getWorkInt(fd_charaindex, CHAR_WORKTRADEMODE) != CHAR_TRADE_FREE)
return;
if( CHAR_getWorkInt(fd_charaindex,CHAR_WORKSTREETVENDOR)!=-1) return;
#ifdef _BATTLEEND_FIX
if( CHAR_getWorkInt(fd_charaindex,CHAR_WORKBALLTELENDTIME)>0)
CHAR_setWorkInt(fd_charaindex,CHAR_WORKBALLTELENDTIME,0);
#endif
#ifdef _NO_QUICK_WAR
if( strlen(direction)==1 && strstr("abcdefgh",direction)!=NULL ){
if(strlen(CHAR_getWorkChar(fd_charaindex,CHAR_WARWORKXYD))!=0){
strcpy(workxyd,CHAR_getWorkChar(fd_charaindex,CHAR_WARWORKXYD));
if(getStringFromIndexWithDelim(workxyd,"|", 1, workbuf, sizeof(workbuf)) == FALSE)
w_fl=-1;
w_fl=atoi(workbuf);
if(getStringFromIndexWithDelim(workxyd,"|", 2, workbuf, sizeof(workbuf)) == FALSE)
wx=-1;
wx=atoi(workbuf);
if(getStringFromIndexWithDelim(workxyd,"|", 3, workbuf, sizeof(workbuf)) == FALSE)
wy=-1;
wy=atoi(workbuf);
if(getStringFromIndexWithDelim(workxyd,"|", 4, workbuf, sizeof(workbuf)) == FALSE)
strcpy(w_d,"z");
strcpy(w_d,workbuf);
if(i_fl==w_fl && x == wx && y == wy && (strcmp(w_d,direction)==0 || (strcmp(w_d,"c")==0 && strcmp(direction,"g")==0) || (strcmp(w_d,"g")==0 && strcmp(direction,"c")==0)) ){
if(getStayEncount(fd)==1){
return;
}
setStayEncount(fd);
{
Char *ch;
ch = CHAR_getCharPointer( fd_charaindex);
if( ch == NULL ) return;
strcpysafe( ch->charfunctable[CHAR_LOOPFUNCTEMP1].string,
sizeof( ch->charfunctable[CHAR_LOOPFUNCTEMP1]), "CHAR_BattleStayLoop");//ս<><D5BD>
CHAR_setInt( fd_charaindex, CHAR_LOOPINTERVAL, 2500);
CHAR_constructFunctable( fd_charaindex);
}
return;
}
sprintf(workxyd,"%d|%d|%d|%s",i_fl,x,y,direction);
CHAR_setWorkChar(fd_charaindex,CHAR_WARWORKXYD,workxyd);
}
sprintf(workxyd,"%d|%d|%d|%s",i_fl,x,y,direction);
CHAR_setWorkChar(fd_charaindex,CHAR_WARWORKXYD,workxyd);
}else if(strcmp(direction,"gcgcgcgcgc")==0 || strcmp(direction,"gcgc")==0){
if(getStayEncount(fd)==1){
return;
}
setStayEncount(fd);
{
Char *ch;
ch = CHAR_getCharPointer( fd_charaindex);
if( ch == NULL ) return;
strcpysafe( ch->charfunctable[CHAR_LOOPFUNCTEMP1].string,
sizeof( ch->charfunctable[CHAR_LOOPFUNCTEMP1]), "CHAR_BattleStayLoop");//ս<><D5BD>
CHAR_setInt( fd_charaindex, CHAR_LOOPINTERVAL, 2500);
CHAR_constructFunctable( fd_charaindex);
}
return;
}
#endif
//ttom avoid the warp at will 11/6
{
int i_diff_x,i_diff_y;
//ix=CHAR_getInt(fd_charaindex, CHAR_X);
//iy=CHAR_getInt(fd_charaindex, CHAR_Y);
//i_fl=CHAR_getInt(fd_charaindex, CHAR_FLOOR);
i_diff_x=abs(ix-x);
i_diff_y=abs(iy-y);
if( (i_diff_x>1)||(i_diff_y>1) ){//2
//print("\n<www>Warp Error!!!!!!!!!");
//print("\n<www>the origion->fd=%d,x=%d,y=%d",fd,ix,iy);
//print("\n<www>the modify-->fd=%d,X=%d,Y=%d,dir=%s",fd,x,y,direction);
x=ix;
y=iy;
// Robin 03/14
//return;
}
//if((i_fl==117)&&(ix==225)&&(iy==13)) goto END_w;
}//ttom
if(!(MAP_walkAble(fd_charaindex,CHAR_getInt(fd_charaindex, CHAR_FLOOR),x,y))){
// print("\n<wwww> the map is invaild(f:%d,x:%d,y:%d)",CHAR_getInt(fd_charaindex, CHAR_FLOOR),x,y);
x = ix;
y = iy;
}
CHAR_walk_init( fd, x, y, direction, FALSE);
}
void lssproto_SKD_recv( int fd,int dir, int index)
{
CHECKFDANDTIME;
}
void lssproto_ID_recv( int fd,int x,int y,int haveitemindex,int toindex )
{
int to_charaindex;
int fd_charaindex;
CHECKFDANDTIME;
fd_charaindex = CONNECT_getCharaindex( fd );
// CoolFish: Prevent Trade Cheat 2001/4/18
if (CHAR_getWorkInt(fd_charaindex, CHAR_WORKTRADEMODE) != CHAR_TRADE_FREE)
return;
if( CHAR_getWorkInt(fd_charaindex,CHAR_WORKSTREETVENDOR)!=-1) return;
if( CHAR_getWorkInt( fd_charaindex, CHAR_WORKBATTLEMODE)
!= BATTLE_CHARMODE_NONE) return ;
//ttom avoid the warp at will 12/5
{
int ix,iy;
ix=CHAR_getInt(fd_charaindex, CHAR_X);
iy=CHAR_getInt(fd_charaindex, CHAR_Y);
x=ix;
y=iy;
}
// if( CHAR_getInt( fd_charaindex, CHAR_RIDEPET) + 1 == toindex ){
// CHAR_talkToCli( fd_charaindex , -1, "<22><><EFBFBD><EFBFBD><EFBFBD>޷<EFBFBD>ʹ<EFBFBD>ø<EFBFBD><C3B8><EFBFBD>Ʒ<EFBFBD><C6B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʹ<EFBFBD>ã<EFBFBD>", CHAR_COLORRED);
// return;
// }
CHAR_setMyPosition( fd_charaindex, x,y,TRUE);
to_charaindex = Callfromcli_Util_getTargetCharaindex( fd, toindex);
CHAR_ItemUse( fd_charaindex, to_charaindex, haveitemindex );
}
/*------------------------------------------------------------
* <EFBFBD><EFBFBD>įë<EFBFBD><EFBFBD><EFBFBD><EFBFBD>
------------------------------------------------------------*/
void lssproto_ST_recv( int fd,int titleindex )
{
CHECKFDANDTIME;
CHAR_selectTitle( CONNECT_getCharaindex( fd) , titleindex );
}
/*------------------------------------------------------------
* <EFBFBD><EFBFBD>įë<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
------------------------------------------------------------*/
void lssproto_DT_recv( int fd,int titleindex )
{
CHECKFDANDTIME;
CHAR_deleteTitle( CONNECT_getCharaindex(fd) , titleindex );
}
/*------------------------------------------------------------
------------------------------------------------------------*/
void lssproto_FT_recv( int fd,char* data )
{
CHECKFDANDTIME;
// Robin 04/23 debug
if( strlen(data) > 12 ) return;
if( checkStringErr(data) ) return;
CHAR_inputOwnTitle( CONNECT_getCharaindex(fd) , data);
}
/*------------------------------------------------------------
------------------------------------------------------------*/
void lssproto_PI_recv( int fd,int x, int y, int dir )
{
int fd_charaindex;
CHECKFDANDTIME;
fd_charaindex = CONNECT_getCharaindex( fd );
{//ttom avoid warp at will
int ix,iy;
ix=CHAR_getInt(fd_charaindex, CHAR_X);
iy=CHAR_getInt(fd_charaindex, CHAR_Y);
if( (ix!=x)||(iy!=y)){
//print("\n<PI>--Error!!!!");
//print("\n<PI>origion x=%d,y=%d",ix,iy);
//print("\n<PI>modify X=%d,Y=%d",x,y);
x=ix;
y=iy;
}
}//ttom end
CHAR_setMyPosition( fd_charaindex, x,y,TRUE);
if( CHAR_getWorkInt( fd_charaindex, CHAR_WORKBATTLEMODE)
!= BATTLE_CHARMODE_NONE) return ;
CHAR_PickUpItem( fd_charaindex, dir);
}
void lssproto_DI_recv( int fd,int x, int y, int itemindex )
{
int charaindex;
CHECKFDANDTIME;
charaindex = CONNECT_getCharaindex( fd );
if( CHAR_getWorkInt(charaindex, CHAR_WORKTRADEMODE) != CHAR_TRADE_FREE) return;
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEMODE) != BATTLE_CHARMODE_NONE) return;
if( CHAR_getWorkInt(charaindex,CHAR_WORKSTREETVENDOR)!=-1) return;
CHAR_setMyPosition( charaindex ,
CHAR_getInt( charaindex, CHAR_X), CHAR_getInt( charaindex, CHAR_Y), TRUE);
CHAR_DropItem( charaindex, itemindex );
}
void lssproto_DP_recv( int fd,int x, int y, int petindex )
{
int fd_charaindex;
CHECKFDANDTIME;
fd_charaindex = CONNECT_getCharaindex( fd );
if (CHAR_getWorkInt(fd_charaindex, CHAR_WORKTRADEMODE) != CHAR_TRADE_FREE)
return;
if( CHAR_getWorkInt(fd_charaindex,CHAR_WORKSTREETVENDOR)!=-1) return;
{
int ix,iy;
ix=CHAR_getInt(fd_charaindex, CHAR_X);
iy=CHAR_getInt(fd_charaindex, CHAR_Y);
x=ix;
y=iy;
}
CHAR_setMyPosition( fd_charaindex , x,y,TRUE);
if( CHAR_getWorkInt( fd_charaindex , CHAR_WORKBATTLEMODE)
!= BATTLE_CHARMODE_NONE) return ;
PET_dropPet( fd_charaindex, petindex);
}
/*------------------------------------------------------------
------------------------------------------------------------*/
void lssproto_DG_recv( int fd,int x, int y, int amount )
{
int fd_charaindex;
CHECKFDANDTIME;
fd_charaindex = CONNECT_getCharaindex( fd );
//ttom avoid the warp at will 12/15
{
int ix,iy;
ix=CHAR_getInt(fd_charaindex, CHAR_X);
iy=CHAR_getInt(fd_charaindex, CHAR_Y);
x=ix;
y=iy;
}
CHAR_setMyPosition( fd_charaindex, x,y,TRUE);
if( CHAR_getWorkInt( fd_charaindex, CHAR_WORKBATTLEMODE)
!= BATTLE_CHARMODE_NONE) return ;
// CoolFish: Prevent Trade Cheat 2001/4/18
if (CHAR_getWorkInt(fd_charaindex, CHAR_WORKTRADEMODE) != CHAR_TRADE_FREE)
return;
if( CHAR_getWorkInt(fd_charaindex,CHAR_WORKSTREETVENDOR)!=-1) return;
CHAR_DropMoney( fd_charaindex, amount );
}
/*------------------------------------------------------------
------------------------------------------------------------*/
void lssproto_MI_recv( int fd,int fromindex,int toindex )
{
int fd_charaindex;
CHECKFDANDTIME;
fd_charaindex = CONNECT_getCharaindex( fd );
// CoolFish: Prevent Trade Cheat 2001/4/18
if (CHAR_getWorkInt(fd_charaindex, CHAR_WORKTRADEMODE) != CHAR_TRADE_FREE)
return;
if( CHAR_getWorkInt( fd_charaindex, CHAR_WORKBATTLEMODE)
!= BATTLE_CHARMODE_NONE) return ;
if( CHAR_getWorkInt(fd_charaindex,CHAR_WORKSTREETVENDOR)!=-1) return;
CHAR_moveEquipItem( fd_charaindex, fromindex, toindex );
}
#ifdef _PET_ITEM
void lssproto_PETITEM_recv( int fd,int x,int y,int petindex,int fromindex,int toindex )
{
int fd_charaindex;
CHECKFDANDTIME;
fd_charaindex = CONNECT_getCharaindex( fd );
// CoolFish: Prevent Trade Cheat 2001/4/18
if (CHAR_getWorkInt(fd_charaindex, CHAR_WORKTRADEMODE) != CHAR_TRADE_FREE)
return;
if( CHAR_getWorkInt(fd_charaindex,CHAR_WORKSTREETVENDOR)!=-1) return;
/* <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>º<EFBFBD>ƥ<EFBFBD><C6A5>ľ<EFBFBD><C4BE>¦<EFBFBD>Ⱦ<EFBFBD><C8BE><EFBFBD><EFBFBD>µ<EFBFBD> <20><>ؤԻ */
if( CHAR_getWorkInt( fd_charaindex, CHAR_WORKBATTLEMODE)
!= BATTLE_CHARMODE_NONE) return ;
CHAR_movePetItem( fd_charaindex, petindex, fromindex, toindex );
}
#endif
/*------------------------------------------------------------
* <EFBFBD><EFBFBD>ƽ<EFBFBD><EFBFBD>ʧ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>
------------------------------------------------------------*/
void lssproto_SKUP_recv( int fd,int skillid )
{
int fd_charaindex;
CHECKFDANDTIME;
fd_charaindex = CONNECT_getCharaindex(fd);
if( CHAR_getWorkInt( fd_charaindex, CHAR_WORKBATTLEMODE)
!= BATTLE_CHARMODE_NONE) return ;
CHAR_SkillUp(fd_charaindex,skillid);
}
/*------------------------------------------------------------
* <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>
------------------------------------------------------------*/
void lssproto_MSG_recv( int fd,int index,char* message, int color )
{
int fd_charaindex;
CHECKFD;
fd_charaindex = CONNECT_getCharaindex( fd);
ADDRESSBOOK_sendMessage( fd_charaindex, index,message, color );
}
/*------------------------------------------------------------
------------------------------------------------------------*/
void lssproto_AB_recv( int fd )
{
int fd_charaindex;
CHECKFDANDTIME;
fd_charaindex = CONNECT_getCharaindex( fd );
ADDRESSBOOK_sendAddressbookTable( fd_charaindex );
}
/*------------------------------------------------------------
------------------------------------------------------------*/
void lssproto_DAB_recv( int fd , int index)
{
int fd_charaindex;
CHECKFDANDTIME;
fd_charaindex = CONNECT_getCharaindex( fd );
ADDRESSBOOK_deleteEntry( fd_charaindex ,index);
}
void lssproto_AAB_recv( int fd , int x, int y)
{
int fd_charaindex;
CHECKFDANDTIME;
fd_charaindex = CONNECT_getCharaindex( fd );
{
int ix,iy;
ix=CHAR_getInt(fd_charaindex, CHAR_X);
iy=CHAR_getInt(fd_charaindex, CHAR_Y);
if( (ix!=x)||(iy!=y)){
x=ix;
y=iy;
}
}
CHAR_setMyPosition( fd_charaindex , x,y,TRUE);
ADDRESSBOOK_addEntry( fd_charaindex );
}
void lssproto_L_recv( int fd, int dir )
{
int fd_charaindex;
CHECKFDANDTIME;
fd_charaindex = CONNECT_getCharaindex( fd );
CHAR_Look( fd_charaindex ,dir );
}
/*------------------------------------------------------------
* <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ö<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˪<EFBFBD><EFBFBD>
------------------------------------------------------------*/
void lssproto_TK_recv( int fd,int x, int y,char* message,int color, int area )
{
int fd_charaindex,ix,iy;//ttom+2
int fmindex, channel;
int i;
CHECKFD;
fd_charaindex = CONNECT_getCharaindex( fd );
fmindex = CHAR_getInt( fd_charaindex, CHAR_FMINDEX );
channel = CHAR_getWorkInt( fd_charaindex, CHAR_WORKFMCHANNEL );
{// Robin 0629 silent
int silentSec, talkCount;
silentSec = CHAR_getInt(fd_charaindex,CHAR_SILENT);
if( silentSec > 0 ) {
int loginTime;
char buf[256];
int leftSec;
loginTime = CHAR_getWorkInt(fd_charaindex, CHAR_WORKLOGINTIME );
// <20><>ֹʱ<D6B9><CAB1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˷<EFBFBD><EFBFBD><EFBFBD><ECB3A3><EFBFBD><EFBFBD> Robin 20040817
if( (int)NowTime.tv_sec < loginTime) {
CHAR_setInt(fd_charaindex, CHAR_SILENT, 0 );
return;
}
if( ((int)NowTime.tv_sec -loginTime) > silentSec ) {
CHAR_setInt(fd_charaindex, CHAR_SILENT, 0 );
return;
}
silentSec += 10; //<2F><><EFBFBD><EFBFBD>10<31><30>
leftSec = silentSec - ((int)NowTime.tv_sec - loginTime);
sprintf(buf, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!!<21><><EFBFBD><EFBFBD>%d<><EFBFBD>ٽ<EFBFBD><D9BD><EFBFBD><EFBFBD><EFBFBD>10<31><30><EFBFBD>ӡ<EFBFBD>", leftSec );
CHAR_talkToCli(fd_charaindex, -1, buf, color);
CHAR_setInt(fd_charaindex, CHAR_SILENT, silentSec );
return;
}
talkCount = CHAR_getWorkInt(fd_charaindex, CHAR_WORKTALKCOUNT );
talkCount ++;
CHAR_setWorkInt( fd_charaindex, CHAR_WORKTALKCOUNT, talkCount);
if( talkCount > 40 ) {
int lastTalkTime = CHAR_getWorkInt(fd_charaindex, CHAR_WORKTALKTIME );
if( (int)NowTime.tv_sec - lastTalkTime < 10 ) {
CHAR_setInt( fd_charaindex,CHAR_SILENT, 60 );
CHAR_setWorkInt( fd_charaindex, CHAR_WORKLOGINTIME, (int)NowTime.tv_sec );
CHAR_talkToCli( fd_charaindex, -1, "<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>", color);
CHAR_setWorkInt(fd_charaindex, CHAR_WORKTALKCOUNT, 0 );
return;
}else {
CHAR_setWorkInt( fd_charaindex, CHAR_WORKTALKTIME, (int)NowTime.tv_sec );
CHAR_setWorkInt(fd_charaindex, CHAR_WORKTALKCOUNT, 0 );
}
}
}
ix=CHAR_getInt(fd_charaindex, CHAR_X);
iy=CHAR_getInt(fd_charaindex, CHAR_Y);
x=ix;
y=iy;
CHAR_setMyPosition( fd_charaindex, x,y,TRUE);
if(!CONNECT_get_shutup(fd)){ //ttom add the shut up function
#ifdef _UNTEXT_TALK
for(i=0;i<textcnt;i++){
if(strstr(message,getUnText(i))!=NULL){
strcpy(message,"P|hi");
break;
}
}
#endif
#ifdef _NO_DAOLUAN
{
int floori;
for(floori=1;floori<=30;floori++){
if(getTalkFloor(floori)==-1)break;
if(CHAR_getInt(fd_charaindex,CHAR_FLOOR)==getTalkFloor(floori)){
area = 2;
}
}
}
#endif
if(area<2){
area = 2;
}
CHAR_Talk( fd,fd_charaindex, message, color, area );
}
}
void lssproto_M_recv( int fd, int fl, int x1, int y1 , int x2, int y2 )
{
char* mapdata;
RECT seek={x1,y1,x2-x1,y2-y1},ret;
CHECKFD;
mapdata = MAP_getdataFromRECT(fl,&seek,&ret);
if( mapdata != NULL ){
lssproto_M_send( fd, fl, ret.x, ret.y,
ret.x+ret.width, ret.y+ret.height, mapdata );
}
}
/*------------------------------------------------------------
------------------------------------------------------------*/
void lssproto_C_recv( int fd, int index )
{
/* <20><>ľ<EFBFBD><C4BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>޼<EFBFBD>ɬ<EFBFBD><C9AC>ëέئ<CEAD><D8A6><EFBFBD>DZ<EFBFBD><C7B1><EFBFBD><EFBFBD><EFBFBD> */
CHECKFD;
#ifdef _WAN_FIX
if(CHAR_getInt( CONNECT_getCharaindex( fd ), CHAR_WHICHTYPE ) == CHAR_TYPEPLAYER)
return;
#endif
CHAR_sendCSpecifiedObjindex( fd, index);
}
void lssproto_S_recv( int fd, char* category )
{
char* string;
int fd_charaindex;
fd_charaindex = CONNECT_getCharaindex( fd );
string = CHAR_makeStatusString( fd_charaindex, category );
if( string != NULL )
lssproto_S_send( fd , string );
}
void lssproto_EV_recv( int fd,int event,int seqno,int x,int y, int dir )
{
int rc;
int fx,fy;
int fd_charaindex;
CHECKFD;
fd_charaindex = CONNECT_getCharaindex( fd );
{
int ix,iy;
ix=CHAR_getInt(fd_charaindex, CHAR_X);
iy=CHAR_getInt(fd_charaindex, CHAR_Y);
if( ( ix != x ) || ( iy != y ) ){
goto CK1;
}
goto OK;
}
CK1:
{
OBJECT object;
int ix,iy,ifloor,i,j;
int warp_point_x[9];
int warp_point_y[9];
int warp_point=0;
ix=CHAR_getInt(fd_charaindex, CHAR_X);
iy=CHAR_getInt(fd_charaindex, CHAR_Y);
ifloor=CHAR_getInt(fd_charaindex,CHAR_FLOOR);
for(i=iy-1;i<=iy+1;i++){
for(j=ix-1;j<=ix+1;j++){
for( object = MAP_getTopObj(ifloor,j,i) ; object ;object = NEXT_OBJECT(object ) ){
int o = GET_OBJINDEX(object);
if( OBJECT_getType(o) == OBJTYPE_CHARA ){
int etype;
int charaindex=OBJECT_getIndex(o);
if( !CHAR_CHECKINDEX(charaindex) ) continue;
etype = CHAR_getWorkInt( charaindex, CHAR_WORKEVENTTYPE);
if( etype != CHAR_EVENT_NONE ) {
if(etype==CHAR_EVENT_WARP){
warp_point_x[warp_point]=j;
warp_point_y[warp_point]=i;
warp_point++;
}
}
}
#ifdef _MAP_WARPPOINT
else if( OBJECT_getType(o) == OBJTYPE_WARPPOINT ){
int etype = OBJECT_getchartype( o);
if( etype != CHAR_EVENT_NONE ) {
warp_point_x[warp_point]=j;
warp_point_y[warp_point]=i;
warp_point++;
break;
}
}
#endif
}
}
}
for(i=0;i<warp_point;i++){
if((x==warp_point_x[i])&& (y==warp_point_y[i]))
goto OK;
}
x=CHAR_getInt(fd_charaindex, CHAR_X);
y=CHAR_getInt(fd_charaindex, CHAR_Y);
}
OK:
CHAR_setMyPosition( fd_charaindex, x,y,TRUE);
CHAR_setWorkChar( fd_charaindex , CHAR_WORKWALKARRAY,"");
if( dir < 0 || dir > 7) {
fx = CHAR_getInt(fd_charaindex, CHAR_X);
fy = CHAR_getInt(fd_charaindex, CHAR_Y);
}else {
CHAR_getCoordinationDir( dir, CHAR_getInt(fd_charaindex, CHAR_X),
CHAR_getInt(fd_charaindex, CHAR_Y),1,&fx,&fy);
}
rc = EVENT_main(fd_charaindex, event,fx,fy);
lssproto_EV_send( fd, seqno, rc);
}
/*------------------------------------------------------------
------------------------------------------------------------*/
void lssproto_EN_recv( int fd , int x,int y )
{
int ret = FALSE, err = 0;
int fd_charaindex;
CHECKFD;
fd_charaindex = CONNECT_getCharaindex( fd);
#ifdef _ALLBLUES_LUA_1_7
if( CHAR_getInt( fd_charaindex, CHAR_WHICHTYPE) == CHAR_TYPEPLAYER ) {
if( CHAR_getWorkInt( fd_charaindex, CHAR_WORKBATTLEMODE ) == BATTLE_CHARMODE_NONE ){
if(CharVsEnemyFunction( fd_charaindex ) == TRUE)return;
}
}
#endif
//print(" EN_recv ");
if( CHAR_getWorkInt( fd_charaindex, CHAR_WORKPARTYMODE) != CHAR_PARTY_CLIENT){
CHAR_setMyPosition( fd_charaindex, x,y,TRUE);
CHAR_setWorkChar( fd_charaindex, CHAR_WORKWALKARRAY,"");
err = BATTLE_CreateVsEnemy( fd_charaindex,0, -1);
if( err != 0 ){
ret = FALSE;
}else{
ret = TRUE;
}
}
}
/*------------------------------------------------------------
------------------------------------------------------------*/
void lssproto_DU_recv( int fd , int x,int y )
{
int fd_charaindex;
fd_charaindex = CONNECT_getCharaindex( fd );
// if(CHAR_getWorkInt(fd_charaindex, CHAR_WORKSAFEMODE)==0)
// {
// lssproto_EN_send( fd, FALSE, 0 );
// CHAR_SafePassword(fd_charaindex);
// return;
// }
if(CHAR_getInt(fd_charaindex,CHAR_FLOOR)==20000){
lssproto_EN_send( fd, FALSE, 0 );
return;
}
if(CHAR_getInt(fd_charaindex,CHAR_FLOOR)==getNoPkMap()){
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD>õ<EFBFBD>ͼ<EFBFBD><EFBFBD>ֹPK<EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
lssproto_EN_send( fd, FALSE, 0 );
return;
}
OBJECT object;
int ret = FALSE, charaindex = -1, enemyindex;
int frontx,fronty;
int cnt = 0;
BOOL found = FALSE;
CHECKFDANDTIME;
{//ttom avoid warp at will
int ix,iy;
ix=CHAR_getInt(fd_charaindex, CHAR_X);
iy=CHAR_getInt(fd_charaindex, CHAR_Y);
if( (ix!=x)||(iy!=y)){
//print("\n<DU>--Error!!!!");
//print("\n<DU>origion x=%d,y=%d",ix,iy);
//print("\n<DU>modify X=%d,Y=%d",x,y);
x=ix;
y=iy;
}
}
if( CHAR_getWorkInt( fd_charaindex, CHAR_WORKPARTYMODE)
!= CHAR_PARTY_CLIENT)
{
int i;
// <20><><EFBFBD>м<EFBFBD><D0BC>̼<EFBFBD><CCBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>
charaindex = fd_charaindex;
CHAR_setMyPosition( charaindex, x,y,TRUE);
/* WALKARRAYë<59><C3AB><EFBFBD><EFBFBD>ʧ<EFBFBD><CAA7><EFBFBD><EFBFBD> */
CHAR_setWorkChar( charaindex, CHAR_WORKWALKARRAY,"");
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
for( i = 0; i < CONNECT_WINDOWBUFSIZE ; i ++ ) {
CONNECT_setDuelcharaindex( fd, i, -1 );
}
CHAR_getCoordinationDir( CHAR_getInt( charaindex, CHAR_DIR ) ,
CHAR_getInt( charaindex , CHAR_X ),
CHAR_getInt( charaindex , CHAR_Y ) ,
1 , &frontx , &fronty );
for( object = MAP_getTopObj( CHAR_getInt( charaindex, CHAR_FLOOR),
frontx,fronty) ;
object ;
object = NEXT_OBJECT(object ) )
{
int toindex;
int objindex = GET_OBJINDEX(object);
/* ƽ<>ҷ<EFBFBD><D2B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ԫ<EFBFBD><D4AA>ئ<EFBFBD><D8A6> */
if( OBJECT_getType( objindex) != OBJTYPE_CHARA) continue;
toindex = OBJECT_getIndex( objindex);
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ԫ<EFBFBD><D4AA>ئ<EFBFBD><D8A6> */
if( CHAR_getInt( toindex, CHAR_WHICHTYPE) != CHAR_TYPEPLAYER
#ifdef _PLAYER_NPC
&& CHAR_getInt( toindex, CHAR_WHICHTYPE) != CHAR_TYPEPLAYERNPC
#endif
// && CHAR_getInt( toindex, CHAR_WHICHTYPE) != CHAR_TYPEPLAYERNPC
) continue;
found = TRUE;
if( CHAR_getWorkInt( toindex, CHAR_WORKBATTLEMODE) != BATTLE_CHARMODE_NONE )continue;
int floor = CHAR_getInt( charaindex, CHAR_FLOOR );
if(!CHAR_getFlg( toindex, CHAR_ISDUEL)
#ifdef _BATTLE_FLOOR
&& (!strcmp(getBattleFloorCF(),"<EFBFBD><EFBFBD>")
&& floor!=getBattleFloor(1)
&& floor!=getBattleFloor(2)
&& floor!=getBattleFloor(3)
&& floor!=getBattleFloor(4)
&& floor!=getBattleFloor(5))
#endif
)continue;
#ifdef _ALLBLUES_LUA_1_5
int flg = FreeVsPlayer(charaindex, toindex);
if( flg == 1){
lssproto_EN_send( fd, FALSE, 0 );
return;
}else if( flg == 2){
return;
}else
#endif
#ifdef _AUTO_PK
if(!CHAR_getFlg( toindex, CHAR_ISDUEL)){
if(AutoPk_PKTimeGet()>0)continue;
if(floor!=20000)continue;
if(CHAR_getInt( charaindex, CHAR_AUTOPK ) == -1)continue;
if(CHAR_getInt( toindex, CHAR_AUTOPK ) == -1)continue;
}
#endif
// shan begin
{
int i;
for( i=0; i<FAMILY_FMPKFLOOR; i++){
if( fmpkflnum[i].fl == CHAR_getInt( charaindex, CHAR_FLOOR) ){
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEFLAG) == -1 ){
lssproto_EN_send( fd, FALSE, 0 );
return;
}
if(CHAR_getInt( charaindex, CHAR_FMINDEX) == CHAR_getInt( toindex, CHAR_FMINDEX)){
lssproto_EN_send( fd, FALSE, 0 );
return;
}
}
}
}
// shan end
// <20>Ҽ<EFBFBD>ئ<EFBFBD><D8A6><EFBFBD><EFBFBD>ë<EFBFBD><C3AB><EFBFBD><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD>
if( CHAR_getWorkInt( toindex, CHAR_WORKPARTYMODE )
== CHAR_PARTY_CLIENT )
{
int tmpindex = CHAR_getWorkInt( toindex, CHAR_WORKPARTYINDEX1 );
/* <20><><EFBFBD><EFBFBD><ECBBA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƥئ<C6A5><D8A6><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ؤ<EFBFBD><D8A4> */
if( CHAR_CHECKINDEX( tmpindex)) {
if( CHAR_getWorkInt( tmpindex, CHAR_WHICHTYPE) != CHAR_TYPEPLAYER
#ifdef _PLAYER_NPC
&& CHAR_getInt( tmpindex, CHAR_WHICHTYPE) != CHAR_TYPEPLAYERNPC
#endif
// && CHAR_getInt( tmpindex, CHAR_WHICHTYPE) != CHAR_TYPEPLAYERNPC
){
continue;
}
}
}
CONNECT_setDuelcharaindex( fd, cnt,toindex );
cnt++;
if( cnt == CONNECT_WINDOWBUFSIZE ) break;
}
/* <20><>ئ<EFBFBD><D8A6><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
if( cnt == 0 ) {
goto lssproto_DU_recv_Err;
}
/* <20><><EFBFBD>з<EFBFBD><D0B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>޼<EFBFBD><DEBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
else if( cnt == 1 ) {
enemyindex = CONNECT_getDuelcharaindex(fd,0);
// <20><><EFBFBD><EFBFBD><ECBBA5>ئ<EFBFBD>չ<EFBFBD><D5B9><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>޼<EFBFBD><DEBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>»<EFBFBD>
// <20>Ҽ<EFBFBD>ئ<EFBFBD><D8A6><EFBFBD><EFBFBD>ë<EFBFBD><C3AB><EFBFBD><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD>
if( CHAR_getWorkInt( enemyindex, CHAR_WORKPARTYMODE )
== CHAR_PARTY_CLIENT )
{
enemyindex = CHAR_getWorkInt( enemyindex, CHAR_WORKPARTYINDEX1 );
// ئ<><EFBFBD>ʻ<EFBFBD><CABB><EFBFBD>ئ<EFBFBD><D8A6>
if( enemyindex < 0 )goto lssproto_DU_recv_Err;
}
ret = BATTLE_CreateVsPlayer( charaindex, enemyindex );
if( ret != 0 ){
ret = FALSE;
}else{
ret = TRUE;
}
}
else if( cnt > 1 ) {
int strlength;
char msgbuf[1024];
char escapebuf[2048];
strcpy( msgbuf, "1\nҪ<EFBFBD><EFBFBD>˭ս<EFBFBD><EFBFBD><EFBFBD><EFBFBD>\n");
strlength = strlen( msgbuf);
for( i = 0;
CONNECT_getDuelcharaindex( fd,i) != -1
&& i< CONNECT_WINDOWBUFSIZE;
i ++ )
{
char *a = CHAR_getChar(
CONNECT_getDuelcharaindex( fd,i) , CHAR_NAME);
char buf[256];
snprintf( buf, sizeof( buf),"%s [%s]\n", a,
CHAR_getWorkInt(
CONNECT_getDuelcharaindex(fd,i),
CHAR_WORKPARTYMODE )
!= CHAR_PARTY_NONE ? "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>": "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
if( strlength + strlen( buf) > arraysizeof( msgbuf)){
print( "%s:%d<>Ӵ<EFBFBD>ѶϢbuffer<65><72><EFBFBD>\n",
__FILE__,__LINE__);
break;
}
strcpy( &msgbuf[strlength], buf);
strlength += strlen(buf);
}
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_SELECT,
WINDOW_BUTTONTYPE_CANCEL,
CHAR_WINDOWTYPE_SELECTDUEL,
-1,
makeEscapeString( msgbuf, escapebuf, sizeof(escapebuf)));
ret = TRUE;
}
}
lssproto_DU_recv_Err:;
if( ret == FALSE ) {
/* <20><><EFBFBD><EFBFBD>˪<EFBFBD><CBAA> */
lssproto_EN_send( fd, FALSE, 0 );
if( cnt > 0 ) CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD>ܣ<EFBFBD>", CHAR_COLORYELLOW);
else if( found ) CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD>˿<EFBFBD><EFBFBD>Զ<EFBFBD>ս<EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
else CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>û<EFBFBD><EFBFBD><EFBFBD>κ<EFBFBD><EFBFBD>ˡ<EFBFBD>", CHAR_COLORYELLOW);
}
}
/*------------------------------------------------------------
------------------------------------------------------------*/
void lssproto_EO_recv( int fd, int dummy )
{
int fd_charaindex;
int battle_index;//ttom++
CHECKFD;
fd_charaindex = CONNECT_getCharaindex( fd );
BattleEncountOut( fd_charaindex );
// Nuke start 0827 : Battle acceleration
battle_index=CHAR_getWorkInt(fd_charaindex,CHAR_WORKBATTLEINDEX);
if( BATTLE_CHECKINDEX( battle_index ) == FALSE ){
return;
}
if(BattleArray[battle_index].type != BATTLE_TYPE_P_vs_P){
if(CONNECT_get_watchmode(fd)) {
//print("fd= %d Watching the battle __ lssprot_EO_recv \n",fd);//for debug
CONNECT_set_watchmode(fd,FALSE);
return;
}
else if (checkBEOTime( fd ) < 0) {
//CHAR_talkToCli(fd_charaindex, -1, "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
}
}
// Nuke end
}
/*------------------------------------------------------------
------------------------------------------------------------*/
void lssproto_BU_recv( int fd, int dummy)
{
int fd_charaindex;
CHECKFD;
fd_charaindex = CONNECT_getCharaindex( fd );
// shan 2001/12/25
//BATTLE_WatchStop( fd_charaindex );
}
void lssproto_B_recv( int fd, char *command )
{
// if(strlen(command)<3 && strstr(command,"&")!=NULL)
// return;
int fd_charaindex;
int battle_index;//ttom++
CHECKFD;
fd_charaindex = CONNECT_getCharaindex( fd );
#ifdef _NOJOB_PK
if(CHAR_getInt(fd_charaindex,CHAR_FLOOR)==getNoJobPkMap() && strncmp( command, "P", 1 ) == 0 )
sprintf(command,"G");
#endif
BattleCommandDispach( fd, command );
// Nuke +1 0827: Battle acceleration
battle_index=CHAR_getWorkInt(fd_charaindex,CHAR_WORKBATTLEINDEX);
if( BATTLE_CHECKINDEX( battle_index ) == FALSE ){
return;
}
if(BattleArray[battle_index].type != BATTLE_TYPE_P_vs_P){
if(BattleArray[battle_index].type == BATTLE_TYPE_WATCH) {
CONNECT_set_watchmode(fd,TRUE);
return;
}
}
//Nuke end
}
void lssproto_FS_recv( int fd,int flg )
{
int fd_charaindex;
CHECKFDANDTIME;
fd_charaindex = CONNECT_getCharaindex( fd );
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڱ幫<DAB1><E5B9AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>׷º<D7B7><C2BA><EFBFBD>ޥ */
if(CHAR_getWorkInt( fd_charaindex, CHAR_WORKSAFEMODE)==0)
{
if((flg & CHAR_FS_TRADE ) ==32 )
{
CHAR_SafePassword(fd_charaindex);
return;
}
}
CHAR_setFlg( fd_charaindex, CHAR_ISPARTY,
(flg & CHAR_FS_PARTY )? TRUE:FALSE);
//CHAR_setFlg( fd_charaindex, CHAR_ISBATTLE,
// (flg & CHAR_FS_BATTLE )? TRUE:FALSE);
CHAR_setFlg( fd_charaindex, CHAR_ISDUEL,
(flg & CHAR_FS_DUEL )? TRUE:FALSE);
CHAR_setFlg( fd_charaindex, CHAR_ISPARTYCHAT,
(flg & CHAR_FS_PARTYCHAT )? TRUE:FALSE);
CHAR_setFlg( fd_charaindex, CHAR_ISTRADECARD,
(flg & CHAR_FS_TRADECARD )? TRUE:FALSE);
#ifdef _CHANNEL_MODIFY
//<2F><><EFBFBD><EFBFBD>Ƶ<EFBFBD><C6B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
CHAR_setFlg(fd_charaindex,CHAR_ISTELL,(flg & CHAR_FS_TELL )? TRUE:FALSE);
//<2F><><EFBFBD><EFBFBD>Ƶ<EFBFBD><C6B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
CHAR_setFlg(fd_charaindex,CHAR_ISFM,(flg & CHAR_FS_FM )? TRUE:FALSE);
//ְҵƵ<D2B5><C6B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
CHAR_setFlg(fd_charaindex,CHAR_ISOCC,(flg & CHAR_FS_OCC )? TRUE:FALSE);
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
CHAR_setFlg(fd_charaindex,CHAR_ISCHAT,(flg & CHAR_FS_CHAT )? TRUE:FALSE);
//<2F><><EFBFBD><EFBFBD><EFBFBD>Ի<EFBFBD><D4BB><EFBFBD><EFBFBD><EFBFBD>
CHAR_setFlg(fd_charaindex,CHAR_ISSAVE,(flg & CHAR_FS_SAVE )? TRUE:FALSE);
//<2F><><EFBFBD><EFBFBD>Ƶ<EFBFBD><C6B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
if(getSaType()==95){
CHAR_setFlg(fd_charaindex,CHAR_ISWORLD,(flg & CHAR_FS_WORLD )? TRUE:FALSE);
if(CHAR_getFlg(fd_charaindex,CHAR_ISWORLD)==FALSE)
CHAR_setWorkInt( fd_charaindex , CHAR_WORKALLTALKTYPE, 1);
else if(CHAR_getFlg(fd_charaindex,CHAR_ISWORLD)==TRUE)
CHAR_setWorkInt( fd_charaindex , CHAR_WORKALLTALKTYPE, 0);
}
#endif
// CoolFish: Trade 2001/4/18
CHAR_setFlg( fd_charaindex, CHAR_ISTRADE,
(flg & CHAR_FS_TRADE )? TRUE:FALSE);
/*
if (CHAR_getFlg(fd_charaindex, CHAR_ISTRADECARD) == TRUE)
CHAR_setFlg(fd_charaindex, CHAR_ISTRADE, FALSE);
if (CHAR_getFlg(fd_charaindex, CHAR_ISTRADE) == TRUE)
CHAR_setFlg(fd_charaindex, CHAR_ISTRADECARD, FALSE);
*/
lssproto_FS_send( fd, flg);
}
/*------------------------------------------------------------
------------------------------------------------------------*/
void lssproto_PR_recv( int fd,int x, int y, int request )
{
int result = FALSE;
int fd_charaindex;
CHECKFDANDTIME;
fd_charaindex = CONNECT_getCharaindex( fd );
#if 1 // <20><>ֹ<EFBFBD><D6B9><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
if( request == 1 )
{
int nowFloor;
nowFloor = CHAR_getInt( fd_charaindex, CHAR_FLOOR);
if( nowFloor == 31706
|| nowFloor == 10204
|| (10601 <= nowFloor && nowFloor <= 10605 )
|| nowFloor == 10919 || nowFloor == 10920
|| nowFloor == 20711 || nowFloor == 20712
|| nowFloor == 1008 || nowFloor == 1021
|| nowFloor == 3008 || nowFloor == 3021
|| ( nowFloor <= 8213 && nowFloor >= 8200 )
|| ( nowFloor >= 30017 && nowFloor <= 30021 )
#ifdef _TIME_TICKET
|| check_TimeTicketMap(nowFloor)
#endif
){
//print("\n <20>ķ<EFBFBD><C4B7><EFBFBD>!<21><>ֹ<EFBFBD><D6B9><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!!:%s ", CHAR_getChar( fd_charaindex, CHAR_CDKEY) );
return;
}
}
#endif
{//ttom avoid warp at will
int ix,iy;
ix=CHAR_getInt(fd_charaindex, CHAR_X);
iy=CHAR_getInt(fd_charaindex, CHAR_Y);
if( (ix!=x)||(iy!=y)){
//print("\n<PR>--Error!!!!");
//print("\n<PR>origion x=%d,y=%d",ix,iy);
//print("\n<PR>modify X=%d,Y=%d",x,y);
x=ix;
y=iy;
}
}
CHAR_setMyPosition( fd_charaindex, x,y,TRUE);
if( request == 0 ) {
#ifdef _PLAYER_NPC
if( CHAR_getWorkInt( fd_charaindex, CHAR_WORKPARTYMODE) == CHAR_PARTY_LEADER ) {
int i;
for( i = 0; i < CHAR_PARTYMAX; i ++ ) {
int pindex = CHAR_getWorkInt( fd_charaindex, i + CHAR_WORKPARTYINDEX1);
if( CHAR_CHECKINDEX( pindex) ) {
if(CHAR_getInt( pindex, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYERNPC){
CHAR_setWorkInt( fd_charaindex, i + CHAR_WORKPARTYINDEX1, -1);
CHAR_CharaDelete(pindex);
continue;
}
}
}
}
#endif
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
result = CHAR_DischargeParty(fd_charaindex, 0);
}
else if( request == 1 ) {
result = CHAR_JoinParty(fd_charaindex);
}
}
/*------------------------------------------------------------
------------------------------------------------------------*/
void lssproto_KS_recv( int fd,int petarray )
{
int ret , fd_charaindex,petindex;
CHECKFDANDTIME;
fd_charaindex = CONNECT_getCharaindex( fd );
#ifdef _PET_BUG
petindex = CHAR_getCharPet( fd_charaindex, petarray);
if( CHAR_CHECKINDEX( petindex ) == TRUE ){
if(CHAR_getInt(petindex,CHAR_VITAL)>=getPetPoint(0)*20 || CHAR_getInt(petindex,CHAR_STR)>=getPetPoint(1)*80 || CHAR_getInt(petindex,CHAR_TOUGH)>=getPetPoint(2)*80 || CHAR_getInt(petindex,CHAR_DEX)>=getPetPoint(3)*100){
lssproto_KS_send( fd, petarray, FALSE);
return;
}
}
#endif
if( CHAR_getInt( fd_charaindex, CHAR_RIDEPET) == petarray )
lssproto_KS_send( fd, petarray, FALSE);
ret = PET_SelectBattleEntryPet( fd_charaindex, petarray);
lssproto_KS_send( fd, petarray, ret);
}
#ifdef _STANDBYPET
void lssproto_SPET_recv( int fd, int standbypet )
{
int fd_charaindex;
int i, s_pet =0, cnt =0;
CHECKFDANDTIME;
fd_charaindex = CONNECT_getCharaindex( fd );
if( CHAR_getWorkInt( fd_charaindex, CHAR_WORKBATTLEMODE) != BATTLE_CHARMODE_NONE
&& standbypet >= CHAR_getWorkInt( fd_charaindex, CHAR_WORKSTANDBYPET) ) {
//print("\n <20>ķ<EFBFBD><C4B7><EFBFBD>!??ս<><D5BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>SPET<45><54><EFBFBD>Ӵ<EFBFBD><D3B4><EFBFBD><EFBFBD><EFBFBD>!!:%s ", CHAR_getChar( fd_charaindex, CHAR_CDKEY) );
return;
}
//if( CHAR_getInt( fd_charaindex, CHAR_RIDEPET) == petarray ) {
// lssproto_SPET_send( fd, petarray, FALSE);
//}
for( i =0; i < CHAR_MAXPETHAVE; i++) {
if( standbypet & ( 1 << i ) ) {
//if( CHAR_getInt( fd_charaindex, CHAR_RIDEPET) == i )
// continue;
cnt++;
if( cnt > 3 ) {
//print("\n <20>ķ<EFBFBD><C4B7><EFBFBD>!<21><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E8B3AC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!!:%s ", CHAR_getChar( fd_charaindex, CHAR_CDKEY) );
//lssproto_SPET_send( fd, s_pet, FALSE);
break;
}
s_pet |= ( 1 << i );
}
}
CHAR_setWorkInt( fd_charaindex, CHAR_WORKSTANDBYPET, s_pet);
lssproto_SPET_send( fd, s_pet, TRUE);
}
#endif
/*------------------------------------------------------------
------------------------------------------------------------*/
void lssproto_AC_recv( int fd,int x, int y,int actionno )
{
int fd_charaindex;
CHECKFDANDTIME;
fd_charaindex = CONNECT_getCharaindex( fd );
{//ttom avoid the warp at will
Char *ch;
ch = CHAR_getCharPointer( fd_charaindex);
// CoolFish: +1 2001/11/05
if (!ch) return;
if((ch->data[CHAR_X]!=x)||(ch->data[CHAR_Y]!=y)){
return;
}
}
CHAR_setMyPosition( fd_charaindex, x,y,TRUE);
CHAR_sendAction( fd_charaindex, actionno, FALSE);
return;
}
/*------------------------------------------------------------
------------------------------------------------------------*/
void lssproto_MU_recv( int fd,int x,int y,int array,int toindex )
{
int to_charaindex = -1, fd_charaindex;
CHECKFDANDTIME;
fd_charaindex = CONNECT_getCharaindex( fd );
{//ttom avoid warp at will
int ix,iy;
ix=CHAR_getInt(fd_charaindex, CHAR_X);
iy=CHAR_getInt(fd_charaindex, CHAR_Y);
if( (ix!=x)||(iy!=y)){
//print("\n<MU>--Error!!!!");
//print("\n<MU>origion x=%d,y=%d",ix,iy);
//print("\n<MU>modify X=%d,Y=%d",x,y);
x=ix;
y=iy;
}
}
CHAR_setMyPosition( fd_charaindex, x,y,TRUE);
to_charaindex = Callfromcli_Util_getTargetCharaindex( fd, toindex);
MAGIC_Use( fd_charaindex, array, to_charaindex);
}
void lssproto_JB_recv( int fd,int x,int y )
{
int charaindex, floor;
CHECKFDANDTIME;
charaindex = CONNECT_getCharaindex( fd );
{
int ix,iy;
ix=CHAR_getInt(charaindex, CHAR_X);
iy=CHAR_getInt(charaindex, CHAR_Y);
if( (ix!=x)||(iy!=y)){
x=ix;
y=iy;
}
}
CHAR_setMyPosition( charaindex, x,y,TRUE);
if( CHAR_CHECKINDEX( charaindex ) == FALSE )return;
floor = CHAR_getInt( charaindex, CHAR_FLOOR );
if( floor == 1007
|| floor == 2007
|| floor == 3007
|| floor == 4007
|| floor == 130
|| floor == 40001
|| floor == 40002
|| floor == 40003
|| floor == 40004
|| floor == 40005
|| floor == 40006
|| floor == 40007
|| floor == 40008
|| floor == 40009
|| floor == 40010
#ifdef _AUTO_PK
|| (floor == 20000 && CHAR_getInt( charaindex, CHAR_AUTOPK ) == -1)
#endif
#ifdef _WATCH_FLOOR
|| floor == getWatchFloor(1)
|| floor == getWatchFloor(2)
|| floor == getWatchFloor(3)
|| floor == getWatchFloor(4)
|| floor == getWatchFloor(5)
|| !strcmp(getWatchFloorCF(),"<EFBFBD><EFBFBD>")
#endif
){
BATTLE_WatchTry( charaindex );
}else{
BATTLE_RescueTry( charaindex );
}
}
void lssproto_KN_recv( int fd,int havepetindex,char* data )
{
int fd_charaindex;
CHECKFD;
fd_charaindex = CONNECT_getCharaindex( fd );
// Robin 04/26 debug
if( strlen(data) > 16 ) return;
// CoolFish: Prevent Trade Cheat 2001/4/18
if (CHAR_getWorkInt(fd_charaindex, CHAR_WORKTRADEMODE) != CHAR_TRADE_FREE)
return;
if( CHAR_getWorkInt(fd_charaindex,CHAR_WORKSTREETVENDOR)!=-1) return;
if( checkStringErr(data) ) return;
#ifdef _CHANGE_PETNAME_FIX
if(strstr(data,"|")!=NULL){
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>벻Ҫ<EFBFBD><EFBFBD><EFBFBD>зǷ<EFBFBD><EFBFBD>ַ<EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
return;
}
#endif
CHAR_inputUserPetName( fd_charaindex, havepetindex, data);
}
/*------------------------------------------------------------
------------------------------------------------------------*/
void lssproto_WN_recv( int fd,int x,int y,int seqno,
int objindex,int select, char* data )
{
// printf("fd=%d\n",fd);
// printf("x=%d\n",x);
// printf("y=%d\n",y);
// printf("seqno=%d\n",seqno);
// printf("objindex=%d\n",objindex);
// printf("select=%d\n",select);
// printf("data=%s\n",data);
// if ( seqno == 285 && strlen(data) == 0 ) return;
int fd_charaindex;
CHECKFDANDTIME;
if( checkStringErr(data) ) return;
#ifdef _NO_WARP
{
if(seqno!=CONNECT_get_seqno(fd)){
// printf("get_seqno=%d\n",CONNECT_get_seqno(fd));
return;
}
if( !( (select)&(CONNECT_get_selectbutton(fd)) ) && select ){
if( CONNECT_get_seqno(fd)==CHAR_WINDOWTYPE_QUIZ_MAIN ){
}else if( ( (CONNECT_get_seqno(fd)==CHAR_WINDOWTYPE_SCHEDULEMAN_START)
|| (CONNECT_get_seqno(fd)==CHAR_WINDOWTYPE_SCHEDULEMAN_SELECT) )
&& (select==1) ){
}else{
return ;
}
}
} // shan End
#endif
fd_charaindex = CONNECT_getCharaindex( fd );
#ifdef _AVOIDATTACK_IN_lssproto_WN_recv_dataToLong
if( strlen(data) > 2048 )
return ;
#endif
// if(seqno == 285 && CHAR_getWorkInt(fd_charaindex,CHAR_WORKWNKEY) == 285 ) return;
// CHAR_setWorkInt(fd_charaindex,CHAR_WORKWNKEY,seqno);
// CoolFish: Prevent Trade Cheat 2001/4/18
if (CHAR_getWorkInt(fd_charaindex, CHAR_WORKTRADEMODE) != CHAR_TRADE_FREE) {
return;
}
// Robin
if( checkStringErr(data) ) return;
#ifdef _ANGEL_SUMMON
if( seqno == CHAR_WINDOWTYPE_ANGEL_ASK )
{
print("\n CHAR_WINDOWTYPE_ANGEL_ASK objindex:%d select:%d data:%s ",
objindex, select, data );
if(select==WINDOW_BUTTONTYPE_YES ) {
if( AngelCreate( fd_charaindex) == FALSE ) {
sendAngelCleanToCli( fd );
}
}
else if(select==WINDOW_BUTTONTYPE_NO ) {
int mindex;
char nameinfo[64];
mindex = checkIfAngel( fd_charaindex);
print(" ====<3D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ٻ<EFBFBD><D9BB><EFBFBD><EFBFBD><EFBFBD>==== ");
getMissionNameInfo( fd_charaindex, nameinfo);
saacproto_ACMissionTable_send( acfd, mindex, 3, nameinfo, "");
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
WINDOW_BUTTONTYPE_OK, -1, -1,
"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ź<EFBFBD><EFBFBD><EFBFBD>\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>İ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ħ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Σ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>½<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ˡ<EFBFBD>" );
//CHAR_talkToCli( fd_charaindex, -1, "<22><>֮<EFBFBD><D6AE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ǿ<EFBFBD>ϧ<EFBFBD><CFA7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѵõĻ<C3B5><C4BB><EFBFBD>ѽ<EFBFBD><D1BD>", CHAR_COLORYELLOW);
sendAngelCleanToCli( fd );
}
}
#endif
#ifdef _SAFE_PASSWORD
if( seqno == CHAR_WINDOWTYPE_SAFE_PASSWORD1 )
{
char *cdkey;
cdkey = CHAR_getChar(fd_charaindex, CHAR_CDKEY);
if(strlen(data)>5 && strlen(data)<13)
{
saacproto_QuerySafePasswd_recv(NULL,cdkey,sasql_query_safepasswd(cdkey,data),fd_charaindex);
}
else
{
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>İ<EFBFBD>ȫ<EFBFBD><EFBFBD>С<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>12λ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
}
}
if( seqno == CHAR_WINDOWTYPE_SAFE_PASSWORD2 )
{
char *cdkey;
cdkey = CHAR_getChar(fd_charaindex, CHAR_CDKEY);
if (strlen(data)<6 || strlen(data)>12)
{
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>İ<EFBFBD>ȫ<EFBFBD><EFBFBD>С<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>12λ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
}
else
{
saacproto_AddSafePasswd_recv( NULL, cdkey, sasql_add_safepasswd(cdkey,data), fd_charaindex );
}
}
if( seqno == CHAR_WINDOWTYPE_SAFE_PASSWORD3 )
{
char *cdkey;
cdkey = CHAR_getChar(fd_charaindex, CHAR_CDKEY);
if(strlen(data)>5 && strlen(data)<13)
{
int res = sasql_query_safepasswd(cdkey,data);
if(res == 1)
{
CHAR_setWorkInt( fd_charaindex, CHAR_WORKSAFEMODE, 1);
CHAR_setInt( fd_charaindex, CHAR_LOCK, 1);
CHAR_talkToCli( fd_charaindex, -1, "<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>", CHAR_COLORRED);
}
if(res == 2)
{
CHAR_talkToCli( fd_charaindex, -1, "<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>", CHAR_COLORRED);
}
if(res == 3)
{
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>û<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ð<EFBFBD>ȫ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ã<EFBFBD>", CHAR_COLORRED);
CHAR_AddSafePassword(fd_charaindex);
}
}
else
{
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>İ<EFBFBD>ȫ<EFBFBD><EFBFBD>С<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>12λ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
}
}
#endif
#ifdef _POINT_CARD
if( seqno == CHAR_WINDOWTYPE_POINT_CARD )
{
char *cdkey;
cdkey = CHAR_getChar(fd_charaindex, CHAR_CDKEY);
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD>ڲ<EFBFBD>ѯ<EFBFBD>ó<EFBFBD>ֵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ժ<EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
sasql_query_card(cdkey,data,fd_charaindex);
}
#endif
#ifdef _SQL_BUY_FUNC
if( seqno == CHAR_WINDOWTYPE_ONLINE_BUY ){
char *ondata = sasql_OnlineBuy( CHAR_getChar(fd_charaindex, CHAR_CDKEY), data );
//saacproto_OnlineBuy_send(getfdFromCharaIndex( charaindex), CHAR_getChar(charaindex, CHAR_CDKEY), data);
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ż<EFBFBD><EFBFBD><EFBFBD><EFBFBD>У<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ժ<EFBFBD>...", CHAR_COLORYELLOW);
saacproto_OnlineBuy_recv(getfdFromCharaIndex( fd_charaindex),ondata);
}
#endif
if( seqno == CHAR_WINDOWTYPE_RAND_WARP )
{
if( CHAR_getWorkInt( fd_charaindex, CHAR_WORKPARTYMODE ) == CHAR_PARTY_LEADER || CHAR_getWorkInt( fd_charaindex, CHAR_WORKPARTYMODE ) == CHAR_PARTY_CLIENT)
{
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD>˵<EFBFBD><EFBFBD><EFBFBD>ֻ<EFBFBD><EFBFBD><EFBFBD>Ե<EFBFBD><EFBFBD><EFBFBD>ʹ<EFBFBD>ã<EFBFBD>", CHAR_COLORRED);
return;
}
char *arg;
char buftest[255];
int haveitemindex,pass,fltest,xtest,ytest;
arg = CHAR_getWorkChar(fd_charaindex,CHAR_WORKRANDMSG);
if(getStringFromIndexWithDelim(arg,"|", 1, buftest, sizeof(buftest)) == FALSE)
return;
haveitemindex = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 2, buftest, sizeof(buftest)) == FALSE)
return;
pass = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 3, buftest, sizeof(buftest)) == FALSE)
return;
fltest = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 4, buftest, sizeof(buftest)) == FALSE)
return;
xtest = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 5, buftest, sizeof(buftest)) == FALSE)
return;
ytest = atoi(buftest);
if(strlen(data)<1)
{
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>֤<EFBFBD>", CHAR_COLORRED);
return;
}
if(pass!=atoi(data))
{
CHAR_talkToCli( fd_charaindex, -1, "<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_COLORRED);
return;
}
CHAR_warpToSpecificPoint(fd_charaindex, fltest, xtest, ytest);
CHAR_DelItem( fd_charaindex, haveitemindex);
}
if( seqno == CHAR_WINDOWTYPE_RAND_MSG )
{
char *arg;
char buftest[255];
int haveitemindex,pass;
char *itemmsg;
arg = CHAR_getWorkChar(fd_charaindex,CHAR_WORKRANDMSG);
if(getStringFromIndexWithDelim(arg,"|", 1, buftest, sizeof(buftest)) == FALSE)
return;
haveitemindex = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 2, buftest, sizeof(buftest)) == FALSE)
return;
pass = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 3, buftest, sizeof(buftest)) == FALSE)
return;
itemmsg = buftest;
if(strlen(data)<1)
{
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>֤<EFBFBD>", CHAR_COLORRED);
return;
}
if(pass!=atoi(data))
{
CHAR_talkToCli( fd_charaindex, -1, "<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_COLORRED);
return;
}
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
WINDOW_BUTTONTYPE_OK,
CHAR_WINDOWTYPE_ITEM_MSG,
-1,
itemmsg);
}
if( seqno == CHAR_STREETVENDOR_SELECT )
{
if(strlen(data)<1) return;
if(atoi(data)>6 || atoi(data)<1) return;
if(atoi(data)==4 && getJiFenBaiTan()==1){
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>·<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ְ<EFBFBD>̯<EFBFBD><EFBFBD>", CHAR_COLORRED);
return;
}
CHAR_setWorkInt(fd_charaindex,CHAR_WORKTRADETYPE,(atoi(data)-1));
lssproto_STREET_VENDOR_send(fd,"O|");
}
#ifdef _QUESTION_ONLINE
if( seqno == CHAR_WINDOWTYPE_QUESTIONONLINE )
{
if(strlen(data)<1) return;
time_t timep;
struct tm *p;
time(&timep);
p=localtime(&timep);
timep = mktime(p);
if(questionstarttime == 0){
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD>ߴ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѽ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>δ<EFBFBD><EFBFBD>ʼ<EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
return;
}
if(timep - questionstarttime > 30 || questionman>=3){
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><EFBFBD><EFBFBD>ѹ<EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
return;
}
if(strcmp(data,answer)==0)
{
if(questionman<3)
{
questionman++;
int itemindex,playnum,itemret;
itemindex = ITEM_makeItemAndRegist( getQuestionItem(questionman));
itemret = CHAR_addItemSpecificItemIndex(fd_charaindex,itemindex);
if( itemret < 0 || itemret >= CHAR_MAXITEMHAVE )
{
ITEM_endExistItemsOne( itemindex);
}
char questionbuf[256];
sprintf(questionbuf,"<EFBFBD><EFBFBD>ϲ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϲ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s<><73>%d<><64><EFBFBD><EFBFBD><EFBFBD>Ա<EFBFBD><D4B1>",CHAR_getChar(fd_charaindex,CHAR_NAME),questionman);
int i,playmaxnum;
playmaxnum=CHAR_getPlayerMaxNum();
for( i = 0 ; i < playmaxnum ; i++) {
if( CHAR_getCharUse(i) != FALSE ) {
CHAR_talkToCli( i, -1, questionbuf, CHAR_COLORRED);
}
}
}
}
}
#endif
#ifdef _PET_RESET
if( seqno == CHAR_WINDOWTYPE_RESETPET )
{
if(select == WINDOW_BUTTONTYPE_YES){
int petworkindex,petindex,i;
petworkindex = CHAR_getWorkInt(fd_charaindex,CHAR_WORKRESETPETINDEX);
int petpoint = sasql_resetpet_point(CHAR_getInt(petworkindex, CHAR_PETENEMYID));
int mypoint = sasql_vippoint(CHAR_getChar(fd_charaindex,CHAR_CDKEY),0,0);
if(petpoint<0)return;
if(mypoint<petpoint){
CHAR_talkToCli( fd_charaindex, -1, "<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>", CHAR_COLORYELLOW);
return;
}
for(i = 0; i < CHAR_MAXPETHAVE; i ++){
petindex = CHAR_getCharPet(fd_charaindex,i);
if( petindex == petworkindex ) {
break;
}
}
if(i==CHAR_MAXPETHAVE) return;
int enemyid = CHAR_getInt(petworkindex, CHAR_PETENEMYID);
CHAR_setCharPet( fd_charaindex, i, -1);
CHAR_endCharOneArray( petworkindex );
char szPet[128];
snprintf( szPet, sizeof( szPet ), "K%d", i);
CHAR_sendStatusString( fd_charaindex, szPet );
int j;
int enemynum = ENEMY_getEnemyNum();
for(j=0;j<enemynum;j++){
if( ENEMY_getInt( j, ENEMY_ID) == enemyid){
break;
}
}
if( j == enemynum ) return;
int ret = ENEMY_createPetFromEnemyIndex( fd_charaindex, j);
for( i = 0; i < CHAR_MAXPETHAVE; i ++ ){
if( CHAR_getCharPet( fd_charaindex, i ) == ret )break;
}
if( i == CHAR_MAXPETHAVE ) i = 0;
if( CHAR_CHECKINDEX( ret ) == TRUE ){
CHAR_setMaxExpFromLevel( ret, CHAR_getInt( ret, CHAR_LV ));
}
petindex = CHAR_getCharPet(fd_charaindex,i);
if( !CHAR_CHECKINDEX( petindex) )return;
CHAR_complianceParameter( petindex );
char msgbuf[128];
snprintf( msgbuf, sizeof( msgbuf ), "K%d", i );
CHAR_sendStatusString( fd_charaindex, msgbuf );
snprintf( msgbuf, sizeof( msgbuf ), "W%d", i );
CHAR_sendStatusString( fd_charaindex, msgbuf );
snprintf( msgbuf,sizeof( msgbuf), "<EFBFBD><EFBFBD>¯%s<>ɹ<EFBFBD><C9B9><EFBFBD>",
CHAR_getChar(petindex,CHAR_NAME));
CHAR_talkToCli( fd_charaindex, -1, msgbuf, CHAR_COLORWHITE);
snprintf( msgbuf,sizeof( msgbuf), "<EFBFBD>۳<EFBFBD>%d<><64>Ա<EFBFBD>",
petpoint);
CHAR_talkToCli( fd_charaindex, -1, msgbuf, CHAR_COLORYELLOW);
sasql_vippoint(CHAR_getChar(fd_charaindex,CHAR_CDKEY),-petpoint,1);
CHAR_charSaveFromConnect(fd_charaindex, FALSE);
CHAR_talkToCli(fd_charaindex, -1, "ϵͳΪ<EFBFBD><EFBFBD><EFBFBD>Զ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
return;
}else
return;
}
if( seqno == CHAR_WINDOWTYPE_RESETBDPET )
{
if(select == WINDOW_BUTTONTYPE_YES){
int petworkindex,petindex,i;
petworkindex = CHAR_getWorkInt(fd_charaindex,CHAR_WORKRESETPETINDEX);
int petpoint = sasql_resetbdpet_point(CHAR_getInt(petworkindex, CHAR_PETENEMYID));
int mypoint = sasql_vippoint(CHAR_getChar(fd_charaindex,CHAR_CDKEY),0,0);
if(petpoint<0)return;
if(mypoint<petpoint){
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD>ĵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>޷<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɱ<EFBFBD><EFBFBD>λ<EFBFBD>¯<EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
return;
}
for(i = 0; i < CHAR_MAXPETHAVE; i ++){
petindex = CHAR_getCharPet(fd_charaindex,i);
if( petindex == petworkindex ) {
break;
}
}
if(i==CHAR_MAXPETHAVE) return;
int enemyid = CHAR_getInt(petworkindex, CHAR_PETENEMYID);
CHAR_setCharPet( fd_charaindex, i, -1);
CHAR_endCharOneArray( petworkindex );
char szPet[128];
snprintf( szPet, sizeof( szPet ), "K%d", i);
CHAR_sendStatusString( fd_charaindex, szPet );
int j;
int enemynum = ENEMY_getEnemyNum();
for(j=0;j<enemynum;j++){
if( ENEMY_getInt( j, ENEMY_ID) == enemyid){
break;
}
}
if( j == enemynum ) return;
int ret = ENEMY_createPetFromEnemyIndex( fd_charaindex, j);
for( i = 0; i < CHAR_MAXPETHAVE; i ++ ){
if( CHAR_getCharPet( fd_charaindex, i ) == ret )break;
}
if( i == CHAR_MAXPETHAVE ) i = 0;
if( CHAR_CHECKINDEX( ret ) == TRUE ){
CHAR_setMaxExpFromLevel( ret, CHAR_getInt( ret, CHAR_LV ));
}
petindex = CHAR_getCharPet(fd_charaindex,i);
if( !CHAR_CHECKINDEX( petindex) )return;
char tmpname[128];
sprintf(tmpname,"*%s",CHAR_getChar(petindex,CHAR_NAME));
CHAR_setChar(petindex,CHAR_NAME,tmpname);
CHAR_complianceParameter( petindex );
char msgbuf[128];
snprintf( msgbuf, sizeof( msgbuf ), "K%d", i );
CHAR_sendStatusString( fd_charaindex, msgbuf );
snprintf( msgbuf, sizeof( msgbuf ), "W%d", i );
CHAR_sendStatusString( fd_charaindex, msgbuf );
snprintf( msgbuf,sizeof( msgbuf), "<EFBFBD><EFBFBD>¯%s<>ɹ<EFBFBD><C9B9><EFBFBD>",
CHAR_getChar(petindex,CHAR_NAME));
CHAR_talkToCli( fd_charaindex, -1, msgbuf, CHAR_COLORWHITE);
snprintf( msgbuf,sizeof( msgbuf), "<EFBFBD>۳<EFBFBD>%d<><64>Ա<EFBFBD>",
petpoint);
CHAR_talkToCli( fd_charaindex, -1, msgbuf, CHAR_COLORYELLOW);
sasql_vippoint(CHAR_getChar(fd_charaindex,CHAR_CDKEY),-petpoint,1);
CHAR_charSaveFromConnect(fd_charaindex, FALSE);
CHAR_talkToCli(fd_charaindex, -1, "ϵͳΪ<EFBFBD><EFBFBD><EFBFBD>Զ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
return;
}else
return;
}
#endif
#ifdef _ZHIPIAO_SYSTEM
if( seqno == CHAR_WINDOWTYPE_ZHIPIAO_1 ){
if(select == WINDOW_BUTTONTYPE_OK){
if(strlen(data)<1) return;
if(atoi(data)<100){
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD>С֧Ʊ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ100<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>޷<EFBFBD>ǩ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
return;
}
if(atoi(data)>1000000){
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>֧Ʊ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ100W<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>޷<EFBFBD>ǩ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
return;
}
char zhipiaomsg[256];
int vippoint = atoi(data)*getZhiPiao()/100;
if(vippoint<10) vippoint = vippoint+1;
sprintf(zhipiaomsg,"\nǩ<EFBFBD><EFBFBD>֧Ʊ<EFBFBD><EFBFBD>Ҫ<EFBFBD><EFBFBD>ȡ<EFBFBD>ٷ<EFBFBD>֮%d<><64>˰<EFBFBD><CBB0>\n\n<EFBFBD><EFBFBD>֧Ʊ<EFBFBD><EFBFBD>ǩ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD>۳<EFBFBD>%d<><64>Ա<EFBFBD><D4B1>\n\n<EFBFBD><EFBFBD>ȷ<EFBFBD><EFBFBD>Ҫ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ô<EFBFBD><EFBFBD>",getZhiPiao(),vippoint+atoi(data));
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
WINDOW_BUTTONTYPE_OKCANCEL,
CHAR_WINDOWTYPE_ZHIPIAO_2,
-1,
zhipiaomsg);
CHAR_setWorkInt(fd_charaindex,CHAR_WORKZHIPIAOPOINT,atoi(data));
return;
}else
return;
}
if( seqno == CHAR_WINDOWTYPE_ZHIPIAO_2 ){
if(select == WINDOW_BUTTONTYPE_OK){
int mypoint = sasql_vippoint(CHAR_getChar(fd_charaindex,CHAR_CDKEY),0,0);
int itempoint = CHAR_getWorkInt(fd_charaindex,CHAR_WORKZHIPIAOPOINT);
int kvippoint = itempoint/100*getZhiPiao();
if(kvippoint<10) kvippoint = kvippoint+1;
int vippoint = itempoint+kvippoint;
if(mypoint<vippoint){
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD>Ļ<EFBFBD>Ա<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>޷<EFBFBD><EFBFBD>һ<EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
return;
}else{
int itemindex = CHAR_getItemIndex(fd_charaindex,CHAR_getWorkInt(fd_charaindex,CHAR_WORKZHIPIAOITEM));
int zhipiaoindex = sasql_zhipiao_insert(ITEM_getChar(itemindex,ITEM_UNIQUECODE),CHAR_getChar(fd_charaindex,CHAR_CDKEY),itempoint);
if(zhipiaoindex==1){
sasql_vippoint(CHAR_getChar(fd_charaindex,CHAR_CDKEY),-vippoint,1);
ITEM_setChar(itemindex,ITEM_NAME,"֧Ʊ");
ITEM_setChar(itemindex,ITEM_SECRETNAME,"֧Ʊ");
char zhipiaomsg[256];
if(getPiaoTime()>0){
time_t timep;
struct tm *p;
time(&timep);
p=localtime(&timep);
timep = mktime(p);
int zhipiaotime = timep + 60*60*24*getPiaoTime();
timep = zhipiaotime;
p=localtime(&timep);
sprintf(zhipiaomsg,"%d",zhipiaotime);
ITEM_setChar(itemindex,ITEM_ARGUMENT,zhipiaomsg);
int year=1900+p->tm_year;
int mon=1+p->tm_mon;
int date=p->tm_mday;
int hour=p->tm_hour;
int min=p->tm_min;
int sec=p->tm_sec;
char monbuf[5],datebuf[5],hourbuf[5],minbuf[5],secbuf[5];
if(mon<10) sprintf(monbuf,"0%d",mon);
else sprintf(monbuf,"%d",mon);
if(date<10) sprintf(datebuf,"0%d",date);
else sprintf(datebuf,"%d",date);
if(hour<10) sprintf(hourbuf,"0%d",hour);
else sprintf(hourbuf,"%d",hour);
if(min<10) sprintf(minbuf,"0%d",min);
else sprintf(minbuf,"%d",min);
if(sec<10) sprintf(secbuf,"0%d",sec);
else sprintf(secbuf,"%d",sec);
sprintf(zhipiaomsg,"<EFBFBD><EFBFBD>Ч<EFBFBD><EFBFBD>:%d.%s.%s/%s:%s:%s <20><>֧Ʊ<D6A7><C6B1>ֵ%d<><64>",year,monbuf,datebuf,hourbuf,minbuf,secbuf,itempoint);
}else{
ITEM_setChar(itemindex,ITEM_ARGUMENT,"1");
sprintf(zhipiaomsg,"<EFBFBD><EFBFBD>֧Ʊ<EFBFBD><EFBFBD>ֵ%d<><64>",itempoint);
}
ITEM_setChar(itemindex,ITEM_EFFECTSTRING,zhipiaomsg);
CHAR_sendItemDataOne( fd_charaindex, CHAR_getWorkInt(fd_charaindex,CHAR_WORKZHIPIAOITEM));
CHAR_talkToCli( fd_charaindex, -1, "֧Ʊ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɹ<EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
CHAR_charSaveFromConnect(fd_charaindex, FALSE);
CHAR_talkToCli(fd_charaindex, -1, "ϵͳΪ<EFBFBD><EFBFBD><EFBFBD>Զ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
return;
}else{
return;
}
}
}else{
return;
}
}
if( seqno == CHAR_WINDOWTYPE_ZHIPIAO_3 ){
if(select == WINDOW_BUTTONTYPE_OK){
int itemindex = CHAR_getItemIndex(fd_charaindex,CHAR_getWorkInt(fd_charaindex,CHAR_WORKZHIPIAOITEM));
char* petno = ITEM_getChar(itemindex,ITEM_UNIQUECODE);
int vippoint = sasql_zhipiao_query(ITEM_getChar(itemindex,ITEM_UNIQUECODE));
if(vippoint>0){
if(sasql_zhipiao_update(CHAR_getChar(fd_charaindex,CHAR_CDKEY),petno,0)==1){
sasql_vippoint(CHAR_getChar(fd_charaindex,CHAR_CDKEY),vippoint,1);
char msgbuf[128];
snprintf( msgbuf,sizeof( msgbuf), "֧Ʊ֧ȡ<EFBFBD>ɹ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%d<><64>Ա<EFBFBD>",
vippoint);
CHAR_talkToCli( fd_charaindex, -1, msgbuf, CHAR_COLORRED);
CHAR_DelItem(fd_charaindex,CHAR_getWorkInt(fd_charaindex,CHAR_WORKZHIPIAOITEM));
CHAR_charSaveFromConnect(fd_charaindex, FALSE);
CHAR_talkToCli(fd_charaindex, -1, "ϵͳΪ<EFBFBD><EFBFBD><EFBFBD>Զ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
return;
}else{
return;
}
}else{
return;
}
}else{
return;
}
}
#endif
#ifdef _NO_DROPITEM
if( seqno == CHAR_WINDOWTYPE_DROPITEM){
if(select == WINDOW_BUTTONTYPE_OK){
int itemcharaindex = CHAR_getWorkInt(fd_charaindex,CHAR_DROPITEMCHARAINDEX);
if(itemcharaindex>-1){
CHAR_DropItem(fd_charaindex,itemcharaindex);
return;
}else{
return;
}
}else{
return;
}
}
#endif
#ifdef _ITEM_RESET
if( seqno == CHAR_WINDOWTYPE_RESETITEM){
if(select == WINDOW_BUTTONTYPE_OK){
int fromindex = CHAR_getWorkInt(fd_charaindex,CHAR_WORKFROMITEMINDEX);
int toindex = CHAR_getWorkInt(fd_charaindex,CHAR_WORKTOITEMINDEX);
int resetpoint,mypoint;
int itemid = ITEM_getInt(CHAR_getItemIndex( fd_charaindex, toindex),ITEM_ID);
resetpoint = sasql_itemreset_query(itemid);
if(resetpoint<0) return;
mypoint = sasql_vippoint(CHAR_getChar(fd_charaindex,CHAR_CDKEY),0,0);
if(mypoint<resetpoint){
CHAR_talkToCli(fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD>ĵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>޷<EFBFBD><EFBFBD><EFBFBD>¯<EFBFBD>˵<EFBFBD><EFBFBD>ߣ<EFBFBD>", CHAR_COLORRED);
return;
}else{
if(sasql_vippoint(CHAR_getChar(fd_charaindex,CHAR_CDKEY),-resetpoint,1)>-1){
CHAR_DelItem(fd_charaindex,fromindex);
CHAR_DelItem(fd_charaindex,toindex);
int newitemindex,ret;
newitemindex = ITEM_makeItemAndRegist( itemid);
ret = CHAR_addItemSpecificItemIndex( fd_charaindex, newitemindex);
if( ret < 0 || ret >= CHAR_MAXITEMHAVE ) {
ITEM_endExistItemsOne( newitemindex);
return;
}
CHAR_sendItemDataOne( fd_charaindex, ret);
CHAR_charSaveFromConnect(fd_charaindex, FALSE);
CHAR_talkToCli(fd_charaindex, -1, "<EFBFBD><EFBFBD>ϲ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>¯<EFBFBD><EFBFBD><EFBFBD>߳ɹ<EFBFBD><EFBFBD><EFBFBD>ϵͳ<EFBFBD>Զ<EFBFBD>Ϊ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
return;
}else{
return;
}
}
}else{
return;
}
}
if( seqno == CHAR_WINDOWTYPE_DELITEM){
if(select == WINDOW_BUTTONTYPE_OK){
int fromindex = CHAR_getWorkInt(fd_charaindex,CHAR_WORKFROMITEMINDEX);
int toindex = CHAR_getWorkInt(fd_charaindex,CHAR_WORKTOITEMINDEX);
int delpoint,mypoint;
int itemid = ITEM_getInt(CHAR_getItemIndex( fd_charaindex, toindex),ITEM_ID);
delpoint = sasql_itemdel_query(itemid);
if(delpoint<0) return;
mypoint = sasql_vippoint(CHAR_getChar(fd_charaindex,CHAR_CDKEY),0,0);
{
if(sasql_vippoint(CHAR_getChar(fd_charaindex,CHAR_CDKEY),delpoint,1)>-1){
CHAR_DelItem(fd_charaindex,fromindex);
CHAR_DelItem(fd_charaindex,toindex);
CHAR_charSaveFromConnect(fd_charaindex, FALSE);
CHAR_talkToCli(fd_charaindex, -1, "<EFBFBD><EFBFBD>ϲ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>յ<EFBFBD><EFBFBD>߳ɹ<EFBFBD><EFBFBD><EFBFBD>ϵͳ<EFBFBD>Զ<EFBFBD>Ϊ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
return;
}else{
return;
}
}
}else{
return;
}
}
#endif
#ifdef _ALL_RANDMODE
if( seqno == CHAR_WINDOWTYPE_RAND1_EDITBASE )
{
if(strlen(data)<1)
{
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
return;
}
char *arg;
char buftest[255];
int haveitemindex,itemindex,ret,toindex;
arg = CHAR_getWorkChar(fd_charaindex,CHAR_WORKRANDEDITBASE);
if(getStringFromIndexWithDelim(arg,"|", 1, buftest, sizeof(buftest)) == FALSE)
return;
itemindex = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 2, buftest, sizeof(buftest)) == FALSE)
return;
toindex = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 3, buftest, sizeof(buftest)) == FALSE)
return;
haveitemindex = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 4, buftest, sizeof(buftest)) == FALSE)
return;
ret = atoi(buftest);
if(atoi(data)!=ret){
CHAR_talkToCli( fd_charaindex, -1, "<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>", CHAR_COLORRED);
return;
}
if(itemindex!=CHAR_getItemIndex( fd_charaindex, haveitemindex)){
return;
}
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDEDITBASETIME,0);
CHAR_setChar(fd_charaindex,CHAR_RANDTYPE,"");
int i;
int work[4];
int num=-1,type;
int LevelUpPoint,petrank;
char buf1[256];
char buf2[][32]={"<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><EFBFBD><EFBFBD>"};
char buf3[][32]={"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>","<EFBFBD><EFBFBD>Ϊ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>","<EFBFBD><EFBFBD>Ϊ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>"};
if( !CHAR_CHECKINDEX( fd_charaindex ) ) return;
if( !CHAR_CHECKINDEX( toindex ) ) return;
//#define RAND(x,y) ((x-1)+1+ (int)( (double)(y-(x-1))*rand()/(RAND_MAX+1.0)) )
if( !ITEM_CHECKINDEX(itemindex) ) return;
if( CHAR_getInt( toindex, CHAR_PETID) == 718
#ifdef _PET_2LIMITLEVEL
|| CHAR_getInt( toindex, CHAR_PETID) == 401
#endif
){
int maxnums=50;
if( CHAR_getInt( toindex,CHAR_LV ) < 74 ) {
sprintf(buf1,"<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>");
CHAR_talkToCli( fd_charaindex, toindex, buf1, CHAR_COLORWHITE);
num = ITEM_MODIFYATTACK;
LevelUpPoint = CHAR_getInt( toindex, CHAR_ALLOCPOINT );
petrank = CHAR_getInt( toindex, CHAR_PETRANK );
work[3] =(( LevelUpPoint >> 24 ) & 0xFF);
work[0] = (( LevelUpPoint >> 16 ) & 0xFF);
work[1] = (( LevelUpPoint >> 8 ) & 0xFF);
work[2] = (( LevelUpPoint >> 0 ) & 0xFF);
for( i=0; i<4; i++) {
type = ITEM_getInt( itemindex, (num + i));
work[i] += type;
strcpy( buf1,"\0");
if( work[i] > maxnums ) {
sprintf(buf1,"%s <20>Ѿ<EFBFBD><D1BE><EFBFBD><EFB5BD><EFBFBD><EFBFBD><EFBFBD>ˡ<EFBFBD>", buf2[i]);
work[i] = maxnums;
}else if( work[i] < 0 ) {
sprintf(buf1,"%s <20>Ѿ<EFBFBD>Ϊ<EFBFBD><CEAA><EFBFBD>ˡ<EFBFBD>", buf2[i]);
work[i] = 0;
}else {
if( type > 0 ) {
if( type > 2 )
sprintf(buf1,"%s %s %s", buf2[i], buf3[0], "<EFBFBD><EFBFBD>");
else
sprintf(buf1,"%s %s %s", buf2[i], buf3[1], "<EFBFBD><EFBFBD>");
}else if( type < 0 ){
sprintf(buf1,"%s %s %s", buf2[i], buf3[2], "<EFBFBD><EFBFBD>");
}
}
if( strcmp( buf1, "\0")) {
CHAR_talkToCli( fd_charaindex, toindex, buf1, CHAR_COLORWHITE);
}
}
LevelUpPoint = ( work[3]<< 24) + ( work[0]<< 16) + ( work[1]<< 8) + ( work[2]<< 0);
CHAR_setInt( toindex, CHAR_ALLOCPOINT, LevelUpPoint);
CHAR_setInt( toindex, CHAR_PETRANK, petrank);
LogPetPointChange(
CHAR_getChar( fd_charaindex, CHAR_NAME ),
CHAR_getChar( fd_charaindex, CHAR_CDKEY ),
CHAR_getChar( fd_charaindex, CHAR_NAME),
toindex, 4,
CHAR_getInt( toindex, CHAR_LV),
"item_use",
CHAR_getInt( fd_charaindex, CHAR_FLOOR),
CHAR_getInt( fd_charaindex, CHAR_X ),
CHAR_getInt( fd_charaindex, CHAR_Y )
);
}
}else {
sprintf(buf1,"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
}
CHAR_DelItem( fd_charaindex, haveitemindex);
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDTYPE,0);
return;
}
if( seqno == CHAR_WINDOWTYPE_RAND2_EDITBASE )
{
if(strlen(data)<1)
{
return;
}
if(atoi(data)<1 || atoi(data)>5) return;
char *arg;
char buftest[255];
int haveitemindex,itemindex,ret,toindex;
arg = CHAR_getWorkChar(fd_charaindex,CHAR_WORKRANDEDITBASE);
if(getStringFromIndexWithDelim(arg,"|", 1, buftest, sizeof(buftest)) == FALSE)
return;
itemindex = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 2, buftest, sizeof(buftest)) == FALSE)
return;
toindex = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 3, buftest, sizeof(buftest)) == FALSE)
return;
haveitemindex = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 4, buftest, sizeof(buftest)) == FALSE)
return;
ret = atoi(buftest);
if(atoi(data)!=ret){
CHAR_talkToCli( fd_charaindex, -1, "<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><EFBFBD>ԡ<EFBFBD>", CHAR_COLORRED);
return;
}
if(itemindex!=CHAR_getItemIndex( fd_charaindex, haveitemindex)){
return;
}
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDEDITBASETIME,0);
CHAR_setChar(fd_charaindex,CHAR_RANDTYPE,"");
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD>ϲ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѡ<EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ<EFBFBD><EFBFBD>", CHAR_COLORRED);
int i;
int work[4];
int num=-1,type;
int LevelUpPoint,petrank;
char buf1[256];
char buf2[][32]={"<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><EFBFBD><EFBFBD>"};
char buf3[][32]={"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>","<EFBFBD><EFBFBD>Ϊ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>","<EFBFBD><EFBFBD>Ϊ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>"};
if( !CHAR_CHECKINDEX( fd_charaindex ) ) return;
if( !CHAR_CHECKINDEX( toindex ) ) return;
//#define RAND(x,y) ((x-1)+1+ (int)( (double)(y-(x-1))*rand()/(RAND_MAX+1.0)) )
if( !ITEM_CHECKINDEX(itemindex) ) return;
if( CHAR_getInt( toindex, CHAR_PETID) == 718
#ifdef _PET_2LIMITLEVEL
|| CHAR_getInt( toindex, CHAR_PETID) == 401
#endif
){
int maxnums=50;
if( CHAR_getInt( toindex,CHAR_LV ) < 74 ) {
sprintf(buf1,"<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>");
CHAR_talkToCli( fd_charaindex, toindex, buf1, CHAR_COLORWHITE);
num = ITEM_MODIFYATTACK;
LevelUpPoint = CHAR_getInt( toindex, CHAR_ALLOCPOINT );
petrank = CHAR_getInt( toindex, CHAR_PETRANK );
work[3] =(( LevelUpPoint >> 24 ) & 0xFF);
work[0] = (( LevelUpPoint >> 16 ) & 0xFF);
work[1] = (( LevelUpPoint >> 8 ) & 0xFF);
work[2] = (( LevelUpPoint >> 0 ) & 0xFF);
for( i=0; i<4; i++) {
type = ITEM_getInt( itemindex, (num + i));
work[i] += type;
strcpy( buf1,"\0");
if( work[i] > maxnums ) {
sprintf(buf1,"%s <20>Ѿ<EFBFBD><D1BE><EFBFBD><EFB5BD><EFBFBD><EFBFBD><EFBFBD>ˡ<EFBFBD>", buf2[i]);
work[i] = maxnums;
}else if( work[i] < 0 ) {
sprintf(buf1,"%s <20>Ѿ<EFBFBD>Ϊ<EFBFBD><CEAA><EFBFBD>ˡ<EFBFBD>", buf2[i]);
work[i] = 0;
}else {
if( type > 0 ) {
if( type > 2 )
sprintf(buf1,"%s %s %s", buf2[i], buf3[0], "<EFBFBD><EFBFBD>");
else
sprintf(buf1,"%s %s %s", buf2[i], buf3[1], "<EFBFBD><EFBFBD>");
}else if( type < 0 ){
sprintf(buf1,"%s %s %s", buf2[i], buf3[2], "<EFBFBD><EFBFBD>");
}
}
if( strcmp( buf1, "\0")) {
CHAR_talkToCli( fd_charaindex, toindex, buf1, CHAR_COLORWHITE);
}
}
LevelUpPoint = ( work[3]<< 24) + ( work[0]<< 16) + ( work[1]<< 8) + ( work[2]<< 0);
CHAR_setInt( toindex, CHAR_ALLOCPOINT, LevelUpPoint);
CHAR_setInt( toindex, CHAR_PETRANK, petrank);
LogPetPointChange(
CHAR_getChar( fd_charaindex, CHAR_NAME ),
CHAR_getChar( fd_charaindex, CHAR_CDKEY ),
CHAR_getChar( fd_charaindex, CHAR_NAME),
toindex, 4,
CHAR_getInt( toindex, CHAR_LV),
"item_use",
CHAR_getInt( fd_charaindex, CHAR_FLOOR),
CHAR_getInt( fd_charaindex, CHAR_X ),
CHAR_getInt( fd_charaindex, CHAR_Y )
);
}
}else {
sprintf(buf1,"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
}
CHAR_DelItem( fd_charaindex, haveitemindex);
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDTYPE,0);
return;
}
if( seqno == CHAR_WINDOWTYPE_RAND3_EDITBASE )
{
if(strlen(data)<1)
{
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
return;
}
char *arg;
char buftest[255];
int haveitemindex,itemindex,toindex;
char ret[255];
arg = CHAR_getWorkChar(fd_charaindex,CHAR_WORKRANDEDITBASE);
if(getStringFromIndexWithDelim(arg,"|", 1, buftest, sizeof(buftest)) == FALSE)
return;
itemindex = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 2, buftest, sizeof(buftest)) == FALSE)
return;
toindex = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 3, buftest, sizeof(buftest)) == FALSE)
return;
haveitemindex = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 4, buftest, sizeof(buftest)) == FALSE)
return;
strcpy(ret,buftest);
if(strcmp(ret,data)!=0){
CHAR_talkToCli( fd_charaindex, -1, "<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>", CHAR_COLORRED);
return;
}
if(itemindex!=CHAR_getItemIndex( fd_charaindex, haveitemindex)){
return;
}
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDEDITBASETIME,0);
CHAR_setChar(fd_charaindex,CHAR_RANDTYPE,"");
int i;
int work[4];
int num=-1,type;
int LevelUpPoint,petrank;
char buf1[256];
char buf2[][32]={"<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><EFBFBD><EFBFBD>"};
char buf3[][32]={"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>","<EFBFBD><EFBFBD>Ϊ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>","<EFBFBD><EFBFBD>Ϊ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>"};
if( !CHAR_CHECKINDEX( fd_charaindex ) ) return;
if( !CHAR_CHECKINDEX( toindex ) ) return;
//#define RAND(x,y) ((x-1)+1+ (int)( (double)(y-(x-1))*rand()/(RAND_MAX+1.0)) )
if( !ITEM_CHECKINDEX(itemindex) ) return;
if( CHAR_getInt( toindex, CHAR_PETID) == 718
#ifdef _PET_2LIMITLEVEL
|| CHAR_getInt( toindex, CHAR_PETID) == 401
#endif
){
int maxnums=50;
if( CHAR_getInt( toindex,CHAR_LV ) < 74 ) {
sprintf(buf1,"<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>");
CHAR_talkToCli( fd_charaindex, toindex, buf1, CHAR_COLORWHITE);
num = ITEM_MODIFYATTACK;
LevelUpPoint = CHAR_getInt( toindex, CHAR_ALLOCPOINT );
petrank = CHAR_getInt( toindex, CHAR_PETRANK );
work[3] =(( LevelUpPoint >> 24 ) & 0xFF);
work[0] = (( LevelUpPoint >> 16 ) & 0xFF);
work[1] = (( LevelUpPoint >> 8 ) & 0xFF);
work[2] = (( LevelUpPoint >> 0 ) & 0xFF);
for( i=0; i<4; i++) {
type = ITEM_getInt( itemindex, (num + i));
work[i] += type;
strcpy( buf1,"\0");
if( work[i] > maxnums ) {
sprintf(buf1,"%s <20>Ѿ<EFBFBD><D1BE><EFBFBD><EFB5BD><EFBFBD><EFBFBD><EFBFBD>ˡ<EFBFBD>", buf2[i]);
work[i] = maxnums;
}else if( work[i] < 0 ) {
sprintf(buf1,"%s <20>Ѿ<EFBFBD>Ϊ<EFBFBD><CEAA><EFBFBD>ˡ<EFBFBD>", buf2[i]);
work[i] = 0;
}else {
if( type > 0 ) {
if( type > 2 )
sprintf(buf1,"%s %s %s", buf2[i], buf3[0], "<EFBFBD><EFBFBD>");
else
sprintf(buf1,"%s %s %s", buf2[i], buf3[1], "<EFBFBD><EFBFBD>");
}else if( type < 0 ){
sprintf(buf1,"%s %s %s", buf2[i], buf3[2], "<EFBFBD><EFBFBD>");
}
}
if( strcmp( buf1, "\0")) {
CHAR_talkToCli( fd_charaindex, toindex, buf1, CHAR_COLORWHITE);
}
}
LevelUpPoint = ( work[3]<< 24) + ( work[0]<< 16) + ( work[1]<< 8) + ( work[2]<< 0);
CHAR_setInt( toindex, CHAR_ALLOCPOINT, LevelUpPoint);
CHAR_setInt( toindex, CHAR_PETRANK, petrank);
LogPetPointChange(
CHAR_getChar( fd_charaindex, CHAR_NAME ),
CHAR_getChar( fd_charaindex, CHAR_CDKEY ),
CHAR_getChar( fd_charaindex, CHAR_NAME),
toindex, 4,
CHAR_getInt( toindex, CHAR_LV),
"item_use",
CHAR_getInt( fd_charaindex, CHAR_FLOOR),
CHAR_getInt( fd_charaindex, CHAR_X ),
CHAR_getInt( fd_charaindex, CHAR_Y )
);
}
}else {
sprintf(buf1,"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
}
CHAR_DelItem( fd_charaindex, haveitemindex);
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDTYPE,0);
return;
}
if( seqno == CHAR_WINDOWTYPE_RAND4_EDITBASE )
{
if(strlen(data)<1)
{
return;
}
//if(atoi(data)<getRandMin() || atoi(data)>getRandMax()) return;
if(CHAR_getWorkInt(fd_charaindex,CHAR_WORKLUANPCINT)!=0) return;
CHAR_setWorkInt(fd_charaindex,CHAR_WORKLUANPCINT,1);
int cdkeynum;
for(cdkeynum=9;cdkeynum>0;cdkeynum--){
strcpy(mmcdkey[cdkeynum],mmcdkey[cdkeynum-1]);
strcpy(mmcdkeybuf[cdkeynum],mmcdkeybuf[cdkeynum-1]);
}
strcpy(mmcdkey[0],CHAR_getChar(fd_charaindex,CHAR_CDKEY));
sprintf(mmcdkeybuf[0],"%d.%d.%d",CHAR_getInt(fd_charaindex,CHAR_FLOOR),CHAR_getInt(fd_charaindex,CHAR_X),CHAR_getInt(fd_charaindex,CHAR_Y));
time_t timep;
struct tm *p;
time(&timep);
p=localtime(&timep);
timep = mktime(p);
CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDEDITBASETIME,timep);
char *arg;
char buftest[255];
int haveitemindex,itemindex,ret,toindex;
arg = CHAR_getWorkChar(fd_charaindex,CHAR_WORKRANDEDITBASE);
if(getStringFromIndexWithDelim(arg,"|", 1, buftest, sizeof(buftest)) == FALSE)
return;
itemindex = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 2, buftest, sizeof(buftest)) == FALSE)
return;
toindex = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 3, buftest, sizeof(buftest)) == FALSE)
return;
haveitemindex = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 4, buftest, sizeof(buftest)) == FALSE)
return;
ret = atoi(buftest);
if(atoi(data)!=ret){
if(ret>=1 && ret<=5){
if(atoi(data)>=10000){
sasql_cdkey_lock(CHAR_getChar(fd_charaindex,CHAR_CDKEY),15);
CONNECT_setCloseRequest( fd , 1 );
return;
}
}else{
if(atoi(data)>=1 && atoi(data)<=5){
//sasql_cdkey_lock(CHAR_getChar(fd_charaindex,CHAR_CDKEY),14);
CONNECT_setCloseRequest( fd , 1 );
return;
}
}
CHAR_talkToCli( fd_charaindex, -1, "<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>", CHAR_COLORRED);
return;
}
if(itemindex!=CHAR_getItemIndex( fd_charaindex, haveitemindex)){
return;
}
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDEDITBASETIME,0);
CHAR_setChar(fd_charaindex,CHAR_RANDTYPE,"");
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD>ϲ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ľ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ<EFBFBD><EFBFBD>", CHAR_COLORRED);
int i;
int work[4];
int num=-1,type;
int LevelUpPoint,petrank;
char buf1[256];
char buf2[][32]={"<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><EFBFBD><EFBFBD>"};
char buf3[][32]={"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>","<EFBFBD><EFBFBD>Ϊ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>","<EFBFBD><EFBFBD>Ϊ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>"};
if( !CHAR_CHECKINDEX( fd_charaindex ) ) return;
if( !CHAR_CHECKINDEX( toindex ) ) return;
//#define RAND(x,y) ((x-1)+1+ (int)( (double)(y-(x-1))*rand()/(RAND_MAX+1.0)) )
if( !ITEM_CHECKINDEX(itemindex) ) return;
if( CHAR_getInt( toindex, CHAR_PETID) == 718
#ifdef _PET_2LIMITLEVEL
|| CHAR_getInt( toindex, CHAR_PETID) == 401
#endif
){
int maxnums=50;
if( CHAR_getInt( toindex,CHAR_LV ) < 74 ) {
sprintf(buf1,"<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>");
CHAR_talkToCli( fd_charaindex, toindex, buf1, CHAR_COLORWHITE);
num = ITEM_MODIFYATTACK;
LevelUpPoint = CHAR_getInt( toindex, CHAR_ALLOCPOINT );
petrank = CHAR_getInt( toindex, CHAR_PETRANK );
work[3] =(( LevelUpPoint >> 24 ) & 0xFF);
work[0] = (( LevelUpPoint >> 16 ) & 0xFF);
work[1] = (( LevelUpPoint >> 8 ) & 0xFF);
work[2] = (( LevelUpPoint >> 0 ) & 0xFF);
for( i=0; i<4; i++) {
type = ITEM_getInt( itemindex, (num + i));
work[i] += type;
strcpy( buf1,"\0");
if( work[i] > maxnums ) {
sprintf(buf1,"%s <20>Ѿ<EFBFBD><D1BE><EFBFBD><EFB5BD><EFBFBD><EFBFBD><EFBFBD>ˡ<EFBFBD>", buf2[i]);
work[i] = maxnums;
}else if( work[i] < 0 ) {
sprintf(buf1,"%s <20>Ѿ<EFBFBD>Ϊ<EFBFBD><CEAA><EFBFBD>ˡ<EFBFBD>", buf2[i]);
work[i] = 0;
}else {
if( type > 0 ) {
if( type > 2 )
sprintf(buf1,"%s %s %s", buf2[i], buf3[0], "<EFBFBD><EFBFBD>");
else
sprintf(buf1,"%s %s %s", buf2[i], buf3[1], "<EFBFBD><EFBFBD>");
}else if( type < 0 ){
sprintf(buf1,"%s %s %s", buf2[i], buf3[2], "<EFBFBD><EFBFBD>");
}
}
if( strcmp( buf1, "\0")) {
CHAR_talkToCli( fd_charaindex, toindex, buf1, CHAR_COLORWHITE);
}
}
LevelUpPoint = ( work[3]<< 24) + ( work[0]<< 16) + ( work[1]<< 8) + ( work[2]<< 0);
CHAR_setInt( toindex, CHAR_ALLOCPOINT, LevelUpPoint);
CHAR_setInt( toindex, CHAR_PETRANK, petrank);
LogPetPointChange(
CHAR_getChar( fd_charaindex, CHAR_NAME ),
CHAR_getChar( fd_charaindex, CHAR_CDKEY ),
CHAR_getChar( fd_charaindex, CHAR_NAME),
toindex, 4,
CHAR_getInt( toindex, CHAR_LV),
"item_use",
CHAR_getInt( fd_charaindex, CHAR_FLOOR),
CHAR_getInt( fd_charaindex, CHAR_X ),
CHAR_getInt( fd_charaindex, CHAR_Y )
);
}
}else {
sprintf(buf1,"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
}
CHAR_DelItem( fd_charaindex, haveitemindex);
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDTYPE,0);
return;
}
#endif
#ifdef _MM_NO_JIAOBEN
if( seqno == CHAR_WINDOWTYPE_RAND1_DROPMM )
{
if(strlen(data)<1)
{
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
return;
}
char *arg;
char buftest[255];
int havepetindex,ret;
arg = CHAR_getWorkChar(fd_charaindex,CHAR_WORKDROPMM);
if(getStringFromIndexWithDelim(arg,"|", 1, buftest, sizeof(buftest)) == FALSE)
return;
havepetindex = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 2, buftest, sizeof(buftest)) == FALSE)
return;
ret = atoi(buftest);
if(atoi(data)!=ret){
CHAR_talkToCli( fd_charaindex, -1, "<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>", CHAR_COLORRED);
return;
}
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDEDITBASETIME,0);
CHAR_setChar(fd_charaindex,CHAR_RANDTYPE,"");
int petindex;
petindex = CHAR_getCharPet(fd_charaindex,havepetindex);
if( !CHAR_CHECKINDEX( petindex )) return;
if(CHAR_getInt(petindex,CHAR_PETID)!=718 && CHAR_getInt(petindex,CHAR_PETID)!=401) return;
PET_dropPetFLXY(fd_charaindex, havepetindex, -1,-1,-1);
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDTYPE,0);
return;
}
if( seqno == CHAR_WINDOWTYPE_RAND2_DROPMM )
{
if(strlen(data)<1)
{
return;
}
if(atoi(data)<1 || atoi(data)>5) return;
char *arg;
char buftest[255];
int havepetindex,ret;
arg = CHAR_getWorkChar(fd_charaindex,CHAR_WORKDROPMM);
if(getStringFromIndexWithDelim(arg,"|", 1, buftest, sizeof(buftest)) == FALSE)
return;
havepetindex = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 2, buftest, sizeof(buftest)) == FALSE)
return;
ret = atoi(buftest);
if(atoi(data)!=ret){
CHAR_talkToCli( fd_charaindex, -1, "<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><EFBFBD>ԡ<EFBFBD>", CHAR_COLORRED);
return;
}
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDEDITBASETIME,0);
CHAR_setChar(fd_charaindex,CHAR_RANDTYPE,"");
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD>ϲ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѡ<EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ<EFBFBD><EFBFBD>", CHAR_COLORRED);
int petindex;
petindex = CHAR_getCharPet(fd_charaindex,havepetindex);
if( !CHAR_CHECKINDEX( petindex )) return;
if(CHAR_getInt(petindex,CHAR_PETID)!=718 && CHAR_getInt(petindex,CHAR_PETID)!=401) return;
PET_dropPetFLXY(fd_charaindex, havepetindex, -1,-1,-1);
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDTYPE,0);
return;
}
if( seqno == CHAR_WINDOWTYPE_RAND3_DROPMM )
{
if(strlen(data)<1)
{
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
return;
}
char *arg;
char buftest[255];
int havepetindex;
char ret[255];
arg = CHAR_getWorkChar(fd_charaindex,CHAR_WORKDROPMM);
if(getStringFromIndexWithDelim(arg,"|", 1, buftest, sizeof(buftest)) == FALSE)
return;
havepetindex = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 2, buftest, sizeof(buftest)) == FALSE)
return;
strcpy(ret,buftest);
if(strcmp(ret,data)!=0){
CHAR_talkToCli( fd_charaindex, -1, "<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>", CHAR_COLORRED);
return;
}
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDEDITBASETIME,0);
CHAR_setChar(fd_charaindex,CHAR_RANDTYPE,"");
int petindex;
petindex = CHAR_getCharPet(fd_charaindex,havepetindex);
if( !CHAR_CHECKINDEX( petindex )) return;
if(CHAR_getInt(petindex,CHAR_PETID)!=718 && CHAR_getInt(petindex,CHAR_PETID)!=401) return;
PET_dropPetFLXY(fd_charaindex, havepetindex, -1,-1,-1);
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDTYPE,0);
return;
}
if( seqno == CHAR_WINDOWTYPE_RAND4_DROPMM )
{
if(strlen(data)<1)
{
return;
}
//if(atoi(data)<getRandMin() || atoi(data)>getRandMax()) return;
if(CHAR_getWorkInt(fd_charaindex,CHAR_WORKLUANPCINT)!=0) return;
CHAR_setWorkInt(fd_charaindex,CHAR_WORKLUANPCINT,1);
int cdkeynum;
for(cdkeynum=9;cdkeynum>0;cdkeynum--){
strcpy(mmcdkey[cdkeynum],mmcdkey[cdkeynum-1]);
strcpy(mmcdkeybuf[cdkeynum],mmcdkeybuf[cdkeynum-1]);
}
strcpy(mmcdkey[0],CHAR_getChar(fd_charaindex,CHAR_CDKEY));
sprintf(mmcdkeybuf[0],"%d.%d.%d",CHAR_getInt(fd_charaindex,CHAR_FLOOR),CHAR_getInt(fd_charaindex,CHAR_X),CHAR_getInt(fd_charaindex,CHAR_Y));
time_t timep;
struct tm *p;
time(&timep);
p=localtime(&timep);
timep = mktime(p);
CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDEDITBASETIME,timep);
char *arg;
char buftest[255];
int havepetindex,ret;
arg = CHAR_getWorkChar(fd_charaindex,CHAR_WORKDROPMM);
if(getStringFromIndexWithDelim(arg,"|", 1, buftest, sizeof(buftest)) == FALSE)
return;
havepetindex = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 2, buftest, sizeof(buftest)) == FALSE)
return;
ret = atoi(buftest);
if(atoi(data)!=ret){
if(ret>=1 && ret<=5){
if(atoi(data)>=10000){
sasql_cdkey_lock(CHAR_getChar(fd_charaindex,CHAR_CDKEY),15);
CONNECT_setCloseRequest( fd , 1 );
return;
}
}else{
if(atoi(data)>=1 && atoi(data)<=5){
//sasql_cdkey_lock(CHAR_getChar(fd_charaindex,CHAR_CDKEY),14);
CONNECT_setCloseRequest( fd , 1 );
return;
}
}
CHAR_talkToCli( fd_charaindex, -1, "<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>", CHAR_COLORRED);
return;
}
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDEDITBASETIME,0);
CHAR_setChar(fd_charaindex,CHAR_RANDTYPE,"");
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD>ϲ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ľ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ<EFBFBD><EFBFBD>", CHAR_COLORRED);
int petindex;
petindex = CHAR_getCharPet(fd_charaindex,havepetindex);
if( !CHAR_CHECKINDEX( petindex )) return;
if(CHAR_getInt(petindex,CHAR_PETID)!=718 && CHAR_getInt(petindex,CHAR_PETID)!=401) return;
PET_dropPetFLXY(fd_charaindex, havepetindex, -1,-1,-1);
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDTYPE,0);
return;
}
if( seqno == CHAR_WINDOWTYPE_RAND1_FLLOWMM )
{
if(strlen(data)<1)
{
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
return;
}
char *arg;
char buftest[255];
int havepetindex,ret;
arg = CHAR_getWorkChar(fd_charaindex,CHAR_WORKDROPMM);
if(getStringFromIndexWithDelim(arg,"|", 1, buftest, sizeof(buftest)) == FALSE)
return;
havepetindex = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 2, buftest, sizeof(buftest)) == FALSE)
return;
ret = atoi(buftest);
if(atoi(data)!=ret){
CHAR_talkToCli( fd_charaindex, -1, "<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>", CHAR_COLORRED);
return;
}
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDEDITBASETIME,0);
CHAR_setChar(fd_charaindex,CHAR_RANDTYPE,"");
int petindex;
petindex = CHAR_getCharPet(fd_charaindex,havepetindex);
if( !CHAR_CHECKINDEX( petindex )) return;
if(CHAR_getInt(petindex,CHAR_PETID)!=718 && CHAR_getInt(petindex,CHAR_PETID)!=401) return;
if( !PET_dropPetFollow( fd_charaindex, havepetindex, -1, -1, -1 ) ) {
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD>ܣ<EFBFBD>", CHAR_COLORWHITE );
return;
}
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDTYPE,0);
return;
}
if( seqno == CHAR_WINDOWTYPE_RAND2_FLLOWMM )
{
if(strlen(data)<1)
{
return;
}
if(atoi(data)<1 || atoi(data)>5) return;
char *arg;
char buftest[255];
int havepetindex,ret;
arg = CHAR_getWorkChar(fd_charaindex,CHAR_WORKDROPMM);
if(getStringFromIndexWithDelim(arg,"|", 1, buftest, sizeof(buftest)) == FALSE)
return;
havepetindex = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 2, buftest, sizeof(buftest)) == FALSE)
return;
ret = atoi(buftest);
if(atoi(data)!=ret){
CHAR_talkToCli( fd_charaindex, -1, "<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><EFBFBD>ԡ<EFBFBD>", CHAR_COLORRED);
return;
}
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDEDITBASETIME,0);
CHAR_setChar(fd_charaindex,CHAR_RANDTYPE,"");
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD>ϲ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѡ<EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ<EFBFBD><EFBFBD>", CHAR_COLORRED);
int petindex;
petindex = CHAR_getCharPet(fd_charaindex,havepetindex);
if( !CHAR_CHECKINDEX( petindex )) return;
if(CHAR_getInt(petindex,CHAR_PETID)!=718 && CHAR_getInt(petindex,CHAR_PETID)!=401) return;
if( !PET_dropPetFollow( fd_charaindex, havepetindex, -1, -1, -1 ) ) {
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD>ܣ<EFBFBD>", CHAR_COLORWHITE );
return;
}
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDTYPE,0);
return;
}
if( seqno == CHAR_WINDOWTYPE_RAND3_FLLOWMM )
{
if(strlen(data)<1)
{
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
return;
}
char *arg;
char buftest[255];
int havepetindex;
char ret[255];
arg = CHAR_getWorkChar(fd_charaindex,CHAR_WORKDROPMM);
if(getStringFromIndexWithDelim(arg,"|", 1, buftest, sizeof(buftest)) == FALSE)
return;
havepetindex = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 2, buftest, sizeof(buftest)) == FALSE)
return;
strcpy(ret,buftest);
if(strcmp(ret,data)!=0){
CHAR_talkToCli( fd_charaindex, -1, "<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>", CHAR_COLORRED);
return;
}
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDEDITBASETIME,0);
CHAR_setChar(fd_charaindex,CHAR_RANDTYPE,"");
int petindex;
petindex = CHAR_getCharPet(fd_charaindex,havepetindex);
if( !CHAR_CHECKINDEX( petindex )) return;
if(CHAR_getInt(petindex,CHAR_PETID)!=718 && CHAR_getInt(petindex,CHAR_PETID)!=401) return;
if( !PET_dropPetFollow( fd_charaindex, havepetindex, -1, -1, -1 ) ) {
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD>ܣ<EFBFBD>", CHAR_COLORWHITE );
return;
}
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDTYPE,0);
return;
}
if( seqno == CHAR_WINDOWTYPE_RAND4_FLLOWMM )
{
if(strlen(data)<1)
{
return;
}
//if(atoi(data)<getRandMin() || atoi(data)>getRandMax()) return;
if(CHAR_getWorkInt(fd_charaindex,CHAR_WORKLUANPCINT)!=0) return;
CHAR_setWorkInt(fd_charaindex,CHAR_WORKLUANPCINT,1);
int cdkeynum;
for(cdkeynum=9;cdkeynum>0;cdkeynum--){
strcpy(mmcdkey[cdkeynum],mmcdkey[cdkeynum-1]);
strcpy(mmcdkeybuf[cdkeynum],mmcdkeybuf[cdkeynum-1]);
}
strcpy(mmcdkey[0],CHAR_getChar(fd_charaindex,CHAR_CDKEY));
sprintf(mmcdkeybuf[0],"%d.%d.%d",CHAR_getInt(fd_charaindex,CHAR_FLOOR),CHAR_getInt(fd_charaindex,CHAR_X),CHAR_getInt(fd_charaindex,CHAR_Y));
time_t timep;
struct tm *p;
time(&timep);
p=localtime(&timep);
timep = mktime(p);
CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDEDITBASETIME,timep);
char *arg;
char buftest[255];
int havepetindex,ret;
arg = CHAR_getWorkChar(fd_charaindex,CHAR_WORKDROPMM);
if(getStringFromIndexWithDelim(arg,"|", 1, buftest, sizeof(buftest)) == FALSE)
return;
havepetindex = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 2, buftest, sizeof(buftest)) == FALSE)
return;
ret = atoi(buftest);
if(atoi(data)!=ret){
if(ret>=1 && ret<=5){
if(atoi(data)>=10000){
sasql_cdkey_lock(CHAR_getChar(fd_charaindex,CHAR_CDKEY),15);
CONNECT_setCloseRequest( fd , 1 );
return;
}
}else{
if(atoi(data)>=1 && atoi(data)<=5){
//sasql_cdkey_lock(CHAR_getChar(fd_charaindex,CHAR_CDKEY),14);
CONNECT_setCloseRequest( fd , 1 );
return;
}
}
CHAR_talkToCli( fd_charaindex, -1, "<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>", CHAR_COLORRED);
return;
}
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDEDITBASETIME,0);
CHAR_setChar(fd_charaindex,CHAR_RANDTYPE,"");
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD>ϲ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ľ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ<EFBFBD><EFBFBD>", CHAR_COLORRED);
int petindex;
petindex = CHAR_getCharPet(fd_charaindex,havepetindex);
if( !CHAR_CHECKINDEX( petindex )) return;
if(CHAR_getInt(petindex,CHAR_PETID)!=718 && CHAR_getInt(petindex,CHAR_PETID)!=401) return;
if( !PET_dropPetFollow( fd_charaindex, havepetindex, -1, -1, -1 ) ) {
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD>ܣ<EFBFBD>", CHAR_COLORWHITE );
return;
}
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDTYPE,0);
return;
}
#endif
#ifdef _DP_ZHIPIAO_ITEM
if( seqno == CHAR_WINDOWTYPE_DPZHIPIAO_1 )
{
if(strlen(data)<1)
{
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
return;
}
if(atoi(data)!=CHAR_getWorkInt(fd_charaindex,CHAR_WORKDPZHIPIAORAND)){
CHAR_talkToCli( fd_charaindex, -1, "<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>", CHAR_COLORRED);
return;
}
char buf[255];
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGEANDLINEINPUT,
WINDOW_BUTTONTYPE_OKCANCEL,
CHAR_WINDOWTYPE_DPZHIPIAO_2,
-1,
makeEscapeString( "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD>һ<EFBFBD><EFBFBD><EFBFBD>DP<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>\n", buf, sizeof(buf)));
}
if( seqno == CHAR_WINDOWTYPE_DPZHIPIAO_2 ){
if(select == WINDOW_BUTTONTYPE_OK){
if(strlen(data)<1) return;
if(atoi(data)<100){
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD>С֧Ʊ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ100DP<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>޷<EFBFBD>ǩ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
return;
}
if(atoi(data)>10000000){
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>֧Ʊ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ1000WDP<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>޷<EFBFBD>ǩ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
return;
}
char zhipiaomsg[256];
int dppoint = atoi(data)*CHAR_getWorkInt(fd_charaindex,CHAR_WORKDPZHIPIAOSHUI)/100;
if(dppoint<10) dppoint = dppoint+1;
sprintf(zhipiaomsg,"\nǩ<EFBFBD><EFBFBD>֧Ʊ<EFBFBD><EFBFBD>Ҫ<EFBFBD><EFBFBD>ȡ<EFBFBD>ٷ<EFBFBD>֮%d<><64>˰<EFBFBD><CBB0>\n\n<EFBFBD><EFBFBD>֧Ʊ<EFBFBD><EFBFBD>ǩ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD>۳<EFBFBD>%dDP\n\n<EFBFBD><EFBFBD>ȷ<EFBFBD><EFBFBD>Ҫ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ô<EFBFBD><EFBFBD>",CHAR_getWorkInt(fd_charaindex,CHAR_WORKDPZHIPIAOSHUI),dppoint+atoi(data));
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
WINDOW_BUTTONTYPE_OKCANCEL,
CHAR_WINDOWTYPE_DPZHIPIAO_3,
-1,
zhipiaomsg);
CHAR_setWorkInt(fd_charaindex,CHAR_WORKDPZHIPIAOPOINT,atoi(data));
return;
}else
return;
}
if( seqno == CHAR_WINDOWTYPE_DPZHIPIAO_3 ){
if(select == WINDOW_BUTTONTYPE_OK){
int mypoint = CHAR_getInt(fd_charaindex,CHAR_DUELPOINT);
int itempoint = CHAR_getWorkInt(fd_charaindex,CHAR_WORKDPZHIPIAOPOINT);
int kdppoint = itempoint/100*CHAR_getWorkInt(fd_charaindex,CHAR_WORKDPZHIPIAOSHUI);
if(kdppoint<10) kdppoint =kdppoint+1;
int dppoint = itempoint+kdppoint;
if(mypoint<dppoint){
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>DP<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>޷<EFBFBD><EFBFBD>һ<EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
return;
}else{
int itemindex = CHAR_getItemIndex(fd_charaindex,CHAR_getWorkInt(fd_charaindex,CHAR_WORKDPZHIPIAOITEM));
if( ITEM_CHECKINDEX(itemindex) == FALSE )return;
CHAR_setInt(fd_charaindex,CHAR_DUELPOINT,mypoint-dppoint);
ITEM_setChar(itemindex,ITEM_NAME,"DP֧Ʊ");
ITEM_setChar(itemindex,ITEM_SECRETNAME,"DP֧Ʊ");
char zhipiaomsg[256];
sprintf(zhipiaomsg,"<EFBFBD><EFBFBD>DP֧Ʊ<EFBFBD><EFBFBD>ֵ%dDP",itempoint);
ITEM_setChar(itemindex,ITEM_EFFECTSTRING,zhipiaomsg);
sprintf(zhipiaomsg,"1|%d",itempoint);
ITEM_setChar(itemindex,ITEM_ARGUMENT,zhipiaomsg);
CHAR_sendItemDataOne( fd_charaindex, CHAR_getWorkInt(fd_charaindex,CHAR_WORKDPZHIPIAOITEM));
CHAR_talkToCli( fd_charaindex, -1, "DP֧Ʊ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɹ<EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
sprintf(zhipiaomsg,"<EFBFBD>۳<EFBFBD>%dDP",dppoint);
CHAR_talkToCli(fd_charaindex, -1, zhipiaomsg, CHAR_COLORYELLOW);
CHAR_send_P_StatusString( fd_charaindex ,CHAR_P_STRING_DUELPOINT);
CHAR_send_DpDBUpdate_AddressBook( fd_charaindex, TRUE );
CHAR_charSaveFromConnect(fd_charaindex, FALSE);
CHAR_talkToCli(fd_charaindex, -1, "ϵͳΪ<EFBFBD><EFBFBD><EFBFBD>Զ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
return;
}
}else{
return;
}
}
#endif
#ifdef _NPC_RAND_MSG
if( seqno == CHAR_WINDOWTYPE_NPC_RAND1_MSG ){
if(select == WINDOW_BUTTONTYPE_OK){
if(strlen(data)<1)
{
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
return;
}
char *arg;
char buftest[255];
int npcindex,ret;
char *szmsg;
arg = CHAR_getWorkChar(fd_charaindex,CHAR_WORKRANDMSG);
if(getStringFromIndexWithDelim(arg,"|", 1, buftest, sizeof(buftest)) == FALSE)
return;
ret = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 2, buftest, sizeof(buftest)) == FALSE)
return;
npcindex = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 3, buftest, sizeof(buftest)) == FALSE)
return;
szmsg = buftest;
if(atoi(data)!=ret){
CHAR_talkToCli( fd_charaindex, -1, "<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>", CHAR_COLORRED);
return;
}
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDEDITBASETIME,0);
CHAR_setChar(fd_charaindex,CHAR_RANDTYPE,"");
NPC_TypeCheck( npcindex, fd_charaindex, szmsg);
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDTYPE,0);
return;
}else
return;
}
if( seqno == CHAR_WINDOWTYPE_NPC_RAND2_MSG ){
if(strlen(data)<1)
{
return;
}
if(atoi(data)<1 || atoi(data)>5) return;
char *arg;
char buftest[255];
int npcindex,ret;
char *szmsg;
arg = CHAR_getWorkChar(fd_charaindex,CHAR_WORKRANDMSG);
if(getStringFromIndexWithDelim(arg,"|", 1, buftest, sizeof(buftest)) == FALSE)
return;
ret = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 2, buftest, sizeof(buftest)) == FALSE)
return;
npcindex = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 3, buftest, sizeof(buftest)) == FALSE)
return;
szmsg = buftest;
if(atoi(data)!=ret){
CHAR_talkToCli( fd_charaindex, -1, "<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><EFBFBD>ԡ<EFBFBD>", CHAR_COLORRED);
return;
}
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDEDITBASETIME,0);
CHAR_setChar(fd_charaindex,CHAR_RANDTYPE,"");
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD>ϲ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѡ<EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ<EFBFBD><EFBFBD>", CHAR_COLORRED);
NPC_TypeCheck( npcindex, fd_charaindex, szmsg);
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDTYPE,0);
return;
}
if( seqno == CHAR_WINDOWTYPE_NPC_RAND3_MSG ){
if(select == WINDOW_BUTTONTYPE_OK){
if(strlen(data)<1)
{
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORRED);
return;
}
char *arg;
char buftest[255];
int npcindex;
char ret[255];
char *szmsg;
arg = CHAR_getWorkChar(fd_charaindex,CHAR_WORKRANDMSG);
if(getStringFromIndexWithDelim(arg,"|", 1, buftest, sizeof(buftest)) == FALSE)
return;
strcpy(ret,buftest);
if(getStringFromIndexWithDelim(arg,"|", 2, buftest, sizeof(buftest)) == FALSE)
return;
npcindex = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 3, buftest, sizeof(buftest)) == FALSE)
return;
szmsg = buftest;
if(strcmp(ret,data)!=0){
CHAR_talkToCli( fd_charaindex, -1, "<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>", CHAR_COLORRED);
return;
}
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDEDITBASETIME,0);
CHAR_setChar(fd_charaindex,CHAR_RANDTYPE,"");
NPC_TypeCheck( npcindex, fd_charaindex, szmsg);
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDTYPE,0);
return;
}else
return;
}
if( seqno == CHAR_WINDOWTYPE_NPC_RAND4_MSG ){
if(strlen(data)<1)
{
CHAR_setWorkChar(fd_charaindex,CHAR_WORKRANDMSG,"");
return;
}
//if(atoi(data)<getRandMin() || atoi(data)>getRandMax()) return;
if(CHAR_getWorkInt(fd_charaindex,CHAR_WORKLUANPCINT)!=0){
CHAR_setWorkChar(fd_charaindex,CHAR_WORKRANDMSG,"");
return;
}
CHAR_setWorkInt(fd_charaindex,CHAR_WORKLUANPCINT,1);
int cdkeynum;
for(cdkeynum=9;cdkeynum>0;cdkeynum--){
strcpy(mmcdkey[cdkeynum],mmcdkey[cdkeynum-1]);
strcpy(mmcdkeybuf[cdkeynum],mmcdkeybuf[cdkeynum-1]);
}
strcpy(mmcdkey[0],CHAR_getChar(fd_charaindex,CHAR_CDKEY));
sprintf(mmcdkeybuf[0],"%d.%d.%d",CHAR_getInt(fd_charaindex,CHAR_FLOOR),CHAR_getInt(fd_charaindex,CHAR_X),CHAR_getInt(fd_charaindex,CHAR_Y));
time_t timep;
struct tm *p;
time(&timep);
p=localtime(&timep);
timep = mktime(p);
CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDEDITBASETIME,timep);
char *arg;
char buftest[255];
int npcindex,ret;
char *szmsg;
arg = CHAR_getWorkChar(fd_charaindex,CHAR_WORKRANDMSG);
if(getStringFromIndexWithDelim(arg,"|", 1, buftest, sizeof(buftest)) == FALSE){
CHAR_setWorkChar(fd_charaindex,CHAR_WORKRANDMSG,"");
return;
}
ret = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 2, buftest, sizeof(buftest)) == FALSE){
CHAR_setWorkChar(fd_charaindex,CHAR_WORKRANDMSG,"");
return;
}
npcindex = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 3, buftest, sizeof(buftest)) == FALSE){
CHAR_setWorkChar(fd_charaindex,CHAR_WORKRANDMSG,"");
return;
}
szmsg = buftest;
if(atoi(data)!=ret){
if(ret>=1 && ret<=5){
if(atoi(data)>=10000){
sasql_cdkey_lock(CHAR_getChar(fd_charaindex,CHAR_CDKEY),15);
CONNECT_setCloseRequest( fd , 1 );
return;
}
}else{
if(atoi(data)>=1 && atoi(data)<=5){
//sasql_cdkey_lock(CHAR_getChar(fd_charaindex,CHAR_CDKEY),14);
CONNECT_setCloseRequest( fd , 1 );
return;
}
}
CHAR_setWorkChar(fd_charaindex,CHAR_WORKRANDMSG,"");
CHAR_talkToCli( fd_charaindex, -1, "<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>", CHAR_COLORRED);
return;
}
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDEDITBASETIME,0);
CHAR_setWorkChar(fd_charaindex,CHAR_WORKRANDMSG,"");
CHAR_setChar(fd_charaindex,CHAR_RANDTYPE,"");
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD>ϲ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ľ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ<EFBFBD><EFBFBD>", CHAR_COLORRED);
NPC_TypeCheck( npcindex, fd_charaindex, szmsg);
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDTYPE,0);
return;
}
if( seqno == CHAR_WINDOWTYPE_NPCENEMY_RAND_MSG ){
if(strlen(data)<1)
{
CHAR_setWorkChar(fd_charaindex,CHAR_WORKRANDMSG,"");
return;
}
//if(atoi(data)<getRandMin() || atoi(data)>getRandMax()) return;
if(CHAR_getWorkInt(fd_charaindex,CHAR_WORKLUANPCINT)!=0){
CHAR_setWorkChar(fd_charaindex,CHAR_WORKRANDMSG,"");
return;
}
CHAR_setWorkInt(fd_charaindex,CHAR_WORKLUANPCINT,1);
int cdkeynum;
for(cdkeynum=9;cdkeynum>0;cdkeynum--){
strcpy(mmcdkey[cdkeynum],mmcdkey[cdkeynum-1]);
strcpy(mmcdkeybuf[cdkeynum],mmcdkeybuf[cdkeynum-1]);
}
strcpy(mmcdkey[0],CHAR_getChar(fd_charaindex,CHAR_CDKEY));
sprintf(mmcdkeybuf[0],"%d.%d.%d",CHAR_getInt(fd_charaindex,CHAR_FLOOR),CHAR_getInt(fd_charaindex,CHAR_X),CHAR_getInt(fd_charaindex,CHAR_Y));
time_t timep;
struct tm *p;
time(&timep);
p=localtime(&timep);
timep = mktime(p);
CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDEDITBASETIME,timep);
char *arg;
char buftest[255];
int npcindex,ret;
arg = CHAR_getWorkChar(fd_charaindex,CHAR_WORKRANDMSG);
if(getStringFromIndexWithDelim(arg,"|", 1, buftest, sizeof(buftest)) == FALSE){
CHAR_setWorkChar(fd_charaindex,CHAR_WORKRANDMSG,"");
return;
}
ret = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 2, buftest, sizeof(buftest)) == FALSE){
CHAR_setWorkChar(fd_charaindex,CHAR_WORKRANDMSG,"");
return;
}
npcindex = atoi(buftest);
if(atoi(data)!=ret){
if(ret>=1 && ret<=5){
if(atoi(data)>=10000){
sasql_cdkey_lock(CHAR_getChar(fd_charaindex,CHAR_CDKEY),15);
CONNECT_setCloseRequest( fd , 1 );
return;
}
}else{
if(atoi(data)>=1 && atoi(data)<=5){
CONNECT_setCloseRequest( fd , 1 );
return;
}
}
CHAR_setWorkChar(fd_charaindex,CHAR_WORKRANDMSG,"");
CHAR_talkToCli( fd_charaindex, -1, "<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>", CHAR_COLORRED);
return;
}
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDEDITBASETIME,0);
CHAR_setWorkChar(fd_charaindex,CHAR_WORKRANDMSG,"");
CHAR_setChar(fd_charaindex,CHAR_RANDTYPE,"");
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD>ϲ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ľ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ<EFBFBD><EFBFBD>", CHAR_COLORRED);
NPC_NPCEnemy_Encount( npcindex, fd_charaindex, 1);
//CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDTYPE,0);
return;
}
if( seqno == CHAR_WINDOWTYPE_LUANPC_RANDMSG ){
if(strlen(data)<1)
{
CHAR_setWorkChar(fd_charaindex,CHAR_WORKRANDMSG,"");
return;
}
//if(atoi(data)<getRandMin() || atoi(data)>getRandMax()) return;
if(CHAR_getWorkInt(fd_charaindex,CHAR_WORKLUANPCINT)!=0){
CHAR_setWorkChar(fd_charaindex,CHAR_WORKRANDMSG,"");
return;
}
CHAR_setWorkInt(fd_charaindex,CHAR_WORKLUANPCINT,1);
int cdkeynum;
for(cdkeynum=9;cdkeynum>0;cdkeynum--){
strcpy(mmcdkey[cdkeynum],mmcdkey[cdkeynum-1]);
strcpy(mmcdkeybuf[cdkeynum],mmcdkeybuf[cdkeynum-1]);
}
strcpy(mmcdkey[0],CHAR_getChar(fd_charaindex,CHAR_CDKEY));
sprintf(mmcdkeybuf[0],"%d.%d.%d",CHAR_getInt(fd_charaindex,CHAR_FLOOR),CHAR_getInt(fd_charaindex,CHAR_X),CHAR_getInt(fd_charaindex,CHAR_Y));
time_t timep;
struct tm *p;
time(&timep);
p=localtime(&timep);
timep = mktime(p);
CHAR_setWorkInt(fd_charaindex,CHAR_WORKRANDEDITBASETIME,timep);
char *arg;
char buftest[255];
int npcindex,talkindex,ret,flag;
arg = CHAR_getWorkChar(fd_charaindex,CHAR_WORKRANDMSG);
if(getStringFromIndexWithDelim(arg,"|", 1, buftest, sizeof(buftest)) == FALSE){
CHAR_setWorkChar(fd_charaindex,CHAR_WORKRANDMSG,"");
return;
}
ret = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 2, buftest, sizeof(buftest)) == FALSE){
CHAR_setWorkChar(fd_charaindex,CHAR_WORKRANDMSG,"");
return;
}
npcindex = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 3, buftest, sizeof(buftest)) == FALSE){
CHAR_setWorkChar(fd_charaindex,CHAR_WORKRANDMSG,"");
return;
}
talkindex = atoi(buftest);
if(getStringFromIndexWithDelim(arg,"|", 4, buftest, sizeof(buftest)) == FALSE){
CHAR_setWorkChar(fd_charaindex,CHAR_WORKRANDMSG,"");
return;
}
flag = atoi(buftest);
if(atoi(data)!=ret){
if(ret>=1 && ret<=5){
if(atoi(data)>=10000){
sasql_cdkey_lock(CHAR_getChar(fd_charaindex,CHAR_CDKEY),15);
CONNECT_setCloseRequest( fd , 1 );
return;
}
}else{
if(atoi(data)>=1 && atoi(data)<=5){
//sasql_cdkey_lock(CHAR_getChar(fd_charaindex,CHAR_CDKEY),14);
CONNECT_setCloseRequest( fd , 1 );
return;
}
}
CHAR_setWorkChar(fd_charaindex,CHAR_WORKRANDMSG,"");
CHAR_talkToCli( fd_charaindex, -1, "<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>", CHAR_COLORRED);
return;
}
sprintf(buftest,"%d|%d|%d|%d",ret,npcindex,talkindex,1);
CHAR_setWorkChar(fd_charaindex,CHAR_WORKRANDMSG,buftest);
CHAR_setChar(fd_charaindex,CHAR_RANDTYPE,"");
CHAR_talkToCli( fd_charaindex, -1, "<EFBFBD><EFBFBD>ϲ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ľ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȷ<EFBFBD><EFBFBD>", CHAR_COLORRED);
NPC_Lua_TalkedCallBack(npcindex,fd_charaindex,"hi",0,-1);
return;
}
#endif
{//ttom avoid the warp at will
Char *ch;
ch = CHAR_getCharPointer( fd_charaindex);
// CoolFish: +1 2001/11/05
if (!ch) return;
if((ch->data[CHAR_X]!=x)||(ch->data[CHAR_Y]!=y)){
// Robin 04/20 test
return;
x=ch->data[CHAR_X];
y=ch->data[CHAR_Y];
}
//ttom avoid WN at will
if(seqno==CHAR_WINDOWTYPE_NPCENEMY_START){
//print("12121212\n");
// Char *ch;
OBJECT object;
int ix,iy,ifloor,i,j;
int whichtype= -1;
int enemy=0;
int enemy_index;
if(!CHECKOBJECT(objindex)){
goto FIRST;
}
enemy_index=OBJECT_getIndex(objindex);//ttom 11/15/2000
ix =ch->data[CHAR_X];
iy =ch->data[CHAR_Y];
ifloor=ch->data[CHAR_FLOOR];
for(i=iy-1;i<=iy+1;i++){
for(j=ix-1;j<=ix+1;j++){
for( object = MAP_getTopObj(ifloor,j,i) ; object ;
object = NEXT_OBJECT(object ) ){
int objindex = GET_OBJINDEX(object);
switch( OBJECT_getType(objindex) ){
case OBJTYPE_CHARA:
whichtype = CHAR_getInt( OBJECT_getIndex( objindex), CHAR_WHICHTYPE);
if( whichtype == CHAR_TYPENPCENEMY){
int i_ene_temp;
i_ene_temp=OBJECT_getIndex( objindex);
//print("\n<WN>--enetemp=%d",i_ene_temp);
if(i_ene_temp== enemy_index){
goto START_WN;
}else{
enemy=0;
}
}
break;
case OBJTYPE_ITEM:
break;
case OBJTYPE_GOLD:
break;
default:
break;
}
}
}
}
if(enemy==0){
FIRST:
lssproto_EN_send( fd, FALSE, 0 );
CHAR_talkToCli(fd_charaindex, -1, "<EFBFBD>¼<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
goto END_WN;
}
}
}
//ttom end
START_WN:
CHAR_setMyPosition( fd_charaindex, x,y,TRUE);
if( CHAR_getWorkInt( fd_charaindex, CHAR_WORKBATTLEMODE) == BATTLE_CHARMODE_NONE){
if(seqno==CHAR_WINDOWTYPE_WINDOWWARPMAN_MAIN){
if(!CONNECT_get_first_warp(fd)){
select=1;
}
}
CHAR_processWindow( fd_charaindex, seqno,
select, objindex, makeStringFromEscaped(data));
//#ifdef _NO_WARP
// if (CONNECT_get_seqno(fd)==CHAR_WINDOWTYPE_WINDOWWARPMAN_MAIN)
// {
// CONNECT_set_seqno(fd,-1);
// CONNECT_set_selectbutton(fd,1);
// }
//#endif
}
//ttom+1
END_WN:
return;
//CONNECT_set_pass(fd,TRUE);//ttom
}
/*------------------------------------------------------------
------------------------------------------------------------*/
void lssproto_HL_recv( int fd,int flg )
{
char msgbuf[128];
int i, fd_charaindex;
CHECKFD;
fd_charaindex = CONNECT_getCharaindex( fd );
if( CHAR_getWorkInt( fd_charaindex, CHAR_WORKBATTLEMODE)
== BATTLE_CHARMODE_NONE)
{
return;
}
#ifdef _LOCKHELP_OK // (<28><><EFBFBD>ɿ<EFBFBD>) Syu ADD <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɼ<EFBFBD><C9BC><EFBFBD>ս<EFBFBD><D5BD>
if((CHAR_getInt(fd_charaindex,CHAR_FLOOR) >= 8200 && CHAR_getInt(fd_charaindex,CHAR_FLOOR) <= 8213) ||
(CHAR_getInt(fd_charaindex,CHAR_FLOOR) >= 30017 && CHAR_getInt(fd_charaindex,CHAR_FLOOR) <= 30021)
|| CHAR_getInt(fd_charaindex,CHAR_FLOOR) == 20000
){
return ;
}
#endif
#ifdef _NPCENEMY_1
if(CHAR_getWorkInt(fd_charaindex,CHAR_WORKBATTLEHELP)==1) return;
#endif
if( flg == TRUE ) {
BattleArray[CHAR_getWorkInt( fd_charaindex,
CHAR_WORKBATTLEINDEX)].Side[
CHAR_getWorkInt( fd_charaindex,
CHAR_WORKBATTLESIDE)].flg |= BSIDE_FLG_HELP_OK;
snprintf( msgbuf, sizeof( msgbuf),
"%s <20><><EFBFBD><EFBFBD><EFBFBD>ȣ<EFBFBD>",
CHAR_getChar( fd_charaindex, CHAR_NAME));
}
else {
BattleArray[CHAR_getWorkInt( fd_charaindex,
CHAR_WORKBATTLEINDEX)].Side[
CHAR_getWorkInt( fd_charaindex,
CHAR_WORKBATTLESIDE)].flg &= ~BSIDE_FLG_HELP_OK;
snprintf( msgbuf, sizeof( msgbuf),
"%s <20><><EFBFBD><EFBFBD><EFBFBD>ܾ<EFBFBD><DCBE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>",
CHAR_getChar( fd_charaindex, CHAR_NAME));
}
for( i = 0; i < 5; i ++ ) {
int toindex = BattleArray[CHAR_getWorkInt(
fd_charaindex, CHAR_WORKBATTLEINDEX)].Side[
CHAR_getWorkInt( fd_charaindex,
CHAR_WORKBATTLESIDE)].Entry[i].charaindex;
if( CHAR_CHECKINDEX( toindex)) {
int tofd = getfdFromCharaIndex( toindex );
if( tofd != -1 ) {
lssproto_HL_send( tofd, flg);
}
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˪<EFBFBD><CBAA> */
CHAR_talkToCli( toindex, -1, msgbuf, CHAR_COLORYELLOW);
CHAR_sendBattleEffect( toindex, ON);
}
}
}
/*------------------------------------------------------------
------------------------------------------------------------*/
void lssproto_ProcGet_recv( int fd )
{
outputNetProcLog( fd, 1);
}
/*------------------------------------------------------------
------------------------------------------------------------*/
void lssproto_PlayerNumGet_recv( int fd )
{
int i;
int clicnt =0;
int playercnt = 0;
for( i = 0; i < ConnectLen; i ++ ) {
if( CONNECT_getUse_debug(i,1017) ){
if( CONNECT_getCtype(i) == CLI) {
clicnt ++;
if( CONNECT_getCharaindex(i) >= 0 ) playercnt++;
}
}
}
lssproto_PlayerNumGet_send( fd, clicnt, playercnt);
}
/*------------------------------------------------------------
------------------------------------------------------------*/
void lssproto_LB_recv( int fd,int x,int y )
{
int fd_charaindex;
CHECKFDANDTIME;
fd_charaindex = CONNECT_getCharaindex( fd );
{//ttom avoid warp at will
int ix,iy;
ix=CHAR_getInt(fd_charaindex, CHAR_X);
iy=CHAR_getInt(fd_charaindex, CHAR_Y);
if( (ix!=x)||(iy!=y)){
//print("\n<LB>--Error!!!!");
//print("\n<LB>origion x=%d,y=%d",ix,iy);
//print("\n<LB>modify X=%d,Y=%d",x,y);
x=ix;
y=iy;
}
}
CHAR_setMyPosition( fd_charaindex, x,y,TRUE);
/* ɱ<><C9B1>ƥ<EFBFBD><C6A5><EFBFBD>¾<EFBFBD><C2BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƻ<EFBFBD>ɱ<EFBFBD><C9B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
BATTLE_WatchTry( fd_charaindex );
}
/*------------------------------------------------------------
------------------------------------------------------------*/
void lssproto_Shutdown_recv( int fd,char* passwd,int min )
{
char buff[32];
if( strcmp( passwd, "hogehoge") == 0 ) {
int i;
int playernum = CHAR_getPlayerMaxNum();
snprintf( buff, sizeof( buff),"%s<><73><EFBFBD>",getGameserverID());
for( i = 0 ; i < playernum ; i++) {
if( CHAR_getCharUse(i) != FALSE ) {
CHAR_talkToCli( i, -1, buff, CHAR_COLORYELLOW);
}
}
SERVSTATE_setLimittime(min);
SERVSTATE_setShutdown( NowTime.tv_sec );
SERVSTATE_setDsptime( 0 );
}
}
void lssproto_PMSG_recv( int fd,int index,int petindex,int itemindex,
char* message,int color )
{
// CoolFish: Prevent Trade Cheat 2001/4/18
int fd_charaindex;
fd_charaindex = CONNECT_getCharaindex(fd);
if (CHAR_getWorkInt(fd_charaindex, CHAR_WORKTRADEMODE) != CHAR_TRADE_FREE)
return;
if( CHAR_getWorkInt(fd_charaindex,CHAR_WORKSTREETVENDOR)!=-1) return;
PETMAIL_sendPetMail( CONNECT_getCharaindex( fd ),
index, petindex, itemindex, message, color);
}
/*------------------------------------------------------------
------------------------------------------------------------*/
void lssproto_PS_recv( int fd, int havepetindex, int havepetskill, int toindex, char* data )
{
int to_charaindex = Callfromcli_Util_getTargetCharaindex( fd, toindex);
int charaindex = CONNECT_getCharaindex( fd );
int petindex;
BOOL ret;
petindex = CHAR_getCharPet( charaindex, havepetindex);
if( !CHAR_CHECKINDEX( petindex)) return;
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEMODE) != BATTLE_CHARMODE_NONE && strlen(data)>0) return;
ret = PETSKILL_Use( petindex, havepetskill, to_charaindex, data );
lssproto_PS_send( fd, ret, havepetindex, havepetskill, toindex);
}
/*------------------------------------------------------------
------------------------------------------------------------*/
void lssproto_SP_recv( int fd,int x,int y, int dir )
{
int fd_charaindex;
fd_charaindex = CONNECT_getCharaindex( fd );
{//ttom avoid the warp at will
int i_x,i_y;
i_x=CHAR_getInt(fd_charaindex, CHAR_X);
i_y=CHAR_getInt(fd_charaindex, CHAR_Y);
if((i_x!=x)||(i_y!=y)){
x=i_x;
y=i_y;
}
}//ttom
CHAR_setMyPosition_main( fd_charaindex, x,y,dir,TRUE);
}
/*------------------------------------------------------------
* CoolFish: Trade Command 2001/4/18
------------------------------------------------------------*/
void lssproto_TD_recv( int fd, char* message )
{
int fd_charaindex;
CHECKFDANDTIME;
fd_charaindex = CONNECT_getCharaindex( fd );
// print(" MAP_TRADEPICKUP_check0 ");
CHAR_Trade(fd, fd_charaindex, message);
}
/*------------------------------------------------------------
* CoolFish: Family Command 2001/5/24
------------------------------------------------------------*/
void lssproto_FM_recv( int fd, char* message )
{
int fd_charaindex;
struct timeval recvtime;
CHECKFDANDTIME;
// add code by shan
CONNECT_getLastrecvtime( fd, &recvtime);
if( time_diff( NowTime, recvtime) < 0.5 ){
return;
}
CONNECT_setLastrecvtime(fd, &NowTime);
fd_charaindex = CONNECT_getCharaindex( fd );
if( checkStringErr( message ) ) return;
CHAR_Family(fd, fd_charaindex, message);
}
// shan 2002/01/10
void lssproto_PETST_recv( int fd, int nPet, int sPet )
{
if(nPet<0 || nPet>4) return;
int charaindex;
int i, nums=0;
CHECKFDANDTIME;
charaindex = CONNECT_getCharaindex( fd );
if (!CHAR_CHECKINDEX( charaindex ) ) return;
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEMODE)
!= BATTLE_CHARMODE_NONE) return ;
for( i=0; i<5; i++) {
if( CHAR_getWorkInt( charaindex, CHAR_WORK_PET0_STAT+i) == TRUE )
nums++;
}
if( nums <= 3 )
CHAR_setWorkInt( charaindex, CHAR_WORK_PET0_STAT+nPet, sPet);
// if( nums ==3 && CHAR_getWorkInt(charaindex,CHAR_WORK_PET0_STAT+nPet)==0){
// CHAR_setWorkInt( charaindex, CHAR_WORK_PET0_STAT+nPet, 1);
// lssproto_SPET_recv(fd,nPet+1);
// }
}
#ifdef _MIND_ICON
void lssproto_MA_recv(int fd, int x, int y, int nMind)
{
int charaindex;
CHECKFDANDTIME;
charaindex = CONNECT_getCharaindex( fd);
if(!CHAR_CHECKINDEX( charaindex)) return;
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEMODE) != BATTLE_CHARMODE_NONE) return ;
{
int i_x, i_y;
i_x = CHAR_getInt( charaindex, CHAR_X);
i_y = CHAR_getInt( charaindex, CHAR_Y);
if((i_x!=x)||(i_y!=y)){
x = i_x;
y = i_y;
}
}
//print("\nshan------------------>mind action->%d x->%d y->%d", nMind, x, y);
CHAR_setMyPosition( charaindex, x, y, TRUE);
CHAR_setWorkInt( charaindex, CHAR_MIND_NUM, nMind);
CHAR_sendMindEffect( charaindex, CHAR_getWorkInt( charaindex, CHAR_MIND_NUM));
if(CHAR_getWorkInt( charaindex, CHAR_MIND_NUM) != 101290 &&
CHAR_getWorkInt( charaindex, CHAR_MIND_NUM) != 101294 &&
CHAR_getWorkInt( charaindex, CHAR_MIND_NUM) != 101288 )
CHAR_setWorkInt( charaindex, CHAR_MIND_NUM, 0);
//print("\nshan------------------>end");
return;
}
#endif
BOOL checkStringErr( char *checkstring )
{
int i,ach;
for (i=0,ach=0;i<strlen(checkstring);i++) {
if ((unsigned char)checkstring[i]==0xff) { ach=1; break; } // Force no 0xff
if ((unsigned char)checkstring[i]==0x80) { ach=1; break; } // Force no 0x80
if ((unsigned char)checkstring[i]==0x7f) { ach=1; break; } // Force no 0x7f
if ((unsigned char)checkstring[i]<=0x20) { ach=1; break; } // Force greater than 0x20
if (ach) {
if ((((unsigned char)checkstring[i]>=0x40)&&((unsigned char)checkstring[i]<=0x7e))||
(((unsigned char)checkstring[i]>=0xa1)&&((unsigned char)checkstring[i]<=0xfe))) ach=0;
} else {
if (((unsigned char)checkstring[i]>=0xa1)&&((unsigned char)checkstring[i]<=0xfe)) ach=1;
}
}
if (ach)
{
print(" StringDog! ");
return TRUE;
}
return FALSE;
}
#ifdef _TEAM_KICKPARTY
void lssproto_KTEAM_recv( int fd, int si)
{
int charaindex=-1, pindex;
if( si < 0 || si > 5 ) return;
charaindex = CONNECT_getCharaindex( fd );
if( !CHAR_CHECKINDEX( charaindex) ) return;
if( CHAR_getWorkInt( charaindex, CHAR_WORKPARTYMODE) != CHAR_PARTY_LEADER ) return;
pindex = CHAR_getWorkInt( charaindex, si + CHAR_WORKPARTYINDEX1);
if( !CHAR_CHECKINDEX( pindex) ) return;
if( CHAR_getWorkInt( pindex, CHAR_WORKPARTYMODE) == CHAR_PARTY_LEADER ) return;
if( CHAR_DischargeParty( pindex, 0) == FALSE ){
CHAR_talkToCli( charaindex, -1, "<EFBFBD>߳<EFBFBD>ʧ<EFBFBD>ܣ<EFBFBD>", CHAR_COLORYELLOW);
}else{
char buf1[256];
sprintf( buf1, "<EFBFBD>ӳ<EFBFBD>[%s]<5D><><EFBFBD><EFBFBD><EFBFBD>߳<EFBFBD><DFB3><EFBFBD>", CHAR_getUseName( charaindex ));
CHAR_talkToCli( pindex, -1, buf1, CHAR_COLORYELLOW);
sprintf( buf1, "<EFBFBD><EFBFBD>[%s]<5D>߳<EFBFBD><DFB3><EFBFBD><EFBFBD>Ŷӣ<C5B6>", CHAR_getUseName( pindex ));
CHAR_talkToCli( charaindex, -1, buf1, CHAR_COLORYELLOW);
}
}
#endif
#ifdef _CHATROOMPROTOCOL // (<28><><EFBFBD>ɿ<EFBFBD>) Syu ADD <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƶ<EFBFBD><C6B5>
void lssproto_CHATROOM_recv (int fd , char *data)
{
ChatRoom_recvall ( fd , data ) ;
}
#endif
#ifdef _NEWREQUESTPROTOCOL // (<28><><EFBFBD>ɿ<EFBFBD>) Syu ADD <20><><EFBFBD><EFBFBD>ProtocolҪ<6C><D2AA>ϸ<EFBFBD><CFB8>
void lssproto_RESIST_recv (int fd )
{
int charindex = -1 ;
char token[256];
charindex = CONNECT_getCharaindex( fd );
if( !CHAR_CHECKINDEX( charindex) ) return;
sprintf ( token , "%d|%d|%d|%d|%d|%d|%d|%d" ,
CHAR_getInt( charindex, CHAR_EARTH_RESIST ) ,
CHAR_getInt( charindex, CHAR_WATER_RESIST ) ,
CHAR_getInt( charindex, CHAR_FIRE_RESIST ) ,
CHAR_getInt( charindex, CHAR_WIND_RESIST ) ,
CHAR_getInt( charindex, CHAR_EARTH_EXP ) ,
CHAR_getInt( charindex, CHAR_WATER_EXP ) ,
CHAR_getInt( charindex, CHAR_FIRE_EXP ) ,
CHAR_getInt( charindex, CHAR_WIND_EXP )
);
lssproto_RESIST_send ( fd , token ) ;
}
#endif
#ifdef _OUTOFBATTLESKILL // (<28><><EFBFBD>ɿ<EFBFBD>) Syu ADD <20><>ս<EFBFBD><D5BD>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD>Protocol
void lssproto_BATTLESKILL_recv (int fd, int iNum)
{
int charaindex = CONNECT_getCharaindex( fd );
#ifndef _PROSKILL_OPTIMUM
int skillindex=-1,char_pskill=-1,profession_skill=-1;
#endif
if( !CHAR_CHECKINDEX( charaindex) ) return;
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEMODE) != BATTLE_CHARMODE_NONE ) return;
#ifndef _PROSKILL_OPTIMUM // Robin fix cancel <20>˴<EFBFBD><CBB4>Թ<EFBFBD>ְҵ<D6B0><D2B5><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD> PROFESSION_SKILL_Use <20>м<EFBFBD><D0BC><EFBFBD>
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ְҵ
char_pskill = CHAR_getInt( charaindex, PROFESSION_CLASS );
skillindex = PROFESSION_SKILL_GetArray( charaindex, iNum);
int Pskillid = skillindex;
// <20><><EFBFBD>ܵ<EFBFBD>ְҵ
profession_skill = PROFESSION_SKILL_getInt( Pskillid, PROFESSION_SKILL_PROFESSION_CLASS);
if( (char_pskill > 0) && (char_pskill == profession_skill) ){
#else
if( 1 ){
#endif
if( PROFESSION_SKILL_Use( charaindex, iNum, 0, NULL ) != 1 ){
if(CHAR_getWorkInt( charaindex, CHAR_ENCOUNT_NUM)-(int)time(NULL)>0){
// print("\n <20><><EFBFBD><EFBFBD>(%s)ʹ<>ü<EFBFBD><C3BC>ܴ<EFBFBD><DCB4><EFBFBD>!", CHAR_getUseName( charaindex ) );
#ifdef _PROSKILL_ERR_KICK
CONNECT_setCloseRequest( fd , 1 );
#endif
}
}
}
}
#endif
#ifdef _STREET_VENDOR
void lssproto_STREET_VENDOR_recv(int fd,char *message)
{
int charaindex = CONNECT_getCharaindex(fd);
if(!CHAR_CHECKINDEX(charaindex)) return;
if(CHAR_getWorkInt(charaindex,CHAR_WORKBATTLEMODE) != BATTLE_CHARMODE_NONE) return;
if(CHAR_getWorkInt(charaindex,CHAR_WORKPARTYMODE) != CHAR_PARTY_NONE){
CHAR_talkToCli(charaindex,-1,"<EFBFBD><EFBFBD><EFBFBD><EFBFBD>״̬<EFBFBD>²<EFBFBD><EFBFBD>ܽ<EFBFBD><EFBFBD><EFBFBD>",CHAR_COLORYELLOW);
return;
}
if (CHAR_getWorkInt( charaindex, CHAR_WORKSAFEMODE)==0)
{
CHAR_SafePassword(charaindex);
return;
}
CHAR_sendStreetVendor(charaindex,message);
}
#endif
#ifdef _RIGHTCLICK
void lssproto_RCLICK_recv(int fd, int type, char* data)
{
print("\n RCLICK_recv( type=%d data=%s) ", type, data);
}
#endif
#ifdef _JOBDAILY
void lssproto_JOBDAILY_recv(int fd,char *data)
{
int charaindex = CONNECT_getCharaindex(fd);
if(!CHAR_CHECKINDEX(charaindex)) return;
CHAR_JobDaily(charaindex,data);
}
#endif
#ifdef _TEACHER_SYSTEM
void lssproto_TEACHER_SYSTEM_recv(int fd,char *data)
{
int charaindex = CONNECT_getCharaindex(fd);
if(!CHAR_CHECKINDEX(charaindex)) return;
CHAR_Teacher_system(charaindex,data);
}
#endif
#ifdef _ONLINE_SHOP
void lssproto_SHOP_recv(int fd,int shopflag,int piece)
{
int charaindex = CONNECT_getCharaindex(fd);
if(!CHAR_CHECKINDEX(charaindex)) return;
char *mycdkey=CHAR_getChar(charaindex,CHAR_CDKEY);
//saacproto_ACShop_send(fd,mycdkey,charaindex,shopflag,piece);
char dataname[20];
char res[2048];
int rownum=0,pieces=0,shopnum=0,startrow,vippoint=0;
sprintf(dataname,"OnlineShop%d",shopflag);
vippoint=sasql_vippoint(mycdkey,0,0);
rownum=sasql_chehk_shop(dataname);
if(rownum>0)
{
pieces=rownum/8+1;
shopnum=rownum-8*(piece-1);
if(shopnum>8) shopnum=8;
startrow=8*(piece-1);
char* shopres;
shopres=sasql_query_shop(dataname,startrow,shopnum);
lssproto_SHOP_send(fd,shopnum,vippoint,piece,pieces,shopflag,shopres);
}
}
void lssproto_SHOPBUY_recv(int fd,int shopflag,int piece,int shopno,int buynum)
{
int charaindex = CONNECT_getCharaindex(fd);
int i,petindex;
if(!CHAR_CHECKINDEX(charaindex)) return;
if (CHAR_getWorkInt( charaindex, CHAR_WORKSAFEMODE)==0)
{
CHAR_SafePassword(charaindex);
return;
}
if(shopflag==1)
{
for( i = 0 ;i < CHAR_MAXPETHAVE ; i++) {
petindex = CHAR_getCharPet( charaindex, i);
if( petindex == -1 )
break;
}
if( i+buynum > CHAR_MAXPETHAVE ) {
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
return;
}
}
else
{
if(buynum>CHAR_findSurplusItemBox(charaindex)){
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD>Ʒ<EFBFBD><EFBFBD>λ<EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
return;
}
}
char *mycdkey=CHAR_getChar(charaindex,CHAR_CDKEY);
char dataname[20];
int rownum=0,pieces=0,shopnum=0,startrow,vippoint=0;
sprintf(dataname,"OnlineShop%d",shopflag);
vippoint=sasql_vippoint(mycdkey,0,0);
rownum=sasql_chehk_shop(dataname);
if(rownum>0)
{
pieces=rownum/8+1;
shopnum=rownum-8*(piece-1);
if(shopnum>8) shopnum=8;
startrow=8*(piece-1);
char* shopres;
shopres=sasql_query_shop(dataname,startrow,shopnum);
int pvippoint = - sasql_buy_shop(dataname,startrow,shopnum,shopno) * buynum;
vippoint=sasql_vippoint(mycdkey,pvippoint,1);
//saacproto_ACShopBuy_send(fd, charaindex,0,vippoint,piece,pieces,shopflag,shopres,shopno,buynum);
}
//saacproto_ACShopBuy_send(fd,mycdkey,charaindex,shopflag,piece,shopno,buynum);
}
#endif