Deprecated: The behavior of unparenthesized expressions containing both '.' and '+'/'-' will change in PHP 8: '+'/'-' will take a higher precedence in /home/iano/public_html/tpforums-vb5/forum/includes/class_core.php on line 5842

PHP Warning: Use of undefined constant MYSQL_NUM - assumed 'MYSQL_NUM' (this will throw an Error in a future version of PHP) in ..../includes/init.php on line 165

PHP Warning: Use of undefined constant MYSQL_ASSOC - assumed 'MYSQL_ASSOC' (this will throw an Error in a future version of PHP) in ..../includes/init.php on line 165

PHP Warning: Use of undefined constant MYSQL_BOTH - assumed 'MYSQL_BOTH' (this will throw an Error in a future version of PHP) in ..../includes/init.php on line 165

PHP Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in ..../includes/functions_navigation.php on line 588

PHP Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in ..../includes/functions_navigation.php on line 612

PHP Warning: Use of undefined constant archive_postsperpage - assumed 'archive_postsperpage' (this will throw an Error in a future version of PHP) in ..../archive/index.php on line 456
Minimizing Containers [Archive] - Forums

PDA

View Full Version : Minimizing Containers



wgrzelak
02-28-2014, 06:11 PM
I was reading and search forum, analysis by cheat engine, but i can't make this. How I can minimize and change size of containers?
This tutorial [http://tpforums.org/forum/threads/2630-Minimizing-Backpacks-Memory-editing-way-Proof-of-concept] is not working for me or maybe I make any mistake!!!

Thanks!

wgrzelak
02-28-2014, 09:13 PM
Resize containers solved.

XtrmJash
03-01-2014, 10:43 AM
Resize containers solved.

Not bad for 3h 2m work, eh? Mind me asking what you did to resolve it?

wgrzelak
03-01-2014, 10:57 AM
I find address by cheat engine, after resizing fake resize client :



WinApi.RECT rect = new WinApi.RECT();
WinApi.GetClientRect(MainWindowHandle, out rect);

uint WM_SIZE = 0x0005;
int Width = rect.right - rect.left;
int Height = rect.bottom - rect.top;

WinApi.SendMessage(MainWindowHandle, WM_SIZE, 0, WinApi.MakeLParam(Width, Height));


but still i dont know how minimize containers by packet or editing memory.