| View previous topic :: View next topic |
| Author |
Message |
trebor Grandmaster Cheater
Reputation: 21
Joined: 23 Dec 2007 Posts: 816
|
Posted: Thu Jun 10, 2010 4:01 am Post subject: So its 4 am. |
|
|
| sup
|
|
| Back to top |
|
 |
Haxory' Grandmaster Cheater Supreme
Reputation: 92
Joined: 30 Jul 2007 Posts: 1900
|
Posted: Thu Jun 10, 2010 4:02 am Post subject: |
|
|
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 |
|
 |
Uzeil Moderator
Reputation: 6
Joined: 21 Oct 2006 Posts: 2411
|
Posted: Thu Jun 10, 2010 4:07 am Post subject: |
|
|
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 =/
_________________
|
|
| Back to top |
|
 |
:^) Grandmaster Cheater Supreme
Reputation: 37
Joined: 30 Jun 2008 Posts: 1062
|
Posted: Thu Jun 10, 2010 4:08 am Post subject: |
|
|
| 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 |
|
 |
Haxory' Grandmaster Cheater Supreme
Reputation: 92
Joined: 30 Jul 2007 Posts: 1900
|
Posted: Thu Jun 10, 2010 4:11 am Post subject: |
|
|
| 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 |
|
 |
Uzeil Moderator
Reputation: 6
Joined: 21 Oct 2006 Posts: 2411
|
Posted: Thu Jun 10, 2010 4:12 am Post subject: |
|
|
Delphi 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) .
_________________
|
|
| Back to top |
|
 |
trebor Grandmaster Cheater
Reputation: 21
Joined: 23 Dec 2007 Posts: 816
|
Posted: Thu Jun 10, 2010 4:20 am Post subject: |
|
|
| Sweet. I'm learning silverlight. Not as boring as I thought.
|
|
| Back to top |
|
 |
Haxory' Grandmaster Cheater Supreme
Reputation: 92
Joined: 30 Jul 2007 Posts: 1900
|
|
| Back to top |
|
 |
Uzeil Moderator
Reputation: 6
Joined: 21 Oct 2006 Posts: 2411
|
Posted: Thu Jun 10, 2010 4:50 am Post subject: |
|
|
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?
_________________
|
|
| Back to top |
|
 |
Haxory' Grandmaster Cheater Supreme
Reputation: 92
Joined: 30 Jul 2007 Posts: 1900
|
|
| Back to top |
|
 |
|