S.T.A.L.K.E.R Hud hack

This code is meant to be used in Cheat Engine

[enable]
label(back)

// Codecave
XR_3DA.exe+E86BC:
fstp dword ptr [ecx+10]
add esp, 10
mov [ecx+10], 2710
jmp back
NOP

xrGame.dll+41553C:
jmp XR_3DA.exe+E86BC //codecave jump
NOP

back:

//What opcodes to replace when enabled
[disable]
xrGame.dll+41553C:
fstp dword ptr [ecx+10]
add esp, 10

S.T.A.L.K.E.R Inventory hack

Use with cheat engine autoassamble.
Sets inventory weight to zero.

[enable]
label(back)

XR_3DA.exe+02E8:
mov [esp+04],00
movss xmm0,[esp+04]
jmp back
NOP

xrGame.dll+1E82DF:
jmp XR_3DA.exe+02E8
NOP

back:

[disable]
xrGame.dll+1E82DF:
movss xmm0,[esp+04]

Imvu hack – Imvu Codes

3d Chat called imvu has slightly stupid protocol architecture which gives you ability to control people and make them do things.
Another interesting thing is that you can crash the whole chat if you give ID’s for people in control command who arent in the current chatroom(fixed). In order to avoid being crashed yourself – you of course would have to use a older version of imvu , like 418. The bug came in after the 418.

By the way you can do every move (VIP/Friend/AP) in the chat with anyone.

*msg TwoPartyAction:/lovehug 2 From 2 ToWho
*msg TwoPartyAction:/2ndbase 2 From 2 ToWho
*msg TwoPartyAction:/squeezykiss 2 From 2 ToWho
*msg TwoPartyAction:/buttbongo 2 From 2 ToWho

Replace the words with ID’s of the users you want to have control over. You can get the ID by visiting their profile page, it’s given on the addressbar for a second before it’s replaced with a profile name.
These commands are meant to be used in a chat window, just paste them there. *msg TwoPartyAction:/lovehug 2 45458418 2 348415484

There is also a seating exploit, which means you can sit where ever you want.

*msg SeatAssignment 2 YourID 21 0

And i advice you not to use these against people in the chatroom. That would be rude : (

Search and replace string

#include <iostream>
#include <string>
#include <sstream>
#include <windows.h>

using namespace std;

int main()
{

	string source = "I love fat boys";
	string search = "love";
	string replace = "wanna throw rocks at";
	string buffer = "";

	stringstream replaced("");
	stringstream original(source);
	while (original >> buffer)
	{
		if (buffer == search) replaced << replace << " ";
		else replaced << buffer << " ";
	}
	cout << replaced.str();
	system("Pause");

	return 0;
}