How To Make Ek Show!

Discussion about Helbreath Server Files.
Post Reply
WARRA
just visiting
Posts: 4
Joined: Tue Nov 29, 2005 12:10 pm

Post by WARRA »

Hello:D anyone knows how to show when ppl ek like [W]aru2 send [M]aximust65 to pie in heaven??? pls answer :D
Ice-T
Loyal fan
Posts: 262
Joined: Sat Oct 18, 2003 8:51 am
Location: nowere

Post by Ice-T »

yup i do
<img src='http://www.prism.gatech.edu/~gtg818f/basesig.gif' border='0' alt='user posted image' /><br><img src='http://img228.imageshack.us/img228/439/steam1tf.gif' border='0' alt='user posted image' />
juggalo2
Spamtastic
Posts: 1144
Joined: Sun Jul 17, 2005 5:28 pm

Post by juggalo2 »

same here
<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>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
WARRA
just visiting
Posts: 4
Joined: Tue Nov 29, 2005 12:10 pm

Post by WARRA »

how? plz tell me :D
Jaap
Loyal fan
Posts: 390
Joined: Thu Apr 22, 2004 8:21 am

Post by Jaap »

You must add some stuff to the HGServer source and then recompile it. Search the forum for the codes, they are here somewhere.
juggalo2
Spamtastic
Posts: 1144
Joined: Sun Jul 17, 2005 5:28 pm

Post by juggalo2 »

--------ek anouncer-----
Guide created By locobans and traduced by Calibula
This code was created by Slipknight


Go to ur game.cpp and search for this

Code: Select all

void CGame::ClientKilledHandler(int iClientH, int iAttackerH, char cAttackerType, short sDamage)

There is a line that says

Code: Select all

char  * cp, cAttackerName[21], cData[120];
Well, change it for

Code: Select all

 char  * cp, cAttackerName[21], cData[120], KilledMessage1[45], KilledMessage2[45], KilledMessage3[45], KilledMessage4[45], KilledMessage5[45], KilledMessage6[45];
Some lines later ur are going to find

Code: Select all

 int   * ip, i, iExH;
Change it for

Code: Select all

 int   * ip, i, iExH, Killedi, KMRand;
Now, at the end of that code to find the end search

Code: Select all

// SendNotifyMsg(NULL, iClientH, DEF_NOTIFY_EXP, NULL, NULL, NULL, NULL);
Beforde the last

Code: Select all

}
Add This:

Code: Select all

   //Player Kill Notice - (C)copyrights to XTra KrazzY 2005+ | All rights reserved.

   memcpy(KilledMessage1, cAttackerName, strlen(cAttackerName));
   strcat(KilledMessage1, " whooped ");
   strcat(KilledMessage1, m_pClientList[iClientH]->m_cCharName);
   strcat(KilledMessage1, "'s ass!");

   memcpy(KilledMessage2, cAttackerName, strlen(cAttackerName));
   strcat(KilledMessage2, " smashed ");
   strcat(KilledMessage2, m_pClientList[iClientH]->m_cCharName);
   strcat(KilledMessage2, "'s face into the ground!");

   memcpy(KilledMessage3, m_pClientList[iClientH]->m_cCharName, strlen(m_pClientList[iClientH]->m_cCharName));
   strcat(KilledMessage3, " was sliced to pieces by ");
   strcat(KilledMessage3, cAttackerName);
   
   memcpy(KilledMessage4, m_pClientList[iClientH]->m_cCharName, strlen(m_pClientList[iClientH]->m_cCharName));
   strcat(KilledMessage4, " says LAG LAG!! but gets PWNED by ");
   strcat(KilledMessage4, cAttackerName);

   memcpy(KilledMessage5, cAttackerName, strlen(cAttackerName));
   strcat(KilledMessage5, " sent ");
   strcat(KilledMessage5, m_pClientList[iClientH]->m_cCharName);
   strcat(KilledMessage5, " off too pie heaven! ");

   memcpy(KilledMessage6, cAttackerName, strlen(cAttackerName));
   strcat(KilledMessage6, " got beat by ");
   strcat(KilledMessage6, m_pClientList[iClientH]->m_cCharName);
   strcat(KilledMessage6, "'s ugly stick!");

   for (Killedi = 1; Killedi < DEF_MAXCLIENTS; Killedi++){
      if ((m_pClientList[Killedi] != NULL)) {
         KMRand = rand()%6;
         if (KMRand == 0)
         {
            SendNotifyMsg(NULL, Killedi, DEF_NOTIFY_NOTICEMSG, NULL, NULL, NULL, KilledMessage1);
         }
         if (KMRand == 1)
         {
            SendNotifyMsg(NULL, Killedi, DEF_NOTIFY_NOTICEMSG, NULL, NULL, NULL, KilledMessage2);
         }
         if (KMRand == 2)
         {
            SendNotifyMsg(NULL, Killedi, DEF_NOTIFY_NOTICEMSG, NULL, NULL, NULL, KilledMessage3);
         }
         if (KMRand == 3)
         {
            SendNotifyMsg(NULL, Killedi, DEF_NOTIFY_NOTICEMSG, NULL, NULL, NULL, KilledMessage4);
         }
         if (KMRand == 4)
         {
            SendNotifyMsg(NULL, Killedi, DEF_NOTIFY_NOTICEMSG, NULL, NULL, NULL, KilledMessage5);
         }
         if (KMRand == 5)
         {
            SendNotifyMsg(NULL, Killedi, DEF_NOTIFY_NOTICEMSG, NULL, NULL, NULL, KilledMessage6);
         }
         wsprintf(G_cTxt, "%s killed %s", cAttackerName, m_pClientList[iClientH]->m_cCharName);
         PutLogFileList(G_cTxt);
      }
   }
<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>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
WARRA
just visiting
Posts: 4
Joined: Tue Nov 29, 2005 12:10 pm

Post by WARRA »

HQQQQ?????? i dont have any idea of what u mean <_<
juggalo2
Spamtastic
Posts: 1144
Joined: Sun Jul 17, 2005 5:28 pm

Post by juggalo2 »

you have to add and chnage thats into game.cpp in hg source
<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>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
WARRA
just visiting
Posts: 4
Joined: Tue Nov 29, 2005 12:10 pm

Post by WARRA »

game.cpp???? <_<
juggalo2
Spamtastic
Posts: 1144
Joined: Sun Jul 17, 2005 5:28 pm

Post by juggalo2 »

its in hgserver source its not in a cfg file or in a txt file but in teh source it self
<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>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Emssms
noob
Posts: 29
Joined: Sat Oct 29, 2005 7:15 pm

Post by Emssms »

ok and what i do? <_<
Jaap
Loyal fan
Posts: 390
Joined: Thu Apr 22, 2004 8:21 am

Post by Jaap »

<span style='font-size:21pt;line-height:100%'>IF YOU DONT KNOW HOW TO PROGRAM, THEN DONT FUCKING EDIT THE SOURCE</span>
goddamnit
juggalo2
Spamtastic
Posts: 1144
Joined: Sun Jul 17, 2005 5:28 pm

Post by juggalo2 »

Jaap wrote: <span style='font-size:21pt;line-height:100%'>IF YOU DONT KNOW HOW TO PROGRAM, THEN DONT FUCKING EDIT THE SOURCE</span>
goddamnit
true that
<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>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Post Reply