|
You last visited: Today at 20:32
Advertisement
[Public Addresses v1] 03 May 2014
Discussion on [Public Addresses v1] 03 May 2014 within the S4 League Hacks, Bots, Cheats & Exploits forum part of the S4 League category.
05/08/2014, 16:09
|
#16
|
elite*gold: 0
Join Date: Nov 2013
Posts: 67
Received Thanks: 23
|
Quote:
Originally Posted by Domino
Please, at least I use "writeproccessmemory" in my .DLL's. 
|
wtf.. why are u using dll if u will use writeprocessmemory !!?
|
|
|
05/08/2014, 17:22
|
#17
|
elite*gold: 0
Join Date: Mar 2014
Posts: 82
Received Thanks: 49
|
Lol.
|
|
|
05/08/2014, 18:07
|
#18
|
elite*gold: 0
Join Date: Mar 2014
Posts: 303
Received Thanks: 226
|
Welcome to Epvp.
|
|
|
05/08/2014, 19:38
|
#19
|
elite*gold: 260
Join Date: Jun 2011
Posts: 355
Received Thanks: 8,168
|
Quote:
Originally Posted by ±A.[T]aiga±χ
If this work is coming for real,from yourself,than we have to welcome a new potential good coder (: Can't wait to see your .dll !
|
Dude this addy is from 2011 .-.
|
|
|
05/08/2014, 22:08
|
#20
|
elite*gold: 0
Join Date: Sep 2012
Posts: 452
Received Thanks: 293
|
Quote:
Originally Posted by I2espect
wtf.. why are u using dll if u will use writeprocessmemory !!?
|
Srsly? XD
lol........
no comment °-°
|
|
|
05/08/2014, 22:34
|
#21
|
elite*gold: 0
Join Date: Nov 2013
Posts: 67
Received Thanks: 23
|
Quote:
Originally Posted by naton899
Srsly? XD
lol........
no comment °-°
|
really  what's wrong with that !!
there is no reason to use open process and write process memory if u will inject a dll !! what's wrong with that
|
|
|
05/08/2014, 22:45
|
#22
|
elite*gold: 0
Join Date: Mar 2014
Posts: 82
Received Thanks: 49
|
Can't tell if he's trolling or not, but for everyone.
Example:
Code:
HWND hWnd = FindWindow(0, "MapleStory");
{
MessageBox(0, "Error cannot find window!", "Error!", MB_OK + MB_ICONERROR);
}
else
{
DWORD proc_id;
GetWindowThreadProcessId(hWnd, &proc_id);
HANDLE hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, proc_id);
if(!hProcess)
{
MessageBox(NULL, "Cannot open process!", "Error!", MB_OK + MB_ICONERROR);
}
else
{
BYTE newdata[]={0x72, 0x65, 0x64, 0x70, 0x6F, 0x74, 0x69, 0x6F, 0x6E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
DWORD newdatasize = sizeof(newdata);
if(WriteProcessMemory(hProcess, (LPVOID)0x5C6600, &newdata, newdatasize, NULL))
{
MessageBox(NULL, "WriteProcessMemory is a success!", "Success!", MB_OK + MB_ICONINFORMATION);
}
else
{
MessageBox(NULL, "Error cannot WriteProcessMemory!", "Error!", MB_OK + MB_ICONERROR);
}
CloseHandle(hProcess);
}
}
Credit: Everyonedance
Injecting is pretty much the sum of opening a process. This isn't AutoIt. #Logic
@Topic
I think I'd be more proud for him to explain some new stuff. Even the burn hack, name changing pointers(from 2011 but eh). But still, he is able to explain it. I'd give him a piece of my whipped cream on my pie. Other then that.. It's a "hi" welcome to epvp.
|
|
|
05/08/2014, 23:06
|
#23
|
elite*gold: 0
Join Date: Nov 2013
Posts: 67
Received Thanks: 23
|
Or U can just inject dll :
Code:
//Crypted String ,, HackShiel May Detect The String !.
#define eS4Client /*S4Client.exe*/XorStr<0x0C,13,0x5C9E3B17>("\x5F\x39\x4D\x63\x79\x74\x7C\x67\x3A\x70\x6E\x72"+0x5C9E3B17).s
DWORD S4Client;
S4Client = (DWORD)GetModuleHandleA(eS4Client);
if(S4Client)
{
if(xRandomShopAnimation){ *(BYTE*)(RandomShopAnimation) = 0xEB; }
}
|
|
|
05/09/2014, 03:07
|
#24
|
elite*gold: 0
Join Date: Mar 2014
Posts: 82
Received Thanks: 49
|
Quote:
Originally Posted by I2espect
Or U can just inject dll :
Code:
//Crypted String ,, HackShiel May Detect The String !.
#define eS4Client /*S4Client.exe*/XorStr<0x0C,13,0x5C9E3B17>("\x5F\x39\x4D\x63\x79\x74\x7C\x67\x3A\x70\x6E\x72"+0x5C9E3B17).s
DWORD S4Client;
S4Client = (DWORD)GetModuleHandleA(eS4Client);
if(S4Client)
{
if(xRandomShopAnimation){ *(BYTE*)(RandomShopAnimation) = 0xEB; }
}
|
At least DWORD is cute, that isn't even yours either...made my day.
|
|
|
05/09/2014, 15:16
|
#25
|
elite*gold: 0
Join Date: Nov 2013
Posts: 67
Received Thanks: 23
|
Quote:
Originally Posted by Domino
At least DWORD is cute, that isn't even yours either...made my day.
|
what do u mean with dword is cute ..
And why it isnot my code ... wTf ???
|
|
|
05/09/2014, 16:45
|
#26
|
elite*gold: 29
Join Date: Aug 2011
Posts: 640
Received Thanks: 493
|
Quote:
Originally Posted by Domino
Can't tell if he's trolling or not, but for everyone.
Example:
Code:
HWND hWnd = FindWindow(0, "MapleStory");
{
MessageBox(0, "Error cannot find window!", "Error!", MB_OK + MB_ICONERROR);
}
else
{
DWORD proc_id;
GetWindowThreadProcessId(hWnd, &proc_id);
HANDLE hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, proc_id);
if(!hProcess)
{
MessageBox(NULL, "Cannot open process!", "Error!", MB_OK + MB_ICONERROR);
}
else
{
BYTE newdata[]={0x72, 0x65, 0x64, 0x70, 0x6F, 0x74, 0x69, 0x6F, 0x6E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
DWORD newdatasize = sizeof(newdata);
if(WriteProcessMemory(hProcess, (LPVOID)0x5C6600, &newdata, newdatasize, NULL))
{
MessageBox(NULL, "WriteProcessMemory is a success!", "Success!", MB_OK + MB_ICONINFORMATION);
}
else
{
MessageBox(NULL, "Error cannot WriteProcessMemory!", "Error!", MB_OK + MB_ICONERROR);
}
CloseHandle(hProcess);
}
}
Credit: Everyonedance
Injecting is pretty much the sum of opening a process. This isn't AutoIt. #Logic
@Topic
I think I'd be more proud for him to explain some new stuff. Even the burn hack, name changing pointers(from 2011 but eh). But still, he is able to explain it. I'd give him a piece of my whipped cream on my pie. Other then that.. It's a "hi" welcome to epvp.
|
That isn΄t a Dll  and you troll very good XD
|
|
|
05/09/2014, 17:54
|
#27
|
elite*gold: 0
Join Date: May 2014
Posts: 5
Received Thanks: 48
|
Guys, please keep it calm and clean.
No need to flame each other, instead share your thoughts about S4League addresses or methods of hacking or any other fine knowledge that you will share with others without regret.
I just want to say that everybody started from somewhere, nobody "was just born" an excellent coder.
We're here to help each other and exchange infos.
With best regards, ZynoxCode.
|
|
|
05/09/2014, 18:43
|
#28
|
elite*gold: 0
Join Date: Jul 2011
Posts: 1,014
Received Thanks: 834
|
Address of functions in s4 league change or not ?
Sorry for my bad english :3
|
|
|
05/09/2014, 21:39
|
#29
|
elite*gold: 0
Join Date: Mar 2014
Posts: 82
Received Thanks: 49
|
Yes, they do.
|
|
|
05/09/2014, 21:56
|
#30
|
elite*gold: 0
Join Date: Jul 2011
Posts: 1,014
Received Thanks: 834
|
But if I want to have it I need CE
And CE is detect by XTrap and I haven't working bypass
There is another actions for have address ?
Thanks
|
|
|
Similar Threads
|
PUBLIC HACK WR 2-4-2014
04/03/2014 - WarRock Hacks, Bots, Cheats & Exploits - 10 Replies
Good evening,
I've made this new hack because I knew there where a few whitch where dectected. Thats why I'm posting a new one. This hack include aimbot,super jump, wall hack and much more! It's a easy download and virus free! It's says it's a virus but it isn't it is because we are using a hack, and somethimes virus scanners think it's a virus thats why. For more quistions pm me!
#removed
|
[Addresses to help Wsuo] GMS v.52- 53 addresses
05/09/2008 - MapleStory - 7 Replies
Thought i'd leech this to save you some time for what you are looking for.
|
All times are GMT +1. The time now is 20:35.
|
|