Skip to content

Commit 6266e7c

Browse files
committed
Fix Client/dll import page links and images
This is a general fix by properly formatting links and downloading images, no proof-read/check performed
1 parent 6661f7d commit 6266e7c

8 files changed

+13
-12
lines changed
16.3 KB
Loading

docs/client/assets/studpe_dllmain.png

15.2 KB
Loading
17.8 KB
Loading
38.1 KB
Loading
16.5 KB
Loading
87.8 KB
Loading

docs/client/assets/studpe_startup.png

31.4 KB
Loading

docs/client/dll-import.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,39 @@
1-
Since it took me a while to figure out how to add a DLL to the Ragexe or Ragexe_RE client, I will explain it now in under 5 minutes.
1+
# DLL Import
22

3-
[http://imgur.com/a/Ak0Ws#0 All Screenshots]
3+
Since it took me a while to figure out how to add a DLL to the Ragexe or Ragexe_RE client, I will explain it now in under 5 minutes.
44

55
At first we need 2 things to get it working.
6-
1. [http://www.cgsoftlabs.ro/zip/Stud_PE.zip Stud_PE], which we need to import the DLL.
7-
2. An [http://www.xup.in/dl,10633471/example.dll/ example DLL] to find out if it worked out well.
6+
7+
1. [Stud PE](http://www.cgsoftlabs.ro/zip/Stud_PE.zip), which we need to import the DLL.
8+
2. An [example DLL](http://www.xup.in/dl,10633471/example.dll/) to find out if it worked out well.
89

910
When you finished downloading these two files, extract the setup from the Stud_PE.zip and install it to your computer.
1011

1112
After you installed it and started it, there should be a window popping up, which look like this:
12-
[http://i.imgur.com/ENpdGyv.png|framed|StudPE-Startup]
13+
<center>![StudPE Startup](assets/studpe_startup.png)</center>
1314

1415
Then click on File in the top menu and then on Open PE File. Then there will show up a File Open Dialog where you choose your RagnarokExe.
15-
[http://i.imgur.com/26uMnoT.png|framed|Ragexe-File-Open-Dialog]
16+
<center>![StudPE Open RagExe](assets/studpe_open_ragexe.png)</center>
1617

1718
After that the PE File gets loaded and you switch to the Function Tab in the Program, like here:
18-
[http://i.imgur.com/fqBNiTp.png|framed|Functions-Tab]
19+
<center>![StudPE Functions Tab](assets/studpe_functions_tab.png)</center>
1920
There you see all DLL's which get actually loaded and what functions exactly get loaded.
2021

2122
In Order to add our own DLL to the list of the DLL's which get loaded, rightclick into the window where the DLL Files are listed and choose "Add New Import".
2223
A new windows is opening which looks like this:
23-
[http://i.imgur.com/xq73A56.png|framed|Import-Adder]
24+
<center>![StudPE Import Adder](assets/studpe_import_adder.png)</center>
2425

2526
There you choose your own DLL with the File Open Dialog which you open with "DLL Select" and then you choose the function which should get loaded.
2627
A DLL has a startup routin which we load from our example.dll which you downloaded before. It looks like this:
27-
[http://i.imgur.com/u1Ye7Fc.png|framed|DLL-Main]
28+
<center>![StudPE DLL Main](assets/studpe_dllmain.png)</center>
2829

2930
And if you choose the DllMain@12, it has a blue background and then click on Ok.
3031
Your Import Adder should look like this:
31-
[http://i.imgur.com/hWCRezs.png|framed|Function-Added]
32+
<center>![StudPE Function Added](assets/studpe_function_added.png)</center>
3233
Then click on "ADD" and it's done, your Client.exe loads the DLL from now on.
3334

3435
Just close the program, move the dll to your client's folder and start the client.
3536
Then there should be a MessageBox when your Client starts, which looks like this.
36-
[http://i.imgur.com/ZSlM1C4.png|framed|DLL-Message]
37+
<center>![StudPE DLL Message](assets/studpe_dll_message.png)</center>
3738

38-
Congratulations, you added a DLL to your Client.
39+
Congratulations, you added a DLL to your Client.

0 commit comments

Comments
 (0)