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 


Help converting 10 line code [PHP] to [ASM]

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming
View previous topic :: View next topic  
Author Message
sherwood
Newbie cheater
Reputation: 0

Joined: 06 Feb 2012
Posts: 11

PostPosted: Sat Mar 10, 2012 3:04 am    Post subject: Help converting 10 line code [PHP] to [ASM] Reply with quote

Hello, please convert someone this php code to assembler, im not sure with my own assembler converted code, so I would like to see correct way:] Thanks!

Code:
$weapon = EDX;
$bullets = ECX;

if($weapon == 2) {
  if($bullets != 6 || $bullets != 12) {
    //some code
  }
} else {
  if($bullets != 1) {
    //some code
  }
}
Back to top
View user's profile Send private message
Innovation
Grandmaster Cheater
Reputation: 12

Joined: 14 Aug 2008
Posts: 617

PostPosted: Sat Mar 10, 2012 12:40 pm    Post subject: Reply with quote

This is in x86 assembly:

Code:
   cmp edx, 2
   jne Second
   cmp ecx, 6
   jne First
   cmp ecx, 12
   jne First
   jmp End
First:
   ; Some Code
   jmp End
Second:
   cmp ecx, 1
   je End
   ; Some Code
End:
Back to top
View user's profile Send private message
sherwood
Newbie cheater
Reputation: 0

Joined: 06 Feb 2012
Posts: 11

PostPosted: Wed Mar 21, 2012 4:03 pm    Post subject: Reply with quote

Thanks a lot!
Back to top
View user's profile Send private message
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