Mail System Codes [HGSERVER]

All Helbreath Server Source Discussion here.
Post Reply
€M4NU€L
Outpost bitch
Posts: 517
Joined: Sat Nov 19, 2005 9:07 pm
Location: I watch gay porn
Contact:

Post by €M4NU€L »

Ok here you got Mail system HGserver side:


After this:

Code: Select all

  if (memcmp(cp, "/who", 4) == 0) {
  	if (m_pClientList[iClientH]->m_iAdminUserLevel >= m_iAdminLevelWho) {
    SendNotifyMsg(NULL, iClientH, DEF_NOTIFY_TOTALUSERS, NULL, NULL, NULL, NULL);
  	}

  	return;
  }
Add this:

Code: Select all

  if (memcmp(cp, "/sendmail ", 10) == 0) {
  	bCreateMail("Gnius", iClientH, "Test postal system", "This is the body of the mail.", NULL);
  	PutLogList("(DebugLog) Invoked sendmail command! Sent test mail to Gnius!");
  	return;
  }

Before this code:

Code: Select all

	// Old code
	case DEF_COMMONTYPE_REQ_CREATESLATE:
  ReqCreateSlateHandler(iClientH, pData);
Add this shit:

Code: Select all

	// Helbreath 2
	case DEF_COMMONTYPE_REQUEST_MAILLIST:
  RequestMailListHandler(iClientH);
  break;
	case DEF_COMMONTYPE_REQUEST_MAILBODY:
  RequestMailBodyHandler(iClientH, pData);
  break;
	case DEF_COMMONTYPE_REQUEST_SENDMAIL:
  RequestSendMailHandler(iClientH, pData);
  break;
Before this code:

Code: Select all

	case DEF_NOTIFY_SYNTHESIZINGFAILED:
Add this facking shit ! im getting tired lol:

Code: Select all

	case DEF_NOTIFY_SENDMAIL_SUCCESS:
Before this:

Code: Select all

	case DEF_NOTIFY_REQUEST_ACCEPTPORTAL:
Add this shit:

Code: Select all

	case DEF_NOTIFY_UNREADMAIL:
	case DEF_NOTIFY_SENDMAIL_FAILED:
After this:

Code: Select all

	if ((dwTime - m_dwGameTime5) > (60000)) {
  m_dwGameTime5 = dwTime;
Add this:

Code: Select all

  if (bProcessMailStorage() == FALSE) {
  	PutLogList("(!) Error processing mail storage!");
  }
After this BOOL codes:

Code: Select all

BOOL CGame::bClientAddItem(int iClientH, CItem * pItem, BOOL bDropGround) {
Add this :

Code: Select all

void CGame::RequestMailListHandler(int iClientH) {
	register int i;
	int * ip, iRet, iListSize, iUnreadCount;
	CMail * pMailList;
	DWORD * dwp;
	WORD * wp;
	char * cp;

	if (m_pClientList[iClientH] == NULL) return;
	if (m_pClientList[iClientH]->m_bIsKilled == TRUE) return;

	pMailList = pGetMailList(iClientH, &iListSize, &iUnreadCount);

	ZeroMemory(G_cData50000, sizeof(G_cData50000));

	dwp = (DWORD *)(G_cData50000 + DEF_INDEX4_MSGID);
	*dwp = MSGID_NOTIFY;
	wp = (WORD *)(G_cData50000 + DEF_INDEX2_MSGTYPE);
	*wp = DEF_NOTIFY_MAILLIST;

	cp = (char *)(G_cData50000 + DEF_INDEX2_MSGTYPE + 2);

	ip = (int *)cp;
	*ip = iListSize;
	cp += 4;

	for (i = 0; i < iListSize; i++) {
  ip = (int *)cp;
  *ip = pMailList[i].m_iMailId;
  cp += 4;

  memcpy(cp, pMailList[i].m_cFrom, 10);
  cp += 10;

  memcpy(cp, pMailList[i].m_cSubject, DEF_MAXMAILSUBJECTSIZE);
  cp += DEF_MAXMAILSUBJECTSIZE;

  *cp = pMailList[i].m_bIsRead;
  cp++;
	}

	iRet = m_pClientList[iClientH]->m_pXSock->iSendMsg(G_cData50000, 10 + (iListSize * (DEF_MAXMAILSUBJECTSIZE + 5)));

	switch (iRet) {
	case DEF_XSOCKEVENT_QUENEFULL:
	case DEF_XSOCKEVENT_SOCKETERROR:
	case DEF_XSOCKEVENT_CRITICALERROR:
	case DEF_XSOCKEVENT_SOCKETCLOSED:
  DeleteClient(iClientH, TRUE, TRUE);
	}

	try {
  delete [] pMailList;
	} catch (...) { }

void CGame::RequestMailBodyHandler(int iClientH, char * pData) {
	int * ip, iRet, iMailId;
	DWORD * dwp;
	WORD * wp;
	char * cp;

	if (m_pClientList[iClientH] == NULL) return;
	if (m_pClientList[iClientH]->m_bIsKilled == TRUE) return;

	ip = (int *)(pData + DEF_INDEX2_MSGTYPE + 2);
	iMailId = *ip;

	if (iMailId < 1) return;

	//bDatabaseConnect();
	//if (bDatabaseAlive() == FALSE) {
	//	DatabaseClose();
	//	return;
	//}

	ZeroMemory(G_cTxt, sizeof(G_cTxt));
	wsprintf(G_cTxt, "SELECT body FROM mailstorage WHERE to_char='%s' AND mail_id='%d'", m_pClientList[iClientH]->m_cCharName, iMailId);

  	if (mysql_real_query(&m_MySQL, G_cTxt, strlen(G_cTxt)) != 0) {
  return;
	}

	MYSQL_RES * pResult = mysql_store_result(&m_MySQL);

	if (pResult == NULL) {
  return;
	}

	if (mysql_num_rows(pResult) > 0) {
  char cBody[DEF_MAXMAILBODYSIZE + 1];
  ZeroMemory(cBody, sizeof(cBody));

  MYSQL_ROW pRow;

  if ((pRow = mysql_fetch_row(pResult)) == NULL) {
  	return;
  }

  strcpy(cBody, pRow[0]);
  mysql_free_result(pResult);

  ZeroMemory(G_cData3000, sizeof(G_cData3000));

  dwp = (DWORD *)(G_cData3000 + DEF_INDEX4_MSGID);
  *dwp = MSGID_NOTIFY;
  wp = (WORD *)(G_cData3000 + DEF_INDEX2_MSGTYPE);
  *wp = DEF_NOTIFY_MAILBODY;

  cp = (char *)(G_cData3000 + DEF_INDEX2_MSGTYPE + 2);

  ip = (int *)cp;
  *ip = strlen(cBody);
  cp += 4;

  strcpy(cp, cBody);
  cp += strlen(cBody);

  // Attachment implementation here.

  iRet = m_pClientList[iClientH]->m_pXSock->iSendMsg(G_cData3000, 10 + strlen(cBody));

  switch (iRet) {
  case DEF_XSOCKEVENT_QUENEFULL:
  case DEF_XSOCKEVENT_SOCKETERROR:
  case DEF_XSOCKEVENT_CRITICALERROR:
  case DEF_XSOCKEVENT_SOCKETCLOSED:
  	DeleteClient(iClientH, TRUE, TRUE);
  }
	}
}

void CGame::RequestSendMailHandler(int iClientH, char * pData) {
	char * cp, cTo[11], cSubject[DEF_MAXMAILSUBJECTSIZE + 1], cItemIndex;
	WORD * wp, wBodySize;
	int * ip, iAmount;

	if (m_pClientList[iClientH] == NULL) return;
	if (m_pClientList[iClientH]->m_bIsKilled == TRUE) return;

	ZeroMemory(cTo, sizeof(cTo));
	ZeroMemory(cSubject, sizeof(cSubject));
	ZeroMemory(G_cData3000, sizeof(G_cData3000));

	cp = (char *)(pData + DEF_INDEX2_MSGTYPE + 2);

	memcpy(cTo, cp, 10);
	cp += 10;

	memcpy(cSubject, cp, DEF_MAXMAILSUBJECTSIZE);
	cp += DEF_MAXMAILSUBJECTSIZE;

	cItemIndex = *cp;
	cp++;

	ip = (int *)cp;
	iAmount = *ip;
	cp += 4;

	wp = (WORD *)cp;
	wBodySize = *wp;
	cp += 2;

	if (wBodySize > DEF_MAXMAILBODYSIZE) {
  SendNotifyMsg(NULL, iClientH, DEF_NOTIFY_SENDMAIL_FAILED, DEF_SENDMAIL_BODYSIZETOOLARGE, NULL, NULL, NULL);
  return;
	}

	memcpy(G_cData3000, cp, wBodySize);
	cp += wBodySize;

	// Attachment implementation here.
	CItem * pItem = NULL;

	if (bCreateMail(cTo, iClientH, cSubject, G_cData3000, pItem) == FALSE) {
  SendNotifyMsg(NULL, iClientH, DEF_NOTIFY_SENDMAIL_FAILED, DEF_SENDMAIL_CANNOTSAVE, NULL, NULL, NULL);
  return;
	} else {
  SendNotifyMsg(NULL, iClientH, DEF_NOTIFY_SENDMAIL_SUCCESS, NULL, NULL, NULL, NULL);
  return;
	}
}
}
After this shit code ... i dont know if it exists in other HGServers:

Code: Select all

void CGame::DatabaseClose() {
	try {
  mysql_close(&m_MySQL);
	} catch (...) { }
}
Add this:

Code: Select all

bool CGame::bCreateMail(char * cTo, int iClientH, char * cSubject, char * cBody, CItem * pItem) {
	if (m_pClientList[iClientH] == NULL) return FALSE;
	if (cTo == NULL) return FALSE;
	if (cSubject == NULL) return FALSE;
	if (cBody == NULL) return FALSE;
	if ((strlen(cTo) < 1) || (strlen(cTo) > 10)) return FALSE;
	if ((strlen(cSubject) < 1) || (strlen(cTo) > DEF_MAXMAILSUBJECTSIZE)) return FALSE;
	if (strlen(cBody) > DEF_MAXMAILBODYSIZE) return FALSE;

	bDatabaseConnect();
	if (bDatabaseAlive() == FALSE) {
  DatabaseClose();
  return FALSE;
	}

	ZeroMemory(G_cData3000, sizeof(G_cData3000));
	wsprintf(G_cData3000, "INSERT INTO mailstorage (to_char, from_char, subject, body) VALUES ('%s', '%s', '%s', '%s')", cTo, m_pClientList[iClientH]->m_cCharName, cSubject, cBody);

  	if (mysql_real_query(&m_MySQL, G_cData3000, strlen(G_cData3000)) != 0) {
  return FALSE;
	}

	if (pItem != NULL) {
  // Attachment implementation here.
	}

	return TRUE;
}

bool CGame::bProcessMailStorage() {
	register int i;
	int iListSize, iUnreadCount;
	CMail * pMailList;

	for (i = 1; i < DEF_MAXCLIENTS; i++) {
  pMailList = NULL;

  if ((m_pClientList[i] != NULL) &&
  	(m_pClientList[i]->m_bIsInitComplete == TRUE) &&
  	(m_pClientList[i]->m_bIsOnServerChange == FALSE)) {

  	pMailList = pGetMailList(i, &iListSize, &iUnreadCount);

  	if (iListSize > 0) {
    if (pMailList == NULL) return FALSE;

    if (iUnreadCount > 0) {
    	SendNotifyMsg(NULL, i, DEF_NOTIFY_UNREADMAIL, 1, NULL, NULL, NULL);
    }

    try {
    	delete [] pMailList;
    } catch (...) { }
  	}
  }
	}

	return TRUE;
}

CMail * CGame::pGetMailList(int iClientH, int * iListSize, int * iUnreadCount) {
	if (m_pClientList[iClientH] == NULL) return NULL;
	if (iListSize == NULL) return NULL;

	*iListSize = 0;

	if (iUnreadCount == NULL) return NULL;

	*iUnreadCount = 0;

	bDatabaseConnect();
	if (bDatabaseAlive() == FALSE) {
  DatabaseClose();

  return NULL;
	}

	ZeroMemory(G_cTxt, sizeof(G_cTxt));
	wsprintf(G_cTxt, "SELECT mail_id, from_char, subject, attachment_id, is_read FROM mailstorage WHERE to_char='%s'", m_pClientList[iClientH]->m_cCharName);

  	if (mysql_real_query(&m_MySQL, G_cTxt, strlen(G_cTxt)) != 0) {
  return NULL;
	}

	MYSQL_RES * pResult = mysql_store_result(&m_MySQL);

	if (pResult == NULL) {
  return NULL;
	}

	*iListSize = (int)mysql_num_rows(pResult);
	CMail * pMailList = new CMail[*iListSize];
	int i = 0;

	while (MYSQL_ROW pRow = mysql_fetch_row(pResult)) {
  pMailList[i].m_iMailId = atoi(pRow[0]);
  strcpy(pMailList[i].m_cTo, m_pClientList[iClientH]->m_cCharName);
  strcpy(pMailList[i].m_cFrom, pRow[1]);
  strcpy(pMailList[i].m_cSubject, pRow[2]);

  if (atoi(pRow[3]) > 0) {
  	// Attachment implementation here.
  }

  if (atoi(pRow[4]) != 0) {
  	pMailList[i].m_bIsRead = TRUE;
  } else {
  	*iUnreadCount++;
  }

  i++;
	}

	mysql_free_result(pResult);

	return (CMail *)pMailList;
}
<span style='color:blue'>Helbreath Thermal</span> <span style='color:green'>BETA</span> <span style='color:red'>Soon</span>:<br><br>www.youporngay.com<br><br><img src='http://img264.imageshack.us/img264/1041 ... piopk7.jpg' border='0' alt='user posted image' /><br><img src='http://img257.imageshack.us/img257/3762 ... eakxj1.jpg' border='0' alt='user posted image' /><br><img src='http://arthur.crepin.free.fr/images/use ... mpsons.png' border='0' alt='user posted image' /><br><img src='http://img329.imageshack.us/img329/5797/pesgamerrr3.gif' border='0' alt='user posted image' /><br><br><u><b>BLACK GAY LIST:</b></u><br><br><span style='color:red'>€M4NU€L</span>:<br>I look like a girl and he's always complaining someone.
€M4NU€L
Outpost bitch
Posts: 517
Joined: Sat Nov 19, 2005 9:07 pm
Location: I watch gay porn
Contact:

Post by €M4NU€L »

CODES BY HELBREATH II
<span style='color:blue'>Helbreath Thermal</span> <span style='color:green'>BETA</span> <span style='color:red'>Soon</span>:<br><br>www.youporngay.com<br><br><img src='http://img264.imageshack.us/img264/1041 ... piopk7.jpg' border='0' alt='user posted image' /><br><img src='http://img257.imageshack.us/img257/3762 ... eakxj1.jpg' border='0' alt='user posted image' /><br><img src='http://arthur.crepin.free.fr/images/use ... mpsons.png' border='0' alt='user posted image' /><br><img src='http://img329.imageshack.us/img329/5797/pesgamerrr3.gif' border='0' alt='user posted image' /><br><br><u><b>BLACK GAY LIST:</b></u><br><br><span style='color:red'>€M4NU€L</span>:<br>I look like a girl and he's always complaining someone.
EvilHit
Loyal fan
Posts: 356
Joined: Sun Jan 16, 2005 3:20 am

Post by EvilHit »

hope u no this is for sql
€M4NU€L
Outpost bitch
Posts: 517
Joined: Sat Nov 19, 2005 9:07 pm
Location: I watch gay porn
Contact:

Post by €M4NU€L »

EvilHit wrote: hope u no this is for sql
ME NO KNOW :lol: :P :D :) B) :huh:

EDIT: I think ... yea Mail System HGServer side is for MySQL :blink:
<span style='color:blue'>Helbreath Thermal</span> <span style='color:green'>BETA</span> <span style='color:red'>Soon</span>:<br><br>www.youporngay.com<br><br><img src='http://img264.imageshack.us/img264/1041 ... piopk7.jpg' border='0' alt='user posted image' /><br><img src='http://img257.imageshack.us/img257/3762 ... eakxj1.jpg' border='0' alt='user posted image' /><br><img src='http://arthur.crepin.free.fr/images/use ... mpsons.png' border='0' alt='user posted image' /><br><img src='http://img329.imageshack.us/img329/5797/pesgamerrr3.gif' border='0' alt='user posted image' /><br><br><u><b>BLACK GAY LIST:</b></u><br><br><span style='color:red'>€M4NU€L</span>:<br>I look like a girl and he's always complaining someone.
Namesis
Regular
Posts: 88
Joined: Fri Mar 03, 2006 12:53 pm

Post by Namesis »

so.. that doesnt work on normal server files..? just on SQL ?? :angry: :(
EvilHit
Loyal fan
Posts: 356
Joined: Sun Jan 16, 2005 3:20 am

Post by EvilHit »

u need sql for this to work
Namesis
Regular
Posts: 88
Joined: Fri Mar 03, 2006 12:53 pm

Post by Namesis »

omg k. where i download sql lol xD but.. there isnt any code for Normal Server Files? :S
juggalo2
Spamtastic
Posts: 1144
Joined: Sun Jul 17, 2005 5:28 pm

Post by juggalo2 »

lol just re coded it
<img src='http://lifeplaysu420.com/unknow/nightsign.png' border='0' alt='user posted image' /><br>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<br>Wanna make money for surfing the net sing up at <br><a href='http://www.cashfiesta.com/php/join.php? ... yprivitera' target='_blank'>cash fiesta</a><br>its all free hey why ntot make money while fucking around on the computer<br><br><br>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Crossfade
Loyal fan
Posts: 354
Joined: Sun Mar 20, 2005 5:55 pm

Post by Crossfade »

juggalo2 wrote: lol just re coded it
lol
Namesis
Regular
Posts: 88
Joined: Fri Mar 03, 2006 12:53 pm

Post by Namesis »

Crossfade wrote:
juggalo2 wrote: lol just re coded it
lol
lol :blink:
€M4NU€L
Outpost bitch
Posts: 517
Joined: Sat Nov 19, 2005 9:07 pm
Location: I watch gay porn
Contact:

Post by €M4NU€L »

Ok stop spaming in my post ... if you want to spam go and create a new threath in General Chat ... I will post Classes codes too so stfu you guys nah joke :P
<span style='color:blue'>Helbreath Thermal</span> <span style='color:green'>BETA</span> <span style='color:red'>Soon</span>:<br><br>www.youporngay.com<br><br><img src='http://img264.imageshack.us/img264/1041 ... piopk7.jpg' border='0' alt='user posted image' /><br><img src='http://img257.imageshack.us/img257/3762 ... eakxj1.jpg' border='0' alt='user posted image' /><br><img src='http://arthur.crepin.free.fr/images/use ... mpsons.png' border='0' alt='user posted image' /><br><img src='http://img329.imageshack.us/img329/5797/pesgamerrr3.gif' border='0' alt='user posted image' /><br><br><u><b>BLACK GAY LIST:</b></u><br><br><span style='color:red'>€M4NU€L</span>:<br>I look like a girl and he's always complaining someone.
xmukox
Member
Posts: 175
Joined: Sun Sep 11, 2005 9:53 am

Post by xmukox »

€M4NU€L wrote: Ok stop spaming in my post ... if you want to spam go and create a new threath in General Chat ... I will post Classes codes too so stfu you guys nah joke :P
omg.
€M4NU€L
Outpost bitch
Posts: 517
Joined: Sat Nov 19, 2005 9:07 pm
Location: I watch gay porn
Contact:

Post by €M4NU€L »

Yo guys i forgot to put the Mail.cpp and Mail.h

<a href='http://www.upload2.net/page/download/QM ... E.rar.html' target='_blank'>MAIL.cpp & Mail.H SERVER SIDE</a>
<span style='color:blue'>Helbreath Thermal</span> <span style='color:green'>BETA</span> <span style='color:red'>Soon</span>:<br><br>www.youporngay.com<br><br><img src='http://img264.imageshack.us/img264/1041 ... piopk7.jpg' border='0' alt='user posted image' /><br><img src='http://img257.imageshack.us/img257/3762 ... eakxj1.jpg' border='0' alt='user posted image' /><br><img src='http://arthur.crepin.free.fr/images/use ... mpsons.png' border='0' alt='user posted image' /><br><img src='http://img329.imageshack.us/img329/5797/pesgamerrr3.gif' border='0' alt='user posted image' /><br><br><u><b>BLACK GAY LIST:</b></u><br><br><span style='color:red'>€M4NU€L</span>:<br>I look like a girl and he's always complaining someone.
Post Reply