Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


What is needed to make an UCE

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming
View previous topic :: View next topic  
Author Message
wtfruomfg
Advanced Cheater
Reputation: 0

Joined: 02 Apr 2007
Posts: 75

PostPosted: Wed Jan 16, 2008 4:45 pm    Post subject: What is needed to make an UCE Reply with quote

Hi guys, i was just wondering what do i need to know in order to make my own UCE for maplestory. I know that i need to learn C++, but is there anything else i need to know? thank you in advance for the help.
Back to top
View user's profile Send private message
Symbol
I'm a spammer
Reputation: 0

Joined: 18 Apr 2007
Posts: 5094
Location: Israel.

PostPosted: Wed Jan 16, 2008 5:09 pm    Post subject: Reply with quote

From ce source? Delphi.
But you have to bypass it too, a uce is only for editing the memory, which you can include in the dll's or even a trainer.
Back to top
View user's profile Send private message
wtfruomfg
Advanced Cheater
Reputation: 0

Joined: 02 Apr 2007
Posts: 75

PostPosted: Wed Jan 16, 2008 9:03 pm    Post subject: Reply with quote

thx for the help, but let me get this straight learning C++ is to make ur UCE and learn Delphi to make a bypass? learning ASM to make hack with UCe possible??
Back to top
View user's profile Send private message
Flyte
Peanuts!!!!
Reputation: 6

Joined: 19 Apr 2006
Posts: 1887
Location: Canada

PostPosted: Wed Jan 16, 2008 9:38 pm    Post subject: Reply with quote

You should actually learn a programming language before attempting to make one the correct way.

Also - you need to know C and Delphi in order to make a UCE.
Back to top
View user's profile Send private message
sangeli
Master Cheater
Reputation: 0

Joined: 07 Dec 2006
Posts: 406

PostPosted: Wed Jan 16, 2008 11:41 pm    Post subject: Reply with quote

well... the first thing is to learn how to program instead of jumping into advanced security bypassing techniques. just a suggestion.
_________________
Dark Byte wrote:
ce can certainly damage hardware let's say you have a robotarm attached to your computer, and the software limits usually block it from ripping out it's own cpu. If you remove that limit and then issue the command to rip out the cpu, sure, say goodbye to your hardware
Back to top
View user's profile Send private message
atom0s
Moderator
Reputation: 205

Joined: 25 Jan 2006
Posts: 8587
Location: 127.0.0.1

PostPosted: Wed Jan 16, 2008 11:47 pm    Post subject: Reply with quote

sangeli wrote:
well... the first thing is to learn how to program


Just for the irony in the post, the code in your sig wont work with the way it's written. Razz

Code:
Dim pass$
pass = fuckyou
if text1.Text = pass then
Label1.caption = "msg here if pass is correct" else
Label1.caption = "msg here if pass is wrong"
endif


Code:
pass = fuckyou

Should be:
Code:
pass = "fuckyou"


Code:
Label1.caption = "msg here if pass is correct" else
Label1.caption = "msg here if pass is wrong"

Should be:
Code:
Label1.Caption = "msg here if pass is correct"
Else
Label1.Caption = "msg here if pass is wrong"


Code:
endif

Should be:
Code:
End If


And for sanity, you should indent your code:

Code:
    Dim pass$
    pass = "fuckyou"

    If Text1.Text = pass Then
        Label1.Caption = "msg here if pass is correct"
    Else
        Label1.Caption = "msg here if pass is wrong"
    End If



As for protection, this isn't much at all. The pass string will be in plain view in the programs file which can be viewed easily via any debugger, decompiler, or even notepad. As well as being bypassed by breakpointing on __vbaStrCmp to locate the compared string.

_________________
- Retired.
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites