Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > 4Story > 4Story Hacks, Bots, Cheats & Exploits
You last visited: Today at 16:36

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Tutorial]How to make hack to 4StoryEG in C# (for beginers)

Discussion on [Tutorial]How to make hack to 4StoryEG in C# (for beginers) within the 4Story Hacks, Bots, Cheats & Exploits forum part of the 4Story category.

Closed Thread
 
Old 08/06/2012, 00:57   #16
 
elite*gold: 0
Join Date: May 2010
Posts: 5
Received Thanks: 0
Quote:
Originally Posted by depaki View Post
plz a tut for speed hack !!!!!!!!!!!!!!!!!!!!



plzzz helpppp
Maybe coding is not for you.. If you cant even c&p right ;d
It says it in the tutorial, the compilator says it also, and you still can't figure it out ..
Maybe you have to learn some C++ first, then make 1337 h4x, right?
@answer -You have to declare vMem first..

Also, the pointers&offsets are probably not working anymore, and, does this really work ? HackShield hooks the openprocess, memory read and write funcs, so that code will just make the game exit with hackshield error

Lastly, Can someone give me link to tutorial how to build HackShield bypass ( no, i do not need releases, im not playing EG or DE servers of 4story, i wanna make bypass for UK ) or explain me via PM

Thanks in advance
venom1724 is offline  
Old 08/06/2012, 16:42   #17
 
elite*gold: 130
Join Date: Sep 2010
Posts: 36
Received Thanks: 324
Quote:


Code:
using VetracekMemory;
And add declaration of DLL:

Code:
VMemory vMem = new vMemory();
Now is all ready, we are go programing . Write this:

You are havent got declaration. Speed-Hack is not easy to make.
LifeRegrets is offline  
Thanks
1 User
Old 08/06/2012, 16:54   #18
 
Logtetsch's Avatar
 
elite*gold: 192
Join Date: May 2009
Posts: 2,227
Received Thanks: 3,262
Quote:
Originally Posted by vetracek556 View Post
Speed-Hack is not easy to make.
You have any idea how easy it´s to make a speedhack!
It´s just the same code with an other value and datatype.

I didn´t see your .dll, yet. If i´m wrong, correct me please.

€: I´ve forgot that you have to convert the text from the inputbox into WORD.
So it´s much more difficult.
Logtetsch is offline  
Old 08/06/2012, 20:24   #19
 
elite*gold: 130
Join Date: Sep 2010
Posts: 36
Received Thanks: 324
Yes, I can make speed-Hack and I know it how to make it.
But this is not pointer tut, this is tutuorial how to make hack.
But speed-Hack is only this:

Code:
if (...)
{
     //first normal adress of Speed
     vMem.Open("TClient"); //proces name
 string pointer = "6EFFFC"; //pointer
 int[] bytes = { 0xAA8, 0xPointer you must find }; //offsets
 int NewValue = int.Parse(textBox1.Text); //or you name of textbox
 vMem.WriteBytes(pointer, bytes, NewValue); //command   

//second control adress of Speed-Hack
     vMem.Open("TClient"); //proces name
 string pointer = "6EFFFC"; //pointer
 int[] bytes = { 0xAA8, 0xPointer you must find }; //offsets
 int NewValue = int.Parse(textBox1.Text); //or you name of textbox
 vMem.WriteBytes(pointer, bytes, NewValue); //command  
}
else
{
 //first normal adress of Speed
     vMem.Open("TClient"); //proces name
 string pointer = "6EFFFC"; //pointer
 int[] bytes = { 0xAA8, 0xPointer you must find }; //offsets
 int NewValue = 16230; //or you name of textbox
 vMem.WriteBytes(pointer, bytes, NewValue); //command   

//second control adress of Speed-Hack
     vMem.Open("TClient"); //proces name
 string pointer = "6EFFFC"; //pointer
 int[] bytes = { 0xAA8, 0xPointer you must find }; //offsets
 int NewValue = 16230//or you name of textbox
 vMem.WriteBytes(pointer, bytes, NewValue); //command  
}
Pointer and first offset are same but second offset you must find.
I know (my hack JaV) it but this isnt list of offsets, sorry.
LifeRegrets is offline  
Thanks
2 Users
Old 08/06/2012, 20:55   #20
 
Logtetsch's Avatar
 
elite*gold: 192
Join Date: May 2009
Posts: 2,227
Received Thanks: 3,262
I´m a total noob in C# so there´s a little question. Why did you define the pointer with a string?
Logtetsch is offline  
Old 08/06/2012, 22:04   #21
 
elite*gold: 150
Join Date: Oct 2011
Posts: 373
Received Thanks: 73
a video ? :P
depaki is offline  
Old 08/06/2012, 22:11   #22
 
elite*gold: 0
Join Date: Mar 2009
Posts: 7,260
Received Thanks: 33,149
Quote:
Originally Posted by Logtetsch View Post
I´m a total noob in C# so there´s a little question. Why did you define the pointer with a string?
Weil es schlecht programmiert wurde. Das letzte Codebeispiel ist ebenfalls schlecht, was mehrere Gründe hat.
KDeluxe is offline  
Thanks
4 Users
Old 08/08/2012, 21:17   #23
 
elite*gold: 0
Join Date: Feb 2011
Posts: 106
Received Thanks: 919
The code + DLL is copied from forum.cheatengine.org ..
spek01 is offline  
Old 08/10/2012, 12:59   #24
 
elite*gold: 130
Join Date: Sep 2010
Posts: 36
Received Thanks: 324
No, this DLL I'm write (and your D3D noob )
Video you dont need, its picture TuT
LifeRegrets is offline  
Thanks
1 User
Old 09/14/2012, 15:00   #25
 
elite*gold: 150
Join Date: Oct 2011
Posts: 373
Received Thanks: 73
a speed hack tut give me plzzz
depaki is offline  
Old 09/15/2012, 16:38   #26
 
elite*gold: 130
Join Date: Sep 2010
Posts: 36
Received Thanks: 324
Quote:
a speed hack tut give me plzzz
Its quote same as Invicible...

Code:
if...
{
    ...
    vMem.WriteBytes(pointer, bytesOfFirstSpeed, NewValue); //First speed (normal)
    vMem.WriteBytes(pointer, bytesOfSpeedControl, NewValue); //Second Control
    //The bytes (offSets) is not same
    ...
}
else
{
    ...
    vMem.WriteBytes(pointer, bytesOfFirstSpeed, 16230);
    vMem.WriteBytes(pointer, bytesOfSpeedControl, 16230);
    //This is how to turn off Speed-Hack
    ...
}
Offset i not give, but you can find it on forum (epvp)
LifeRegrets is offline  
Old 01/09/2013, 11:33   #27
 
elite*gold: 150
Join Date: Oct 2011
Posts: 373
Received Thanks: 73
In 5 picture This Codes are writes you or is here from visual basic ?
depaki is offline  
Old 01/10/2013, 22:13   #28
 
elite*gold: 0
Join Date: Oct 2010
Posts: 19
Received Thanks: 8
We can do it to other servers? Like Gameforge? And we just can do invicible hack?

Nice tut, btw
Congratz
MiksPT is offline  
Old 05/16/2013, 14:42   #29
 
ShifterCZ's Avatar
 
elite*gold: 0
Join Date: May 2013
Posts: 3
Received Thanks: 5
Thumbs down

bad,
Code:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using VetracekMemory;

namespace _4Story_EG_SHack
{
    public partial class Form1 : Form
    {
       VMemory vMem = new vMemory();
        
        public Form1()
        {
            InitializeComponent();
        }

        private void invicible_CheckedChanged(object sender, EventArgs e)
        {
            if (invicible.Checked)
            {
                
            }
            else
            {

            }

            
            
        }
    }
}
Code:
VMemory vMem = new vMemory();
is error in VMemory vMem = new vMemory(); in vMemory is error!
ShifterCZ is offline  
Thanks
1 User
Old 05/16/2013, 17:27   #30
 
elite*gold: 0
Join Date: Feb 2011
Posts: 106
Received Thanks: 919
Co bys čekal od hacku, který je zkopírovaný z cheatengine fora?

EN :What do you expect from a hack that is copied from cheatengine forums? : D
spek01 is offline  
Closed Thread


Similar Threads Similar Threads
[Tutorial]How to make your first hack.. (AutoIT)
02/24/2012 - S4 League Hacks, Bots, Cheats & Exploits - 140 Replies
This is a tutorial for beginners and beginners only.. Ok lets get started.. What you need first is the following. AutoITv3 : Click here to download AutoITv3.. And Koda Form Designer : Click here to download Koda Form Designer And NomadMemory.au3 : Click here to download NomadMemory.au3 1. Copy NomadMemory.au3 into your "include" folder inside the autoit folder. 2. Now open Koda Form Designer, when you open it, it should look like this :...
Can anyone Make a tutorial or a hack to make the character stones fast?
01/05/2012 - Grand Chase - 2 Replies
can anyone post a tutorial or a hack to make the character stones fast drop??? :handsdown::handsdown::handsdown:
[Help]how to make Gcph hack Tutorial...
03/24/2011 - Grand Chase - 6 Replies
can someone guide me to make a Gcph hack use c++ Visual.... ^_^
*/Tutorial/* How to make a Warrock Hack?<---
04/01/2010 - WarRock - 12 Replies
Hey leute. Ich suche schon lange einen guten WR hack , aber leider finde ich keinen der auf meinem PC geht. Daher habe ich mich beschlossen einen eigenen WR-Hack zu machen. Nun stellt sich blos die Frage wie? Kann jemand vielleicht ein Warrock Hack Tutorial erstellen? In dem das ganz genau beschrieben ist? Vielen dank.



All times are GMT +1. The time now is 16:36.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.