|
You last visited: Today at 14:41
Advertisement
Needing CE Help :D
Discussion on Needing CE Help :D within the S4 League forum part of the Shooter category.
03/15/2014, 20:36
|
#16
|
elite*gold: 0
Join Date: Jul 2013
Posts: 192
Received Thanks: 46
|
 Learn basics of C++,then start hacking. But
Code:
#include <iostream>
#include <windows.h>
int main()
{
HWND hWnd = FindWindow(0, "Window Name");
if(hWnd == 0)
{
MessageBox(0, "Error cannot find window.", "Error", MB_OK|MB_ICONERROR);
}
else
{
DWORD proccess_ID;
GetWindowThreadProcessId(hWnd, &proccess_ID);
HANDLE hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, proccess_ID);
if(!hProcess)
{
MessageBox(0, "Could not open the process!", "Error!", MB_OK|MB_ICONERROR);
}
else
{
int newdata = [B]Here your Value[/B];
DWORD newdatasize = sizeof(newdata);
if(WriteProcessMemory(hProcess, (LPVOID)[B]Here the address[/B], &newdata, newdatasize, NULL))
{
MessageBox(NULL, "WriteProcessMemory worked.", "Success", MB_OK + MB_ICONINFORMATION);
}
else
{
MessageBox(NULL, "Error cannot WriteProcessMemory!", "Error", MB_OK + MB_ICONERROR);
}
CloseHandle(hProcess);
}
}
return 0;
}
|
|
|
03/15/2014, 21:40
|
#17
|
elite*gold: 0
Join Date: Jan 2012
Posts: 1,458
Received Thanks: 1,407
|
Quote:
Originally Posted by .S1mpl3*
 Learn basics of C++,then start hacking. But
Code:
#include <iostream>
#include <windows.h>
int main()
{
HWND hWnd = FindWindow(0, "Window Name");
if(hWnd == 0)
{
MessageBox(0, "Error cannot find window.", "Error", MB_OK|MB_ICONERROR);
}
else
{
DWORD proccess_ID;
GetWindowThreadProcessId(hWnd, &proccess_ID);
HANDLE hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, proccess_ID);
if(!hProcess)
{
MessageBox(0, "Could not open the process!", "Error!", MB_OK|MB_ICONERROR);
}
else
{
int newdata = [B]Here your Value[/B];
DWORD newdatasize = sizeof(newdata);
if(WriteProcessMemory(hProcess, (LPVOID)[B]Here the address[/B], &newdata, newdatasize, NULL))
{
MessageBox(NULL, "WriteProcessMemory worked.", "Success", MB_OK + MB_ICONINFORMATION);
}
else
{
MessageBox(NULL, "Error cannot WriteProcessMemory!", "Error", MB_OK + MB_ICONERROR);
}
CloseHandle(hProcess);
}
}
return 0;
}
|
Just don't.
He will just c&p, nothing will be learned from this source.
You have to let him do it, let him work and search like we all did.
|
|
|
03/16/2014, 13:01
|
#18
|
elite*gold: 15
Join Date: Jun 2011
Posts: 570
Received Thanks: 2,757
|
Quote:
Originally Posted by .S1mpl3*
 Learn basics of C++,then start hacking. But
Code:
#include <iostream>
#include <windows.h>
int main()
{
HWND hWnd = FindWindow(0, "Window Name");
if(hWnd == 0)
{
MessageBox(0, "Error cannot find window.", "Error", MB_OK|MB_ICONERROR);
}
else
{
DWORD proccess_ID;
GetWindowThreadProcessId(hWnd, &proccess_ID);
HANDLE hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, proccess_ID);
if(!hProcess)
{
MessageBox(0, "Could not open the process!", "Error!", MB_OK|MB_ICONERROR);
}
else
{
int newdata = [B]Here your Value[/B];
DWORD newdatasize = sizeof(newdata);
if(WriteProcessMemory(hProcess, (LPVOID)[B]Here the address[/B], &newdata, newdatasize, NULL))
{
MessageBox(NULL, "WriteProcessMemory worked.", "Success", MB_OK + MB_ICONINFORMATION);
}
else
{
MessageBox(NULL, "Error cannot WriteProcessMemory!", "Error", MB_OK + MB_ICONERROR);
}
CloseHandle(hProcess);
}
}
return 0;
}
|
|
|
|
 |
|
Similar Threads
|
Needing Some Help With An SP
12/11/2013 - Shaiya PServer Development - 1 Replies
Having issues with an SP that I'm working on and for the life of me I can't understand why only the first character works just fine, but the second character doesn't. That LoginStatus will change, but not StaffStatus. Any ideas?
USE
GO
/****** Object: StoredProcedure . Script Date: 12/10/2013 12:32:40 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
|
Needing help!
08/05/2012 - C9 - Continent of the Ninth - 1 Replies
Hey everyone!
A friend of mine have some problems with the game!
I'll make it a little clear to read it.
Problems:
- At the moment he starts the game he cant connect to the server and he gets online for me ingame but doesnt see any messages, when i send some.
- At the moment he starts the game he cant see anything and the game closes directly.
|
Anyone Needing DEV?
02/05/2011 - Dekaron Private Server - 2 Replies
Hello my name is Matthew I am currently 19 and im a DEV in Nemesis atm and GM in Elite Dekaron and i was wondering if anyone need me to do tests of skills and a event designer ive made my own maps including weapons, armors, and ect. Ive been playing dekaron about 3 to 4 years now so i hope someone will need a GM or a DEV in there dekaron private server. I wish to help on anything that the owner is needing like maps, skills, weapons, armor's, and rings. It isnt that hard well i hope someone will...
|
Needing Help
12/30/2010 - Dekaron Private Server - 3 Replies
I just want the normal files and how to change the xp and dil and drop xp please help me
|
Anyone Needing A Pm?
12/15/2008 - EO PServer Hosting - 3 Replies
I do have in game pm experience. i also have database experience but not as much as i need. if anyone is needing help i will be glad to help just leave a message and ill be sure to help you in anyway that i can.
|
All times are GMT +1. The time now is 14:41.
|
|