Client V3.51 & V3.82 C++ Sources

All Helbreath Client Source Discussion here.
Post Reply
Firestorm
Loyal fan
Posts: 260
Joined: Fri Apr 07, 2006 10:29 pm

Post by Firestorm »

i will not remove it but in the right corner its on a bad place because most screens will popup to it ^^ and people wont see in their stats coded by snopy and diuuude ^^ i will put it into the left corner because no one use it ^^
snoopy81
Loyal fan
Posts: 338
Joined: Mon Jul 12, 2004 7:13 pm

Post by snoopy81 »

Strange, no bug reported yet, but I found one...
Fix will be released when next (serious bug will appear...)

Now, it's time for me to have a look on released WLog sources...
_\_ _<br> / , \__/ . \ Admin of Equilibrium Project<br> II\ \___ . O<br> III \_/ \ _ / <a href='http://www.equiprojet.com' target='_blank'>http://www.equiprojet.com</a><br> II I¯I
Firestorm
Loyal fan
Posts: 260
Joined: Fri Apr 07, 2006 10:29 pm

Post by Firestorm »

just i think by the way i really think snoopy is the best Developer with hypnotoad in this community or current HB world.

Sorry to all other Devs but i really think it.
Slipknight
Loyal fan
Posts: 423
Joined: Thu Apr 07, 2005 7:53 pm

Post by Slipknight »

Any reply to my request snoopy?
<img src='http://www.bleachportal.net/interactive ... irjjkt.jpg' border='0' alt='user posted image' /><br><img src='http://www.hazegfx.com/UserBanners/Slipknot%20Fan.jpg' border='0' alt='user posted image' /><br><img src='http://www.hazegfx.com/UserBanners/UT2004%20Player.jpg' border='0' alt='user posted image' /><br><img src='http://www.hazegfx.com/UserBanners/AC%20DC%20Fan.png' border='0' alt='user posted image' /><br>
Shadoelement
Regular
Posts: 32
Joined: Mon Mar 15, 2004 8:26 pm

Post by Shadoelement »

I'm not sure if this was fixed or not, but when someone casted MIM on you and you are in a triangler (>) shape you couldn't get. It would just bump you around as if you were paralized.

Just a report, no need to flame xD.
Dshaked
&lt;3 bd long time
Posts: 747
Joined: Tue Oct 11, 2005 6:40 pm

Post by Dshaked »

Yeah Always when I add m_pCraftingConfigList = NULL; // Crafting
and etc crafting config things to source. it looks like this:
Im added crafting.cfg to gameconfigs.

<a href='http://upload.technohell.net/uploads/8cd5032973.rar' target='_blank'>Crafting.cfg </a>
Im not sure are this right. and are it in right place, its in gameconfigs.
Old Helbreath Nemesis Player<br><img src='http://img232.imageshack.us/img232/9784/dshakedqc5.jpg' border='0' alt='user posted image' /><br><img src='http://img232.imageshack.us/img232/6475 ... barqj0.jpg' border='0' alt='user posted image' /><br><a href='index.php?showtopic=7107&hl=' target='_blank'>MainServer Hexing Tutorial</a><br><a href='index.php?showtopic=7663&hl=x-mas' target='_blank'>My Files</a>
snoopy81
Loyal fan
Posts: 338
Joined: Mon Jul 12, 2004 7:13 pm

Post by snoopy81 »

Snoopy could you post changes for crafting you added to client b/c I've changed alot in myne an dont wanna re-add everything, I'd rip em myself but its alot easier for you to just post 
There was +- 1500 differences between released v3.51 and my current v3.82.
I checked all to keep only the +- 320 diiferences needed for 382 release. it took me alot of time, and I changed it direct in 351 sources.
So I don't have a list.
_\_ _<br> / , \__/ . \ Admin of Equilibrium Project<br> II\ \___ . O<br> III \_/ \ _ / <a href='http://www.equiprojet.com' target='_blank'>http://www.equiprojet.com</a><br> II I¯I
Slipknight
Loyal fan
Posts: 423
Joined: Thu Apr 07, 2005 7:53 pm

Post by Slipknight »

snoopy81 wrote:
Snoopy could you post changes for crafting you added to client b/c I've changed alot in myne an dont wanna re-add everything, I'd rip em myself but its alot easier for you to just post 
There was +- 1500 differences between released v3.51 and my current v3.82.
I checked all to keep only the +- 320 diiferences needed for 382 release. it took me alot of time, and I changed it direct in 351 sources.
So I don't have a list.
Alright its understandable i'll prolly just try an re-add all of my stuff :/ .
<img src='http://www.bleachportal.net/interactive ... irjjkt.jpg' border='0' alt='user posted image' /><br><img src='http://www.hazegfx.com/UserBanners/Slipknot%20Fan.jpg' border='0' alt='user posted image' /><br><img src='http://www.hazegfx.com/UserBanners/UT2004%20Player.jpg' border='0' alt='user posted image' /><br><img src='http://www.hazegfx.com/UserBanners/AC%20DC%20Fan.png' border='0' alt='user posted image' /><br>
Dshaked
&lt;3 bd long time
Posts: 747
Joined: Tue Oct 11, 2005 6:40 pm

Post by Dshaked »

Always when I add them fucking codes, my release hg tilts.
And if I use debug. /beginheldenian crashing it.
But release dont crash if I start heldenian.
CGame::CGame(..)
Correct according this:
for (i = 0; i < DEF_MAXPORTIONTYPES; i++)
{ m_pPortionConfigList = NULL;
  m_pCraftingConfigList = NULL;// Crafting
}
OOL CGame::bInit()
Correct according this:   

for (i = 0; i < DEF_MAXPORTIONTYPES; i++)
{ if (m_pPortionConfigList != NULL) delete m_pPortionConfigList;
  if (m_pCraftingConfigList != NULL) delete m_pCraftingConfigList; // Crafting
}
Correct according this: 
for (i = 0; i < DEF_MAXPORTIONTYPES; i++)
{ m_pPortionConfigList = NULL;
  m_pCraftingConfigList = NULL; // Crafting
}
void CGame::Quit()

Correct according this:
for (i = 0; i < DEF_MAXPORTIONTYPES; i++)
{ if (m_pPortionConfigList != NULL) delete m_pPortionConfigList;
  if (m_pCraftingConfigList[i] != NULL) delete m_pCraftingConfigList[i]; // Crafting
}
Old Helbreath Nemesis Player<br><img src='http://img232.imageshack.us/img232/9784/dshakedqc5.jpg' border='0' alt='user posted image' /><br><img src='http://img232.imageshack.us/img232/6475 ... barqj0.jpg' border='0' alt='user posted image' /><br><a href='index.php?showtopic=7107&hl=' target='_blank'>MainServer Hexing Tutorial</a><br><a href='index.php?showtopic=7663&hl=x-mas' target='_blank'>My Files</a>
Firestorm
Loyal fan
Posts: 260
Joined: Fri Apr 07, 2006 10:29 pm

Post by Firestorm »

i have no problems with that i will release my HG server source soon as possible i have just to add a few fixes and snoopys angel system ^^ but Crafting work 100% for me nice job snoopy
Dshaked
&lt;3 bd long time
Posts: 747
Joined: Tue Oct 11, 2005 6:40 pm

Post by Dshaked »

I repaired this just.
One question.
Why craftingvessel says with 6 EmeraldWares, not enough material?
I know nothing about crafting, can you tell for me?
Old Helbreath Nemesis Player<br><img src='http://img232.imageshack.us/img232/9784/dshakedqc5.jpg' border='0' alt='user posted image' /><br><img src='http://img232.imageshack.us/img232/6475 ... barqj0.jpg' border='0' alt='user posted image' /><br><a href='index.php?showtopic=7107&hl=' target='_blank'>MainServer Hexing Tutorial</a><br><a href='index.php?showtopic=7663&hl=x-mas' target='_blank'>My Files</a>
Firestorm
Loyal fan
Posts: 260
Joined: Fri Apr 07, 2006 10:29 pm

Post by Firestorm »

you like me :P i dont know what crafting do or how it working but check inter.helbreath.com i think they got a tutorial for it.
Cleroth
Loyal fan
Posts: 416
Joined: Wed Jun 16, 2004 7:08 pm

Post by Cleroth »

Firestorm wrote: just i think by the way i really think snoopy is the best Developer with hypnotoad in this community or current HB world.

Sorry to all other Devs but i really think it.
They are the only ones that still release their files to a stupid community filled with dumbasses :)
<img src='http://ic1.deviantart.com/fs11/i/2006/1 ... leroth.gif' border='0' alt='user posted image' />
Firestorm
Loyal fan
Posts: 260
Joined: Fri Apr 07, 2006 10:29 pm

Post by Firestorm »

well maybe, but tell me a better HB community... Helbreath and this community is dead....
locobans
Outpost Junkie
Posts: 2264
Joined: Tue Jul 13, 2004 3:51 am
Location: Behind You
Contact:

Post by locobans »

Dshaked wrote: I repaired this just.
One question.
Why craftingvessel says with 6 EmeraldWares, not enough material?
I know nothing about crafting, can you tell for me?
I had this problem...messed with the code for around 1 hour and got it to work :rolleyes:
QUOTE (ADDKiD @ Dec 1 2006, 4:01 PM) <br>You guys make me laugh alot, half the shit I say, is bullshit...<br><br><img src='http://img485.imageshack.us/img485/492/banssig1ng.gif' border='0' alt='user posted image' /><br><br><b>I see no changes at all, wake up in the morning and ask myself...<br>Is life worth living? Should I blast myself?</b><br><br><b><a href='http://2paclegacy.com' target='_blank'>2PacLegacy.com</a></b>
Post Reply