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

All Helbreath Client Source Discussion here.
Post Reply
joeri
Member
Posts: 126
Joined: Sat Mar 04, 2006 1:19 am

Post by joeri »

PiotrekK wrote: search.lib wsock32.lib DINPUT.LIB DSOUND.LIB DXGUID.LIB ddraw.lib IMM32.LIB winmm.lib Cint.lib cximage/release/cximage.lib jpeg/release/Jpeg.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /pdb:none /machine:I386 /nodefaultlib:"MSVCRTD" /nodefaultlib:"LIBC" /out:"Release/Client.exe" /release /FORCE:UNRESOLVED.

Do there be correctly?
remove the . after unresolved
visit a cool site <a href='http://technohell.net' target='_blank'>here</a><br><br><img src='http://i5.photobucket.com/albums/y184/J ... hnoFan.jpg' border='0' alt='user posted image' /><br><img src='http://i5.photobucket.com/albums/y184/Joeri696/240.jpg' border='0' alt='user posted image' /><br><img src='http://i5.photobucket.com/albums/y184/Joeri696/255.jpg' border='0' alt='user posted image' /><br><img src='http://i5.photobucket.com/albums/y184/Joeri696/326.jpg' border='0' alt='user posted image' /><br><br>Diuuude fan :D<br>Go Diuuude Go :D
Drajwer
&lt;3 bd long time
Posts: 841
Joined: Fri Dec 10, 2004 3:24 pm

Post by Drajwer »

Malcom89 wrote: Where o can change max stats? I must make 600 max stats not 200... pls help.... I can't change this in HEX editor :(
ROFLCOPTER!!1

Image
<img src='http://img440.imageshack.us/img440/2627/15pt.jpg' border='0' alt='user posted image' /><br><br>HBPolska characters:<br><br>Hellios 150+ Aresden Hero Mage<br>TheBill 120 Aresden plrider<br>Kill_Me 100 Full-Hero plrider<br>Rockeater 110+ Aresden Plate Mage<br><br><a href='http://www.helbreath.org' target='_blank'>http://www.helbreath.org</a> come and play (250 ppl online)
Firestorm
Loyal fan
Posts: 260
Joined: Fri Apr 07, 2006 10:29 pm

Post by Firestorm »

lol Drawjer funny picture ^^ :P
Malcom89
just visiting
Posts: 9
Joined: Thu Apr 13, 2006 4:49 pm

Post by Malcom89 »

Drajwer.... -.- Why you don't help? :( This meaby easy but i don't know where i can change this....
Tafka12
&lt;3 bd long time
Posts: 772
Joined: Wed Dec 28, 2005 6:32 pm

Post by Tafka12 »

look in somekind of .h file.. it wasn't game.h i think.
search for 200 in game.cpp too :D

w/e haven't looked this source much and don't remember too then.
<img src='http://www.hot.ee/carvanho/taavi.png' border='0' alt='user posted image' /><br><br><img src='http://www.hot.ee/carvanho/Elvine.png' border='0' alt='user posted image' /><br><img src='http://www.hot.ee/carvanho/LieroX.png' border='0' alt='user posted image' /><br><img src='http://www.hot.ee/carvanho/Football.png' border='0' alt='user posted image' />
Firestorm
Loyal fan
Posts: 260
Joined: Fri Apr 07, 2006 10:29 pm

Post by Firestorm »

im a real noob but how can i find this:???
UpdateScreen_OnLoading --> case 12
i know how to find UpdateScreen_OnLoading but i dont know what you guys mean with case 12 :( .

Please note i know what the codes do but im still a noob in C++ :( i learn everyday 7-8 hours. so please be friendly and tell me what Case 12 mean :(
Tafka12
&lt;3 bd long time
Posts: 772
Joined: Wed Dec 28, 2005 6:32 pm

Post by Tafka12 »

case is just case :P
the cases are numbered as 1 , 2 , 3 ,4 in each function like this:
case 1
{
if m_iHP = 200
bla bla bla
smth more for example
else if m_iHP = 300
bla bla
}

case 2
{
if m_iMP = 300
bla bla bla
and smth more
else if m_iMP = 500
bla
}

case 3



and so on. smth like that or else

case 1249 //swordofice
case 1250 //sword of word in girl's hands


or smth like this
(for example RequestItemUpgradeHandler

so this all means that case 12 must be a little downer..
(i think it was a little before next function if i remember)
and look in there.
(do ctrl+f) search for function
then (do ctrl+f) search for case 12
and then you should get there
look 200 and replace with 600.
<img src='http://www.hot.ee/carvanho/taavi.png' border='0' alt='user posted image' /><br><br><img src='http://www.hot.ee/carvanho/Elvine.png' border='0' alt='user posted image' /><br><img src='http://www.hot.ee/carvanho/LieroX.png' border='0' alt='user posted image' /><br><img src='http://www.hot.ee/carvanho/Football.png' border='0' alt='user posted image' />
Malcom89
just visiting
Posts: 9
Joined: Thu Apr 13, 2006 4:49 pm

Post by Malcom89 »

Code: Select all

	// Str
	wsprintf(G_cTxt, "%d", m_iStr);
	PutAlignedString(sX+48, sX+82, sY + 285, G_cTxt, 45,25,25);
	// Vit
	wsprintf(G_cTxt, "%d", m_iVit);
	PutAlignedString(sX+218, sX+251, sY + 285, G_cTxt, 45,25,25);
	// Dex
	wsprintf(G_cTxt, "%d", m_iDex);
	PutAlignedString(sX+48, sX+82, sY +302, G_cTxt, 45,25,25);
	// Int
	wsprintf(G_cTxt, "%d", m_iInt);
	PutAlignedString(sX+135, sX+167, sY +285, G_cTxt, 45,25,25);
	// Mag
	wsprintf(G_cTxt, "%d", m_iMag);
	PutAlignedString(sX+135, sX+167, sY +285, G_cTxt, 45,25,25);
	// Chr
	wsprintf(G_cTxt, "%d", m_iCharisma);
	PutAlignedString(sX+218, sX+251, sY +285, G_cTxt, 45,25,25);
That max stats? (285)
diuuude
Outpost bitch
Posts: 592
Joined: Wed Dec 28, 2005 11:57 pm

Post by diuuude »

nop... that's the code that display the stats in the character's dialogbox
for the max stats, you have several places to change but the first is in dlgboxclick_levelupsettings or dlgboxclick_levelup... i don't remember.
<a href='http://www.technohell.net' target='_blank'><b><span style='color:red'>>>> Helbreath Ressources Website Here <<<</span></b></a><br>C++ Sources, Tools, Server Files, Help on Forum, C++ Snippets, Toplist... Updated often, come visit us !
Malcom89
just visiting
Posts: 9
Joined: Thu Apr 13, 2006 4:49 pm

Post by Malcom89 »

Code: Select all

// Strength UP - Diuuude
	if ((msX >= sX + 195) && (msX <= sX + 205) && (msY >= sY + 127) && (msY <= sY + 133) && (m_iStr <= 200) && (m_iLU_Point > 0)) {
(m_iStr <= 200) - That is? :)
diuuude
Outpost bitch
Posts: 592
Joined: Wed Dec 28, 2005 11:57 pm

Post by diuuude »

Yup, that's it !

I'm happy ! You're one of the first guys who manage to find something by himself when someone give you a way... :)
<a href='http://www.technohell.net' target='_blank'><b><span style='color:red'>>>> Helbreath Ressources Website Here <<<</span></b></a><br>C++ Sources, Tools, Server Files, Help on Forum, C++ Snippets, Toplist... Updated often, come visit us !
PiotrekK
noob
Posts: 29
Joined: Fri Jan 13, 2006 2:39 am
Location: Poland/Warsaw
Contact:

Post by PiotrekK »

malcom gratz and thx :)
theblue3
noob
Posts: 11
Joined: Wed Apr 19, 2006 8:30 am

Post by theblue3 »


chat language japan and china and korean change??



Malcom89
just visiting
Posts: 9
Joined: Thu Apr 13, 2006 4:49 pm

Post by Malcom89 »

diuuude wrote: Yup, that's it !

I'm happy ! You're one of the first guys who manage to find something by himself when someone give you a way... :)
Thank You Master for help :) ;)
snoopy81
Loyal fan
Posts: 338
Joined: Mon Jul 12, 2004 7:13 pm

Post by snoopy81 »

Next step is 3.82 compatibility.

Angels done (using various reseases and completing the codes)
Crafting: People said they'll release, so I'm waiting after them...

And what more needed for 3.82 compatibility???
_\_ _<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
Post Reply