Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Web [Tut] How to make a launcher With Boreland Delphi

Status
Not open for further replies.
Newbie Spellweaver
Joined
Apr 6, 2008
Messages
95
Reaction score
0
we need this things
client.rar (( this is the V53 localhost already modded so it doesnt have the GMS launcher, can drop cash, no DMG cap and can drop mora than 50k mesos // if you dont want it , any other local host without GMS launcher works))


you can use this button
gogodr - [Tut] How to make a launcher With Boreland Delphi - RaGEZONE Forums


and boreland delphi

ok------
lets prepare the client.exe
you should kno whow to hex it so just change the IP
the actual IP there is 5.195.198.230 search for that and change it to yours

first make a form
(( sorry not for noobish people , you need to know how to use boreland delphi to follow this tutorial ))
and add there a web browser and speedbuttons
Use speed buttons so you can change the glyph and make pretty buttons like mines

for the buttons you can use photoshop or whatever you want , and then use paint to convert them to .bmp

ok the code
first the settings:

very important

on the declaration of uses you need to add
Code:
ShellAPI
now click on the form and select the events tab
you are going to use on create so double click it and then in there write the following
Code:
Webbrowser1.Navigate('your start page here');
we are going to use some registers and external programs
thats why we had to add shellappi
on your play speed button you are going to add this
Code:
 dwType := REG_SZ;
   dwSize := 255;
   RecvBuf := StrAlloc(MAX_PATH);

   if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, 'SOFTWARE\Wizet\MapleStory', 0, KEY_READ, mKey) <> ERROR_SUCCESS) then begin
   ShowMessage('ERROR! OS Reports ' + IntToStr(GetLastError()));
   end;

   if (RegQueryValueEx(mKey, 'ExecPath', nil, @dwType, pbyte(RecvBuf), @dwSize) <> ERROR_SUCCESS) then begin
   ShowMessage('ERROR! OS Reports ' + IntToStr(GetLastError()));
   end;

   if (RegCloseKey(mKey) <> ERROR_SUCCESS) then begin
   ShowMessage('ERROR! OS Reports ' + IntToStr(GetLastError()));
   end;

   lstrcat(RecvBuf, '\[B]client.exe[/B]');
   ShellExecute(Cardinal(nil), 'open', RecvBuf,'[B]5.195.198.230[/B] 8484', nil, SW_RESTORE);
   StrDispose(RecvBuf);
   Application.Terminate;
//this code is thanks to the Cheat engine MS execute xP
you can change the name of the client.exe to the name of your server but you have to change your file and the code
and remember to change the IP to yours.
--------------------------------------------------
thats all , compile it and all is right
remember you can add as much web browsers and as much speed buttons as you want
also in mine I added a 2 form to pop up when you click skills...xxx button so the 2 form shows you what skills DC on my maple xP
also you can change the page of your browser with the buttons with the same code
this is an example
Code:
procedure TForm1.SpeedButton3Click(Sender: TObject);
begin
Webbrowser1.Navigate('http://5.195.198.230/start.php');
end;

procedure TForm1.SpeedButton2Click(Sender: TObject);
begin
Webbrowser1.Navigate('http://5.195.198.230/ranking.php');
end;

procedure TForm1.SpeedButton1Click(Sender: TObject);
begin
Webbrowser1.Navigate('http://5.195.198.230/register.php');
end;

procedure TForm1.SpeedButton4Click(Sender: TObject);
begin
Webbrowser1.Navigate('http://5.195.198.230/GMlist.html');
end;

procedure TForm1.SpeedButton5Click(Sender: TObject);
begin
Form2.show
end;
well thats all and you should get something like this
gogodr - [Tut] How to make a launcher With Boreland Delphi - RaGEZONE Forums

 
Junior Spellweaver
Joined
Apr 13, 2008
Messages
113
Reaction score
0
Re: [TuT]How to make a launcher With Boreland Delphi

Woohoo

Lookin good ;)

Good job man
 
Newbie Spellweaver
Joined
Apr 7, 2008
Messages
8
Reaction score
0
Re: [TuT]How to make a launcher With Boreland Delphi

Nice.. But can you provide Delphi? No public d/l links ..
 
Master Summoner
Loyal Member
Joined
May 5, 2008
Messages
532
Reaction score
0
Re: [Guide]How to make a launcher With Boreland Delphi

This is amazinggg :O thaxxxxx for the tutorial..
 
Newbie Spellweaver
Joined
May 6, 2008
Messages
12
Reaction score
0
Re: [Guide]How to make a launcher With Boreland Delphi

I would use it but i cant find boreland dolphin anywhere
 
Master Summoner
Loyal Member
Joined
May 5, 2008
Messages
532
Reaction score
0
Re: [Guide]How to make a launcher With Boreland Delphi

gogodr.. can you do you the tutorial with a v54 please?
 
Newbie Spellweaver
Joined
Apr 6, 2008
Messages
95
Reaction score
0
Re: [Guide]How to make a launcher With Boreland Delphi


there is the boreland delphi
is a torrent
 
Elite Diviner
Joined
Jan 15, 2008
Messages
417
Reaction score
7
Re: [Guide]How to make a launcher With Boreland Delphi

Wow thanks for the sick tut.
 
Mother effin' clouds
Loyal Member
Joined
Apr 13, 2008
Messages
1,534
Reaction score
448
Re: [Guide]How to make a launcher With Boreland Delphi

haha as i mentioned gogodr, awesome.
 
Newbie Spellweaver
Joined
Apr 6, 2008
Messages
95
Reaction score
0
Re: [Guide]How to make a launcher With Boreland Delphi
 
Junior Spellweaver
Joined
May 2, 2007
Messages
144
Reaction score
0
Re: [Guide]How to make a launcher With Boreland Delphi

put numbers in your tut and this link and its a good Tut ...
is that so hard??
EDIT: Thx XD
 
Last edited:
Newbie Spellweaver
Joined
Apr 6, 2008
Messages
95
Reaction score
0
Re: [Guide]How to make a launcher With Boreland Delphi

If you can follow this easy tutorial then you are not worth enough to have an uber launcher
 
Mother effin' clouds
Loyal Member
Joined
Apr 13, 2008
Messages
1,534
Reaction score
448
Re: [Guide]How to make a launcher With Boreland Delphi

lolol gogodr. lazy people hahahahahaha. anyways it works well. working on some addons and modifications. This tutorial is consider detailed but maybe it should include (for experience) before it like mentioned in the other post last time.
 
Experienced Elementalist
Joined
Apr 3, 2008
Messages
262
Reaction score
0
Re: [Guide]How to make a launcher With Boreland Delphi

been waiting for it

woot 2000000000000000000000000000000000 post woot
woot 2000000000000000000000000000000000 post woot
woot 2000000000000000000000000000000000 post woot
woot 2000000000000000000000000000000000 post woot
woot 2000000000000000000000000000000000 post woot
woot 2000000000000000000000000000000000 post woot
woot 2000000000000000000000000000000000 post woot
jk 200 post

gw i need this for my server yea NICE WORK
 
Newbie Spellweaver
Joined
Mar 18, 2007
Messages
40
Reaction score
0
Re: [Guide]How to make a launcher With Boreland Delphi

could someone tell me why im getting these errors
Undeclared identifier: 'dwType'
Undeclared identifier: 'dwSize'
Undeclared identifier: 'dwRecvBuf'
Undeclared identifier: 'mkey'
 
Newbie Spellweaver
Joined
Jan 27, 2008
Messages
32
Reaction score
0
Re: [Guide]How to make a launcher With Boreland Delphi

wanna just send us your project
 
Junior Spellweaver
Joined
Jan 14, 2008
Messages
113
Reaction score
0
Re: [Guide]How to make a launcher With Boreland Delphi

the client doesn't work o_O =S
 
Status
Not open for further replies.
Back
Top