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 


So its 4 am.

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> Random spam
View previous topic :: View next topic  
Author Message
trebor
Grandmaster Cheater
Reputation: 21

Joined: 23 Dec 2007
Posts: 816

PostPosted: Thu Jun 10, 2010 4:01 am    Post subject: So its 4 am. Reply with quote

sup
Back to top
View user's profile Send private message MSN Messenger
Haxory'
Grandmaster Cheater Supreme
Reputation: 92

Joined: 30 Jul 2007
Posts: 1900

PostPosted: Thu Jun 10, 2010 4:02 am    Post subject: Reply with quote

Just downloading darkgunz. Gonna make a .dll hack.
_________________
you and me baby ain't nothing but mammals so lets do it like they do on the discovery channel
Back to top
View user's profile Send private message
Uzeil
Moderator
Reputation: 6

Joined: 21 Oct 2006
Posts: 2411

PostPosted: Thu Jun 10, 2010 4:07 am    Post subject: Reply with quote

Trying desperately to get back to coding but I'm at such a boring part in this project that the half-dead RS is more alluring =/
_________________


Mini Engine v3.0
Mipla v1.0

Reposted old threads out of the MS section.
Back to top
View user's profile Send private message
:^)
Grandmaster Cheater Supreme
Reputation: 37

Joined: 30 Jun 2008
Posts: 1062

PostPosted: Thu Jun 10, 2010 4:08 am    Post subject: Reply with quote

Uzeil wrote:
Trying desperately to get back to coding but I'm at such a boring part in this project that the half-dead RS is more alluring =/


what language?
Back to top
View user's profile Send private message
Haxory'
Grandmaster Cheater Supreme
Reputation: 92

Joined: 30 Jul 2007
Posts: 1900

PostPosted: Thu Jun 10, 2010 4:11 am    Post subject: Reply with quote

Rozen wrote:
Uzeil wrote:
Trying desperately to get back to coding but I'm at such a boring part in this project that the half-dead RS is more alluring =/


what language?

I'm guessing C++.

(that'd prove him awesome tho)

_________________
you and me baby ain't nothing but mammals so lets do it like they do on the discovery channel
Back to top
View user's profile Send private message
Uzeil
Moderator
Reputation: 6

Joined: 21 Oct 2006
Posts: 2411

PostPosted: Thu Jun 10, 2010 4:12 am    Post subject: Reply with quote

Delphi Razz Went with it for it's GUI builder since I'm going to be selling this project (it's not hacking-related, meaning my consumers are people that go 'oo shiny' and hit the purchase button. A lot more time-consuming to accomplish without a good GUI building tool)

And I already knew Delphi plenty well from modifying cheat engine, though I hadn't used it in a good 3 years until now.

Edit: I'd've used C++ if it didn't cost over 3 grand to use a good GUI builder("toolkit") in commercial applications (Qt) .

_________________


Mini Engine v3.0
Mipla v1.0

Reposted old threads out of the MS section.
Back to top
View user's profile Send private message
trebor
Grandmaster Cheater
Reputation: 21

Joined: 23 Dec 2007
Posts: 816

PostPosted: Thu Jun 10, 2010 4:20 am    Post subject: Reply with quote

Sweet. I'm learning silverlight. Not as boring as I thought.
Back to top
View user's profile Send private message MSN Messenger
Haxory'
Grandmaster Cheater Supreme
Reputation: 92

Joined: 30 Jul 2007
Posts: 1900

PostPosted: Thu Jun 10, 2010 4:47 am    Post subject: Reply with quote

Uzeil wrote:
Delphi Razz Went with it for it's GUI builder since I'm going to be selling this project (it's not hacking-related, meaning my consumers are people that go 'oo shiny' and hit the purchase button. A lot more time-consuming to accomplish without a good GUI building tool)

And I already knew Delphi plenty well from modifying cheat engine, though I hadn't used it in a good 3 years until now.

Edit: I'd've used C++ if it didn't cost over 3 grand to use a good GUI builder("toolkit") in commercial applications (Qt) .


Phewww. 3 grand. That explains a lot Razz
Anyways, pascal is a nice language too. A verry nice one. I'm called pascal, so what would you expect Wink

Syntax was
Quote:
procedure asd()
begin;


end;


Or something alike right?

Also, python sytax, you'll shit brix when you see it.

_________________
you and me baby ain't nothing but mammals so lets do it like they do on the discovery channel
Back to top
View user's profile Send private message
Uzeil
Moderator
Reputation: 6

Joined: 21 Oct 2006
Posts: 2411

PostPosted: Thu Jun 10, 2010 4:50 am    Post subject: Reply with quote

Lol, yes.

Example code:
Code:
function TCourse.linksTo(LinkID: String): Boolean;
var
  tempstr: String;
  tempstr2: String;
begin
  Result := False;
  if LinkTo = '' then
    Exit;

  tempstr := LinkTo;
  repeat
    if pos(';', tempstr) <> 0 then
    begin
      tempstr2 := LeftStr(tempstr, pos(';', tempstr) - 1);
      Delete(tempstr, 1, pos(';', tempstr));
    end
    else
    begin
      tempstr2 := tempstr;
      tempstr := '';
    end;

    if tempstr2 = LinkID then
    begin
      Result := True;
      Exit;
    end;

  until (tempstr = '');
end;


or Delphi's beautiful implementation of object oriented programming:
Code:
type
  TSimpleLink = Class
  public
    base: TCourse;
    Links: array of TCourse;
    function Contains(Link: TCourse): Boolean;
    function sameLinksAs(Link: TSimpleLink): Boolean;
    procedure Add(Link: TCourse); overload;
    procedure Remove(Link: TCourse); overload;
    constructor Create(base: TCourse); overload;
    class function isBase(Course: TCourse; List: array of TSimpleLink): Boolean;
  End;

type
  TGraphicLink = Class(TSimpleLink)
  public
    baseMap: TClassMap;
    LinkMaps: array of TClassMap;
    procedure Add(Link: TClassMap); overload;
    procedure Remove(Link: TClassMap); overload;
    constructor Create(baseMap: TClassMap); overload;
  End;



Edit:
ohh LOL, python syntax. Yeah "HOW MANY TABS IS THE MOST IMPORTANT THING EVER. WITHOUT PROPER SOURCE FORMATTING IT WILL DO NOTHING LIKE WHAT YOU EXPECT" -- something like that?

_________________


Mini Engine v3.0
Mipla v1.0

Reposted old threads out of the MS section.
Back to top
View user's profile Send private message
Haxory'
Grandmaster Cheater Supreme
Reputation: 92

Joined: 30 Jul 2007
Posts: 1900

PostPosted: Thu Jun 10, 2010 4:51 am    Post subject: Reply with quote

I know the delphi/pascal syntax from coding some scar scripts Embarassed
_________________
you and me baby ain't nothing but mammals so lets do it like they do on the discovery channel
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> Random spam 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