hELL rEaLLy ExisTs, yOu mEsS aROunD wiTh uS wE'rE gONna cRuSh yOu!
Would you like to react to this message? Create an account in a few clicks or log in to continue.


_____________WE ______ RULE_____________
 
HomePortalLatest imagesRegisterLog in

 

 Build Your Own mig33 (Delphi Version MigEmu 3.02)

Go down 
4 posters
AuthorMessage
slick_d3_bl00dsuck.3.r
Admin
Admin
slick_d3_bl00dsuck.3.r


Posts : 221
Join date : 2008-10-03
Age : 32
Location : In your bl00d vessels

Build Your Own mig33 (Delphi Version MigEmu 3.02) Empty
PostSubject: Build Your Own mig33 (Delphi Version MigEmu 3.02)   Build Your Own mig33 (Delphi Version MigEmu 3.02) EmptySat Oct 04, 2008 1:48 am

this qoute was written by romantic-illusions

hi all im back again if you wanna learn Delphi it's sample my Project MigEmu 3.02 in delphi version Very Happy

MigEmu 3.02 Open Source Very Happy Created by romantic-illusion
Build Your Own mig33 (Delphi Version MigEmu 3.02) 105

Build Your Own mig33 (Delphi Version MigEmu 3.02) 106

Coding Part 1

unit UMigEmu;

interface

uses
Windows, SysUtils, Forms, EmuSys, Controls, StdCtrls, Classes, ComCtrls, Menus,
Buttons, Grids, ValEdit, OleCtrls, MSWinsockLib_TLB, ExtCtrls, SysEngine;

type
TForm1 = class(TForm)
PageControl1: TPageControl;
TabSheet1: TTabSheet;
TabSheet2: TTabSheet;
TabSheet3: TTabSheet;
TabSheet4: TTabSheet;
TabSheet5: TTabSheet;
GroupBox1: TGroupBox;
RadioButtonGroupA: TRadioButton;
RadioButtonGroupB: TRadioButton;
RadioButtonGroupC: TRadioButton;
GroupBox2: TGroupBox;
GroupBox3: TGroupBox;
RadioButtonAutoKick: TRadioButton;
RadioButtonRolingKick: TRadioButton;
ComboBoxAutoKick: TComboBox;
RadioButtonStandartKick: TRadioButton;
ComboBoxRolingKick: TComboBox;
ComboBoxStandartKick: TComboBox;
GroupBox4: TGroupBox;
ListBoxUser: TListBox;
CheckBoxAutoReEnter: TCheckBox;
CheckBoxAutoLeaveAfterKick: TCheckBox;
GroupBox5: TGroupBox;
RadioButtonOff: TRadioButton;
RadioButton10Sec: TRadioButton;
RadioButton30Sec: TRadioButton;
RadioButton60Sec: TRadioButton;
GroupBox6: TGroupBox;
CheckBoxAutoLeave: TCheckBox;
CheckBoxAdminDetector: TCheckBox;
CheckBoxAutoTransferCredit: TCheckBox;
GroupBox7: TGroupBox;
ComboBoxChatRoom: TComboBox;
SpeedButtonChatRoomAdd: TSpeedButton;
SpeedButtonCharRoomDelete: TSpeedButton;
GroupBox8: TGroupBox;
ComboBoxProtecId: TComboBox;
SpeedButtonProtecIdAdd: TSpeedButton;
SpeedButtonProtecIdDelete: TSpeedButton;
Label1: TLabel;
EditEnemy: TEdit;
PageControl2: TPageControl;
TabSheet6: TTabSheet;
TabSheet7: TTabSheet;
TabSheet8: TTabSheet;
TabSheet9: TTabSheet;
GroupBox9: TGroupBox;
RadioButton240: TRadioButton;
RadioButton302: TRadioButton;
RadioButton305: TRadioButton;
RadioButton307: TRadioButton;
GroupBox10: TGroupBox;
CheckBoxSignInvisible: TCheckBox;
RadioButtonOnline: TRadioButton;
RadioButtonAway: TRadioButton;
RadioButtonBusy: TRadioButton;
RadioButtonAppearOffLine: TRadioButton;
ButtonEnter: TButton;
ButtonLeave: TButton;
ButtonKick: TButton;
ButtonGetList: TButton;
GroupBox11: TGroupBox;
StatusBar1: TStatusBar;
EditId01: TEdit;
EditId02: TEdit;
EditId04: TEdit;
EditId05: TEdit;
EditId06: TEdit;
EditId07: TEdit;
EditId08: TEdit;
EditId09: TEdit;
EditId10: TEdit;
EditId03: TEdit;
GroupBox12: TGroupBox;
ButtonReconnect: TButton;
ButtonLogOffAll: TButton;
GroupBox13: TGroupBox;
EditPassword: TEdit;
GroupBox14: TGroupBox;
GroupBox15: TGroupBox;
GroupBox16: TGroupBox;
MainMenu1: TMainMenu;
EmulatorMode1: TMenuItem;
MigPro1: TMenuItem;
N1: TMenuItem;
Java1: TMenuItem;
GroupBox17: TGroupBox;
GroupBox18: TGroupBox;
GroupBox19: TGroupBox;
SpeedButton1: TSpeedButton;
SpeedButton2: TSpeedButton;
Winsock1: TWinsock;
Winsock2: TWinsock;
Winsock3: TWinsock;
Winsock4: TWinsock;
Winsock5: TWinsock;
Winsock6: TWinsock;
Winsock7: TWinsock;
Winsock8: TWinsock;
Winsock9: TWinsock;
Winsock10: TWinsock;
Winsock11: TWinsock;
procedure Exit1Click(Sender: TObject);
procedure Winsock1Close(Sender: TObject);
procedure Winsock1Connect(Sender: TObject);
procedure FormClose(Sender: TObject; var Action: TCloseAction);
private
{ Private declarations }
public
Procedure ConnectToServer;
Procedure DisconnectToServer;
Procedure CreateLoginUser(aUserName : String; aWinsock : TWinsock);
Procedure CreateLoginPassword(aPassword : String; aWinsock : TWinsock);
{ Public declarations }
end;

var
Form1: TForm1;
HashTemp : array[1..11]of string;

TempUserName,LengthUserName,TempPassword,LengthPassword,
TempPacked,LengthPacked,TempRoomName,LengthRoomName : String;

implementation

{$R *.dfm}

Procedure TForm1.ConnectToServer;
begin
with Winsock1 do begin
Close;
RemoteHost := 'gateway.mig33.com';
RemotePort := 9119;
Connect;
end;
with Winsock2 do begin
Close;
RemoteHost := 'gateway.mig33.com';
RemotePort := 9119;
Connect;
end;
with Winsock3 do begin
Close;
RemoteHost := 'gateway.mig33.com';
RemotePort := 9119;
Connect;
end;
with Winsock4 do begin
Close;
RemoteHost := 'gateway.mig33.com';
RemotePort := 9119;
Connect;
end;
with Winsock5 do begin
Close;
RemoteHost := 'gateway.mig33.com';
RemotePort := 9119;
Connect;
end;
with Winsock6 do begin
Close;
RemoteHost := 'gateway.mig33.com';
RemotePort := 9119;
Connect;
end;
with Winsock7 do begin
Close;
RemoteHost := 'gateway.mig33.com';
RemotePort := 9119;
Connect;
end;
with Winsock8 do begin
Close;
RemoteHost := 'gateway.mig33.com';
RemotePort := 9119;
Connect;
end;
with Winsock9 do begin
Close;
RemoteHost := 'gateway.mig33.com';
RemotePort := 9119;
Connect;
end;
with Winsock10 do begin
Close;
RemoteHost := 'gateway.mig33.com';
RemotePort := 9119;
Connect;
end;
with Winsock11 do begin
Close;
RemoteHost := 'gateway.mig33.com';
RemotePort := 9119;
Connect;
end;
if Not(Form1.Showing) then
Sleep(3000);
end;

Procedure TFOrm1.DisconnectToServer;
begin
Winsock1.Close;
Winsock2.Close;
Winsock3.Close;
Winsock4.Close;
Winsock5.Close;
Winsock6.Close;
Winsock7.Close;
Winsock8.Close;
Winsock9.Close;
Winsock10.Close;
Winsock11.Close;
end;

Procedure Tform1.CreateLoginUser(aUserName : String; aWinsock : TWinsock);
begin
//
end;

Procedure TForm1.CreateLoginPassword(aPassword : String; aWinsock : TWinsock);
begin
//
end;

procedure TForm1.Exit1Click(Sender: TObject);
begin
Application.Terminate;
end;

procedure TForm1.Winsock1Close(Sender: TObject);
begin
StatusBar1.Panels[0].Text := 'Status : Disconnected';
end;

procedure TForm1.Winsock1Connect(Sender: TObject);
begin
StatusBar1.Panels[0].Text := 'Status : Connected';
end;

procedure TForm1.FormClose(Sender: TObject; var Action: TCloseAction);
begin
DisconnectToServer;
end;

end.


Coding Part 2

program MigEmu;

uses
Forms, SysUtils,
UMigEmu in 'UMigEmu.pas' {Form1},
EmuSys in 'EmuSys.pas';

{$R *.res}

begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Form1.ConnectToServer;
Application.Run;
end.

Coding Part 3

//MigEmu 3.02 Created by romantic-illusion
unit EmuSys;

interface

uses SysUtils, Classes;

Procedure Split(const Delimiter: Char;Input: string; const Strings: TStrings);
Function HexToAscii(const InpStr: string): String;
Function AsciiToHex(const InpStr : String): String;
Function GetHash(const tEncode : String) : Longint; stdcall; far; external 'hashGen.dll';
Function GenerateHashCode(aPacket : String): String;

implementation

Procedure Split(const Delimiter: Char;Input: string; const Strings: TStrings);
begin
Assert(Assigned(Strings));
Strings.Clear;
Strings.Delimiter := Delimiter;
Strings.DelimitedText := Input;
end;

Function HexToAscii(const InpStr: string): String;
var
I : Integer;
spliter : TStrings;
begin
spliter := TStringList.Create;
Split(' ',InpStr,spliter);
for I:= 0 to spliter.Count-1 do
Result :=Result+Chr(StrToInt('$' + spliter.Strings[i]));
spliter.Free;
end;

Function AsciiToHex(const InpStr: string): string;
var
i, i2: Integer;
s: string;
begin
i2 := 1;
for i := 1 to Length(InpStr) do
begin
Inc(i2);
if i2 = 2 then
begin
s := s + ' ';
i2 := 1;
end;
s := s + IntToHex(Ord(InpStr[i]), 2);
end;
Result := copy(s,2,length(s));
end;


Function GenerateHashCode(aPacket : String): String;
var aLong : Longint;
TempPacket : String;
begin
aLong := GetHash(aPacket);
TempPacket := IntToHex(along,2);
Result := Copy(TempPacket,1,2)+' '+Copy(TempPacket,3,2)+' '+Copy(TempPacket,5,2)+' '+Copy(TempPacket,7,2);
end;

end.

Ok All It's Sample coding for migEmu 3.02 enjoy it Very Happy u confuse? hahaha Very Happy me too Razz Twisted Evil
Back to top Go down
https://bloodsuckerz.darkbb.com
bl00dsuck.3.rz_k.o.g
New born
New born



Posts : 25
Join date : 2008-10-04
Age : 38
Location : Pretoria/Esikhawini

Build Your Own mig33 (Delphi Version MigEmu 3.02) Empty
PostSubject: Re: Build Your Own mig33 (Delphi Version MigEmu 3.02)   Build Your Own mig33 (Delphi Version MigEmu 3.02) EmptySun Oct 05, 2008 2:21 am

thanks.... i also use Delphi 7 it's a nice Programming pogram Smile i also have it for users who are willing to use/try it b they buy (it is fully functional)
but i can't post the links since it will take frever to download.

but i have made it simple if you want it youll contact me and i will try to write the palready downloaded parts in a disc and send you.... what will be lfet for you is to extract and install and use

how nice is that Smile

Remember this site is not fo selling or whatever.. so it is absolutely free including the writting an sending ia pos ofice
Smile
Back to top Go down
http://www.myspace.com/djmfana
s0nk0_d3_bl00dsuck.3.rz
Admin
Admin
s0nk0_d3_bl00dsuck.3.rz


Posts : 176
Join date : 2008-10-06
Age : 36
Location : b0ng0/ms4

Build Your Own mig33 (Delphi Version MigEmu 3.02) Empty
PostSubject: Re: Build Your Own mig33 (Delphi Version MigEmu 3.02)   Build Your Own mig33 (Delphi Version MigEmu 3.02) EmptyMon Oct 06, 2008 2:50 pm

BRO Y DNT U JUST POST IT?????????? Neutral Neutral Neutral Neutral Neutral
Back to top Go down
hellboy
New born
New born



Posts : 1
Join date : 2008-10-07

Build Your Own mig33 (Delphi Version MigEmu 3.02) Empty
PostSubject: wheres my script absa ...   Build Your Own mig33 (Delphi Version MigEmu 3.02) EmptyTue Oct 07, 2008 8:49 am

bro wheres my script , the 1 u told me to post , hey bro make it hurry plz i need it i am making my own pro u know lol hhahahaha
and also i have joined ur forum its cool good work , yo
hip hop absa is rocking ...... Twisted Evil
Evil or Very Mad lol!
santa
Back to top Go down
slick_d3_bl00dsuck.3.r
Admin
Admin
slick_d3_bl00dsuck.3.r


Posts : 221
Join date : 2008-10-03
Age : 32
Location : In your bl00d vessels

Build Your Own mig33 (Delphi Version MigEmu 3.02) Empty
PostSubject: Re: Build Your Own mig33 (Delphi Version MigEmu 3.02)   Build Your Own mig33 (Delphi Version MigEmu 3.02) EmptyFri Oct 10, 2008 11:52 am

give me the name br0, il post it now in the weekend.
Back to top Go down
https://bloodsuckerz.darkbb.com
bl00dsuck.3.rz_k.o.g
New born
New born



Posts : 25
Join date : 2008-10-04
Age : 38
Location : Pretoria/Esikhawini

Build Your Own mig33 (Delphi Version MigEmu 3.02) Empty
PostSubject: Re: Build Your Own mig33 (Delphi Version MigEmu 3.02)   Build Your Own mig33 (Delphi Version MigEmu 3.02) EmptySun Oct 12, 2008 3:07 pm

Thereason why i am not posting it is because it has too many links (many parts) which are broken down into 95.7MB each, the total is 22 files which makes 2.01 Gb, so it's too much to download.

it's rapid share links. but if you want it i will post it as soon as you reply to this,....... chow!!!

Build Your Own mig33 (Delphi Version MigEmu 3.02) Migemubu3
Back to top Go down
http://www.myspace.com/djmfana
s0nk0_d3_bl00dsuck.3.rz
Admin
Admin
s0nk0_d3_bl00dsuck.3.rz


Posts : 176
Join date : 2008-10-06
Age : 36
Location : b0ng0/ms4

Build Your Own mig33 (Delphi Version MigEmu 3.02) Empty
PostSubject: Re: Build Your Own mig33 (Delphi Version MigEmu 3.02)   Build Your Own mig33 (Delphi Version MigEmu 3.02) EmptyMon Oct 13, 2008 8:22 am

k broo!!! thnx!!!
Back to top Go down
Sponsored content





Build Your Own mig33 (Delphi Version MigEmu 3.02) Empty
PostSubject: Re: Build Your Own mig33 (Delphi Version MigEmu 3.02)   Build Your Own mig33 (Delphi Version MigEmu 3.02) Empty

Back to top Go down
 
Build Your Own mig33 (Delphi Version MigEmu 3.02)
Back to top 
Page 1 of 1
 Similar topics
-
» CREATING A BLOODSUCKER MIG33 USERNAME
» EA Sports Cricket 2007 Full Version + IPL PATCH

Permissions in this forum:You cannot reply to topics in this forum
hELL rEaLLy ExisTs, yOu mEsS aROunD wiTh uS wE'rE gONna cRuSh yOu! :: MIG33 ZONE :: Mig33™ software help & Tutoring-
Jump to: