Reversing Spellborn
Started by Saltiel


Rate this topic
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5


249 posts in this topic
Saltiel
Retired dev
***


0
122 posts 3 threads Joined: Sep 2014
01-09-2014, 06:35 PM -
#1
UPDATED DOC IS HERE => https://github.com/TCoS-Rebirth/Documentation

if you want to update it,  ask to join the TCoS-Rebirth organization
by giving your github username.
 
Hi everybody,
 
(First of all, sorry for the big post. :/)
 
I don't know if there is still someone here except JW-NL haha ! But still I think maybe people could be interested in what I have done so far.
So some weeks ago I saw a thread about Star Wars Galaxies Emu, and I told myself "that would be so great for TCoS" and remembered the thread from acidburn and JW-NL reversing the files. And then began the envy to try to reverse the packets allowing me to login into hawksmouth.
 
I don't know if I will be able to go that far, but still, I managed to go farest than I thought I was capable of. I learned a lot in reverse engineering these last weeks and still have a lot to learn, but I wanted to share what I learned with this passionnate community. As I love the team who made Spellborn, I don't want to do something illegal or that would bother them. So I won't share source code (and there is no source code really exploitable right now), but just documentation about the data and packets.
 
(this part is a copy paste of what I answered in RageZone forums to someone wanting to do a TCoS server emulation).
Well, I am a noob in reverse engineering but I do programming for a few years now (computer science student for 5 years) and I am an old fan of The Chronicles of Spellborn (discovered the game in 2005 and immediatly fell in love with its visual and music! Saltiel is not the pseudo I used on the game forums).
I don't know why but two weeks ago I suddenly had the envy to reverse it, at least to be able to explore a map, even empty (without npc, mobs etc).
 
Little disclaimer : I don't want to engage myself in anything because I have a lot of projects, but currently it's something I am working hard on. I have to say that digging through assembly is pretty hard, and a big programm like a MMO is not an easy one to start with.
I started to spot some interesting places in the code, but reverse engineering them is not easy.
 
What I reversed so far:
<ul class="bbc">[*]connect/disconnect packet[*]login packet (client/server) : can validate login or send error (bad login/password or wrong client version)[*]universes list packet (client/server) (send universe list with name, population etc)[*]a good part of the universe selected packet (sending ip/port etc of the game server)[*]How to get packet ID[*]What is the header of every packets[*]Low level packet writing / reading in d_mmos.dll[*]Some parts of the write/read functions of the packets mentionned previously in SBPacket.dll[*]I also start to have an understanding of the packet management architecture that allows me to find quickly basics information and place to investigate when starting to reverse a packet.</ul>The process is still very slow and "hand crafted". I will try to document what I did when I have the time.
I will edit this post with much details later.
 
I still have some things to add. I will do when I have the time.
I currently have a dummy server which can answer to one connection. I use the client beta 0.9 because it does not have GameGuard. I know there are ways to deactivate GameGuard but I am currently not skilled enough to do that so I prefer to focus on packet reversing.
Also if someone have the files to make the update to the last version of TCoS, I am very, very interested.
 
Have a good day !
 
PS: Sorry for my bad english spoken, need to work on that too ><
 
Edit: current version of the doc, I am sorry this doc is originally in markdown language on a wiki but this forum does not understand this syntax:
 
General
 
All reversing documented here is currently based on the client beta 0.9.
 
Sb_client.exe arguments
 
--show_console: show the console displaying the log (you can also take control of the console and use some functions/load packages)
--packet_log: enable logging of the packets sended et received
--world: not really sure what this option means... seems like bypassing universe selection but does not seem to work
-- uc_debugger: (check syntax) attach unreal engine debugger to the process. Sadly scripts files are not reachable.
--unreal_log: seems to do nothing. Test
 
Encoding
 
TCoS client encodes its strings in UTF16-LE.
 
Connect to custom login server
 
In etc/client/sb_client.rc, modifie the line with client/net/login_addr with desired IP and port.
 
Network
 
d_mmos.dll
 
Contains low level functions for sending packets.
Interesting places:
  • d_message class with read (void* dataOut, uint dataSize) and write (const void* dataIn, uint dataSize)
  • d_address class: represent IP+Port
d_message class
 
d_message::read (void* dataOut, uint dataSize)
 
void* dataOut is a pointer to a memory location where the value read will be stored. Sometimes this memory is in stack, sometime in heap. It totally depends of the caller. For instance if the client tries to read a string, dataOut will be a pointer to the std:Confusedtring::data () (or equivalent).
uint dataSize is the size in bytes of the value you want to read. For instance if you want to read a DWORD (double word = 4 bytes) its value will be 4.
The d_message object keeps track of the data you've read in it. So each time you call its read method, it updates an internal value with the size of data already read (it simply adds dataSize to its current value). This is also an offset allowing it to know where to begin the reading of the data in the message. Each time you call read, you actually ask to read the next data in the d_message object. If there is no more data, or not enough (there is still 2 bytes and you ask to read 4 bytes), the method will raise an exception.
 
d_message::write (const void* dataIn, uint dataSize)
 
Work the same way than read but write dataSize bytes of data pointed by dataIn inside the d_message. Same mechanism checking that not too much data is written.
 
SBPacket.dll
 
Contains packet high level stuff. Use templates a lot, which means that the window 'Names' in IDA won't show you all the methods because the same actual method can be exported with multiples names (not apparing in 'Names' but only in 'Exports'). So, look in 'Exports' instead.
The interesting classes are d_packet<struct PACKET> and d_serializable<struct PACKET> where 'struct PACKET' is the template parameter. Interesting methods in d_packet:
  • GetID ()
  • GetName () (but actually the name is exactly the same as the template parameter name)
Interesting methods in d_message:
  • ReadMessage (const struct d_message&)
  • WriteMessage (struct d_message&)
/! /! /! ==>WriteMessage and ReadMessage are very interesting to study for each message because it's there you can understand what is put inside the packet.<== /! /! /!
This is how I try to reverse packets, by studying these two methods and their context (who calls them, what structure do they fill etc).
To find quickly which message has a specific ID, in OllyDBG use "find command" and type move ax, ID where ID is a short number. It will point you the good GetID () method. The template parameter gives you the message name.
 
Note: packet's names follow a simple convention. They have a prefix specifying if its a packet sended by the client to the server or by the server to the client.
C2L: Client to Login server
L2C: Login server to Client
C2S: Client to Server
S2C: Server to Client
 
There are other prefix but currently I did not find what they mean.
 
Packets layout
 
Every packet I have seen in the login process (login+ select universe) have this header:
<pre>struct PacketHeader (32 bits)
{
WORD PacketID;
WORD PacketSize;
}
</pre>If the PacketSize attribute does not match the actual packet size, the client will not trigger the ReadMessage or will trigger an error. If the client wants to read more data than you give to him, it will sayin the logs: "PACKET_NAME READ BUFFER OVERFLOW".
 
Note: For what I've seen so far, the client does not check the size in its read algorithm to verify if its is consistent with the type of packet you send.
The client will just try to read everything it has to read and if you send not enough data, triggers the BUFFER OVERFLOW error seen above. This behavior is due to the d_mmos.dll: [Image: default_biggrin.png]_message::read (const void* outData, uint dataSize) method which check the message size everytime you ask it to read a value in the packet. If the size alreday read + the size of the data you ask to read is greater than the message size: error.
 
Note: The following sizes does not take the packet's header into account, because the size contained in the packet's header do the same.
<pre>struct CONNECT (4 bytes)
{
struct PacketHeader header;
DWORD unknownDword; //statuscode?
};
</pre><pre>struct DISCONNECT (various size)
{
struct PacketHeader header;
DWORD unknownDword; //statuscode?
DWORD reasonNumChars;//num chars in the reason string
char [reasonNumChars*2] reason;//in UTF16-LE
};
</pre><pre>struct C2L_USER_LOGIN (various size)
{
struct PacketHeader header;
DWORD clientVersion;//svn build version
DWORD loginNumCharacters;
char[loginNumCharacters*2] loginString;//in UTF-16LE
DWORD passwordNumCharacters;
char[passwordNumCharacters * 2] passwordString;//in UTF16-LE
};
</pre><pre>struct L2C_USER_LOGIN_ACK (2 DWORDS = 8 bytes)
{
struct PacketHeader header;
DWORD zeroDword;//unknown data, its value does nothing
DWORD statusCode;
};
</pre>statusCode possible values:
  • 0: Login OK
  • 1: Wrong client version
  • 2: Bad login or password
  • 3: Bad login or password (yes, the same)
  • above 3: to investigate!
<pre>struct C2L_QUERY_UNIVERSE_LIST (empty)
{
struct PacketHeader header;
};
</pre><pre>struct Universe (various size)
{
DWORD universeID;
DWORD universeNameNumChars;
char[universeNameNumChars*2] universeName; //UTF16-LE
DWORD universeLanguageNumChars;
char[universeLanguageNumChars*2] universeLanguage; //UTF16-LE
DWORD universeTypeNumChars;
char[universeTypeNumChars*2] universeType; //UTF16-LE
DWORD universePopulationNumChars;
char[universePopulationNumChars*2] universePopulation; //UTF16-LE
};

struct L2C_QUERY_UNIVERSE_LIST_ACK (various size)
{
struct PacketHeader header;
DWORD unknownDWORD; // MUST BE 0 to work, integrity check?
DWORD universesNumber; //number of universes available
struct Universe[universesNumber] universesList; // universesNumber times the attributes in the struct Universe
};
</pre><pre>struct C2L_UNIVERSE_SELECTED (size = 1 DWORD)
{
struct PacketHeader header;
DWORD universeID; //id of the selected universe
};
</pre><pre>struct L2C_UNIVERSE_SELECTED_ACK (size = 1 DWORD)
{
struct PacketHeader header;
DWORD unknownDword#1; //MUST BE 0
DWORD unknownDword#2;
DWORD universePackageNameNumChars;
char[universePackageNameNumChars*2] universePackageName;
DWORD tkey;//to investigate
DWORD gameServerIP;
WORD gameServerPort;
};
</pre>Note: universePackageName is the name of the file in data/universe with the SBU sufixe removed from its name (I am not speeking of the extension but the sufix), and without the extension.
The tkey may be for "transport key" seems to be (not sure) a security allowing the game world to detect if a client did the login part before connecting to it. I think it works this way: the Login Server generate a tkey for a given player when it tries to login, send this key to the game world (by storing it in a commune DB or whatever) and to the client through this packet. When the client log into the game world, it sends back the key, the game world check if the key is correct and allow connection or not.
<pre>struct C2S_TRAVEL_CONNECT (size = 1 DWORD)
{
struct PacketHeader header;
DWORD tkey; //the tkey the login server sended in the L2C_UNIVERSE_SELECTED_ACK packet
};
</pre><pre>struct S2C_WORLD_PRE_LOGIN (size = 2 DWORD)
{
struct PacketHeader header;
DWORD unknownDWord;//MUST BE 0
DWORD worldId; //must be 1 for character selection
};
</pre>Note: the worldId seems to be an ID identifying the map to load but I'm not sure. In the log if the number you send is not 1, you see an error like "failed to load game world (worldId)". Should test with other IDs to see if it loads other maps file than baseCharacterSelection.sbw.
<pre>struct C2S_WORLD_PRE_LOGIN_ACK (size = 1 DWORD)
{
struct PacketHeader header;
DWORD unknownDWord;// = 0; to investigate
};
</pre>Protocol
Here is the dialog between client and server, don't know if it's very useful. For detailed info about the packets structure, see the section above.
 
Client sends CONNECT to Login Server (status code?)
 
Client sends C2L_USER_LOGIN (login + password)
Login Server answers L2C_USER_LOGIN_ACK (status code)
 
Client sends C2L_QUERY_UNIVERSE_LIST (no data)
Login Server answers L2C_QUERY_UNIVERSE_LIST_ACK (status code?, universes list with infos)
 
Client sends C2L_UNIVERSE_SELECTED (universe selected id)
Login Server answers L2C_UNIVERSE_SELECTED_ACK (universe package's name, universe (game server) IP + port, and tkey)
 
Client sends CONNECT to Game Server Beginning of the conversatiom between Client and Game Server
Client sends C2L_TRAVEL_CONNECT to Game Server (with tkey)
Client sends DISCONNECT to Login Server (disconnection reason "connect to game world")
Conversation between Client and Login Server is now over.
 
Game Server sends S2C-WORLD_PRE_LOGIN (world setup id, must be 1, to investigate)
Client answers C2S_WORLD_PRE_LOGIN_ACK
 
Game Server sends S2C_WORLD_LOGIN
 
List of Packets ID
 
CONNECT = 0xFFFD;
DISCONNECT = 0xFFFE;
 
Client to Login packets ID
 
C2L_USER_LOGIN = 0;
C2L_QUERY_UNIVERSE_LIST = 2;
C2L_UNIVERSE_SELECTED = 4;
 
Login Server packets ID
 
L2C_USER_LOGIN_ACK = 1;
L2C_QUERY_UNIVERSE_LIST_ACK = 3;
L2C_UNIVERSE_SELECTED_ACK = 5;
 
Client to Game Server packets ID
 
C2S_TRAVEL_CONNECT = 0;
C2S_WORLD_PRE_LOGIN_ACK = 2;
C2S_WORLD_LOGIN_ACK = 4;
 
Game Server packets ID
 
S2C_WORLD_PRE_LOGIN = 1;
S2C_WORLD_LOGIN = 3;
 
 
 
To be continued (other packet layout etc). If you have specific questions do not hesitate to ask, maybe I could answer it.

This post was last modified: 15-03-2015, 10:10 PM by Saltiel.


Messages In This Thread
Reversing Spellborn - by Saltiel - 01-09-2014, 06:35 PM
Reversing Spellborn - by Polymo - 02-09-2014, 08:14 AM
Reversing Spellborn - by Czelsior - 02-09-2014, 11:22 AM
Reversing Spellborn - by JW-NL - 02-09-2014, 04:02 PM
Reversing Spellborn - by Czelsior - 02-09-2014, 05:25 PM
Reversing Spellborn - by Saltiel - 02-09-2014, 07:54 PM
Reversing Spellborn - by acid-burn - 02-09-2014, 08:03 PM
Reversing Spellborn - by Saltiel - 02-09-2014, 08:18 PM
Reversing Spellborn - by Kevin_mybb_import1 - 02-09-2014, 11:37 PM
Reversing Spellborn - by Czelsior - 03-09-2014, 01:50 AM
Reversing Spellborn - by Slink - 03-09-2014, 12:49 PM
Reversing Spellborn - by Saltiel - 04-09-2014, 09:54 AM
Reversing Spellborn - by acid-burn - 04-09-2014, 04:28 PM
Reversing Spellborn - by acid-burn - 04-09-2014, 04:45 PM
Reversing Spellborn - by Saltiel - 04-09-2014, 07:30 PM
Reversing Spellborn - by CowMooFlage - 05-09-2014, 08:27 PM
Reversing Spellborn - by Kevin_mybb_import1 - 05-09-2014, 08:39 PM
Reversing Spellborn - by Saltiel - 07-09-2014, 08:15 PM
Reversing Spellborn - by Czelsior - 08-09-2014, 10:13 AM
Reversing Spellborn - by Saltiel - 08-09-2014, 11:04 AM
Reversing Spellborn - by CowMooFlage - 08-09-2014, 06:30 PM
Reversing Spellborn - by JW-NL - 08-09-2014, 08:48 PM
Reversing Spellborn - by Polymo - 09-09-2014, 07:12 AM
Reversing Spellborn - by Kevin_mybb_import1 - 09-09-2014, 04:41 PM
Reversing Spellborn - by Saltiel - 09-09-2014, 05:54 PM
Reversing Spellborn - by JW-NL - 09-09-2014, 06:42 PM
Reversing Spellborn - by Saltiel - 09-09-2014, 07:00 PM
Reversing Spellborn - by acid-burn - 09-09-2014, 07:08 PM
Reversing Spellborn - by Czelsior - 09-09-2014, 08:05 PM
Reversing Spellborn - by Saltiel - 09-09-2014, 10:34 PM
Reversing Spellborn - by Kevin_mybb_import1 - 09-09-2014, 10:50 PM
Reversing Spellborn - by Saltiel - 10-09-2014, 12:59 PM
Reversing Spellborn - by Czelsior - 10-09-2014, 03:51 PM
Reversing Spellborn - by CowMooFlage - 10-09-2014, 06:05 PM
Reversing Spellborn - by Saltiel - 10-09-2014, 07:25 PM
Reversing Spellborn - by JW-NL - 10-09-2014, 08:56 PM
Reversing Spellborn - by Czelsior - 10-09-2014, 10:30 PM
Reversing Spellborn - by Slink - 11-09-2014, 01:10 PM
Reversing Spellborn - by CowMooFlage - 11-09-2014, 02:55 PM
Reversing Spellborn - by Sulvor - 12-09-2014, 04:25 PM
Reversing Spellborn - by Polymo - 15-09-2014, 12:55 PM
Reversing Spellborn - by Getty_ - 15-09-2014, 06:26 PM
Reversing Spellborn - by Polymo - 16-09-2014, 11:02 AM
Reversing Spellborn - by Saltiel - 16-09-2014, 11:42 AM
Reversing Spellborn - by Polymo - 16-09-2014, 02:02 PM
Reversing Spellborn - by Saltiel - 17-09-2014, 08:41 AM
Reversing Spellborn - by Polymo - 17-09-2014, 11:54 AM
Reversing Spellborn - by Getty_ - 17-09-2014, 12:42 PM
Reversing Spellborn - by Polymo - 17-09-2014, 02:37 PM
Reversing Spellborn - by Slink - 18-09-2014, 12:30 AM
Reversing Spellborn - by acid-burn - 18-09-2014, 01:26 AM
Reversing Spellborn - by Saltiel - 18-09-2014, 10:55 AM
Reversing Spellborn - by acid-burn - 18-09-2014, 05:58 PM
Reversing Spellborn - by Polymo - 18-09-2014, 06:28 PM
Reversing Spellborn - by CowMooFlage - 18-09-2014, 06:54 PM
Reversing Spellborn - by Polymo - 18-09-2014, 07:31 PM
Reversing Spellborn - by Polymo - 18-09-2014, 10:12 PM
Reversing Spellborn - by acid-burn - 18-09-2014, 11:56 PM
Reversing Spellborn - by Saltiel - 19-09-2014, 08:35 AM
Reversing Spellborn - by acid-burn - 19-09-2014, 08:55 AM
Reversing Spellborn - by Saltiel - 19-09-2014, 08:57 AM
Reversing Spellborn - by Saltiel - 19-09-2014, 09:39 AM
Reversing Spellborn - by Polymo - 19-09-2014, 10:24 AM
Reversing Spellborn - by Polymo - 19-09-2014, 10:38 AM
Reversing Spellborn - by Saltiel - 19-09-2014, 10:39 AM
Reversing Spellborn - by Czelsior - 19-09-2014, 11:16 AM
Reversing Spellborn - by Polymo - 19-09-2014, 07:12 PM
Reversing Spellborn - by Czelsior - 19-09-2014, 08:06 PM
Reversing Spellborn - by Polymo - 19-09-2014, 08:11 PM
Reversing Spellborn - by Czelsior - 19-09-2014, 08:19 PM
Reversing Spellborn - by Polymo - 19-09-2014, 08:28 PM
Reversing Spellborn - by Czelsior - 19-09-2014, 08:36 PM
Reversing Spellborn - by Saltiel - 19-09-2014, 09:44 PM
Reversing Spellborn - by Polymo - 19-09-2014, 09:57 PM
Reversing Spellborn - by acid-burn - 19-09-2014, 10:47 PM
Reversing Spellborn - by Polymo - 19-09-2014, 11:12 PM
Reversing Spellborn - by Czelsior - 19-09-2014, 11:41 PM
Reversing Spellborn - by Polymo - 20-09-2014, 07:28 AM
Reversing Spellborn - by Czelsior - 20-09-2014, 08:08 AM
Reversing Spellborn - by Saltiel - 20-09-2014, 08:58 AM
Reversing Spellborn - by Polymo - 20-09-2014, 09:14 AM
Reversing Spellborn - by Getty_ - 20-09-2014, 09:18 AM
Reversing Spellborn - by Polymo - 20-09-2014, 09:24 AM
Reversing Spellborn - by Saltiel - 20-09-2014, 09:28 AM
Reversing Spellborn - by Polymo - 20-09-2014, 09:31 AM
Reversing Spellborn - by Saltiel - 20-09-2014, 09:43 AM
Reversing Spellborn - by JW-NL - 20-09-2014, 11:32 AM
Reversing Spellborn - by Polymo - 20-09-2014, 11:47 AM
Reversing Spellborn - by Polymo - 20-09-2014, 06:17 PM
Reversing Spellborn - by acid-burn - 20-09-2014, 06:52 PM
Reversing Spellborn - by Polymo - 20-09-2014, 07:22 PM
Reversing Spellborn - by acid-burn - 20-09-2014, 07:40 PM
Reversing Spellborn - by Polymo - 20-09-2014, 07:44 PM
Reversing Spellborn - by acid-burn - 20-09-2014, 07:53 PM
Reversing Spellborn - by Polymo - 20-09-2014, 09:54 PM
Reversing Spellborn - by acid-burn - 20-09-2014, 10:08 PM
Reversing Spellborn - by Polymo - 20-09-2014, 10:38 PM
Reversing Spellborn - by acid-burn - 20-09-2014, 10:56 PM
Reversing Spellborn - by Polymo - 21-09-2014, 08:40 AM
Reversing Spellborn - by Saltiel - 21-09-2014, 11:01 AM
Reversing Spellborn - by Polymo - 21-09-2014, 06:39 PM
Reversing Spellborn - by JW-NL - 21-09-2014, 07:33 PM
Reversing Spellborn - by Polymo - 21-09-2014, 07:39 PM
Reversing Spellborn - by Saltiel - 21-09-2014, 08:11 PM
Reversing Spellborn - by CowMooFlage - 21-09-2014, 09:17 PM
Reversing Spellborn - by Polymo - 21-09-2014, 09:17 PM
Reversing Spellborn - by CowMooFlage - 21-09-2014, 09:25 PM
Reversing Spellborn - by Polymo - 21-09-2014, 09:49 PM
Reversing Spellborn - by Saltiel - 21-09-2014, 09:51 PM
Reversing Spellborn - by Polymo - 21-09-2014, 10:04 PM
Reversing Spellborn - by acid-burn - 21-09-2014, 10:36 PM
Reversing Spellborn - by acid-burn - 22-09-2014, 10:00 AM
Reversing Spellborn - by Polymo - 22-09-2014, 10:42 AM
Reversing Spellborn - by Slink - 23-09-2014, 12:55 PM
Reversing Spellborn - by Saltiel - 23-09-2014, 04:40 PM
Reversing Spellborn - by Slink - 23-09-2014, 11:11 PM
Reversing Spellborn - by Saltiel - 24-09-2014, 08:01 AM
Reversing Spellborn - by Polymo - 24-09-2014, 12:08 PM
Reversing Spellborn - by Czelsior - 24-09-2014, 03:24 PM
Reversing Spellborn - by Slink - 25-09-2014, 01:31 AM
Reversing Spellborn - by Polymo - 25-09-2014, 03:15 PM
Reversing Spellborn - by acid-burn - 25-09-2014, 03:35 PM
Reversing Spellborn - by Polymo - 25-09-2014, 03:46 PM
Reversing Spellborn - by acid-burn - 25-09-2014, 05:49 PM
Reversing Spellborn - by Polymo - 25-09-2014, 05:51 PM
Reversing Spellborn - by Polymo - 25-09-2014, 08:44 PM
Reversing Spellborn - by Polymo - 26-09-2014, 09:44 AM
Reversing Spellborn - by JW-NL - 26-09-2014, 09:52 AM
Reversing Spellborn - by acid-burn - 26-09-2014, 11:31 AM
Reversing Spellborn - by Polymo - 26-09-2014, 01:23 PM
Reversing Spellborn - by acid-burn - 26-09-2014, 02:06 PM
Reversing Spellborn - by Slink - 27-09-2014, 02:54 AM
Reversing Spellborn - by Getty_ - 27-09-2014, 09:13 AM
Reversing Spellborn - by acid-burn - 27-09-2014, 09:16 AM
Reversing Spellborn - by Slink - 27-09-2014, 01:58 PM
Reversing Spellborn - by Getty_ - 27-09-2014, 02:04 PM
Reversing Spellborn - by Slink - 27-09-2014, 03:00 PM
Reversing Spellborn - by acid-burn - 27-09-2014, 05:17 PM
Reversing Spellborn - by Getty_ - 27-09-2014, 05:44 PM
Reversing Spellborn - by Czelsior - 28-09-2014, 12:21 AM
Reversing Spellborn - by Polymo - 02-10-2014, 03:29 PM
Reversing Spellborn - by Saltiel - 02-10-2014, 07:14 PM
Reversing Spellborn - by CowMooFlage - 02-10-2014, 08:07 PM
Reversing Spellborn - by Czelsior - 02-10-2014, 09:54 PM
Reversing Spellborn - by Getty_ - 03-10-2014, 08:41 AM
Reversing Spellborn - by Kevin_mybb_import1 - 03-10-2014, 03:47 PM
Reversing Spellborn - by Saltiel - 03-10-2014, 05:23 PM
Reversing Spellborn - by Saltiel - 03-10-2014, 11:49 PM
Reversing Spellborn - by Polymo - 04-10-2014, 10:44 PM
Reversing Spellborn - by Getty_ - 05-10-2014, 08:43 AM
Reversing Spellborn - by Polymo - 05-10-2014, 09:37 AM
Reversing Spellborn - by Czelsior - 07-10-2014, 09:52 AM
Reversing Spellborn - by JW-NL - 07-10-2014, 11:11 AM
Reversing Spellborn - by loonbg - 14-10-2014, 01:44 PM
Reversing Spellborn - by Kevin_mybb_import1 - 14-10-2014, 02:53 PM
Reversing Spellborn - by CowMooFlage - 21-10-2014, 09:15 PM
Reversing Spellborn - by Polymo - 22-10-2014, 02:53 PM
Reversing Spellborn - by Saltiel - 23-10-2014, 05:33 PM
Reversing Spellborn - by CowMooFlage - 23-10-2014, 06:41 PM
Reversing Spellborn - by acid-burn - 23-10-2014, 07:28 PM
Reversing Spellborn - by Slink - 08-11-2014, 02:57 AM
Reversing Spellborn - by Czelsior - 08-11-2014, 03:58 AM
Reversing Spellborn - by Getty_ - 11-11-2014, 10:13 PM
Reversing Spellborn - by Slink - 11-11-2014, 10:53 PM
Reversing Spellborn - by Czelsior - 12-11-2014, 12:06 AM
Reversing Spellborn - by tbjoker - 12-11-2014, 06:29 AM
Reversing Spellborn - by Saltiel - 12-11-2014, 02:09 PM
Reversing Spellborn - by tbjoker - 12-11-2014, 02:36 PM
Reversing Spellborn - by Czelsior - 12-11-2014, 04:23 PM
Reversing Spellborn - by Getty_ - 12-11-2014, 07:14 PM
Reversing Spellborn - by Saltiel - 12-11-2014, 08:42 PM
Reversing Spellborn - by tbjoker - 12-11-2014, 08:55 PM
Reversing Spellborn - by Czelsior - 12-11-2014, 09:03 PM
Reversing Spellborn - by acid-burn - 12-11-2014, 10:11 PM
Reversing Spellborn - by Saltiel - 12-11-2014, 10:23 PM
Reversing Spellborn - by JW-NL - 12-11-2014, 11:04 PM
Reversing Spellborn - by Slink - 13-11-2014, 01:23 AM
Reversing Spellborn - by Polymo - 13-11-2014, 09:27 AM
Reversing Spellborn - by Czelsior - 22-11-2014, 12:06 AM
Reversing Spellborn - by Slink - 22-11-2014, 01:04 AM
Reversing Spellborn - by Czelsior - 22-11-2014, 10:32 AM
Reversing Spellborn - by acid-burn - 20-12-2014, 09:21 PM
Reversing Spellborn - by acid-burn - 21-12-2014, 04:14 PM
Reversing Spellborn - by Zer0.BE - 22-12-2014, 12:16 PM
Reversing Spellborn - by Czelsior - 22-12-2014, 02:30 PM
Reversing Spellborn - by Saltiel - 22-12-2014, 02:49 PM
Reversing Spellborn - by JW-NL - 22-12-2014, 03:31 PM
Reversing Spellborn - by acid-burn - 22-12-2014, 04:04 PM
Reversing Spellborn - by Zer0.BE - 22-12-2014, 04:07 PM
Reversing Spellborn - by Zer0.BE - 22-12-2014, 04:13 PM
Reversing Spellborn - by JW-NL - 22-12-2014, 04:20 PM
Reversing Spellborn - by Saltiel - 22-12-2014, 04:54 PM
Reversing Spellborn - by acid-burn - 22-12-2014, 05:14 PM
Reversing Spellborn - by Kevin_mybb_import1 - 26-12-2014, 09:17 PM
Reversing Spellborn - by StrikeX - 14-01-2015, 06:26 PM
Reversing Spellborn - by Slayeer - 06-02-2015, 03:28 PM
Reversing Spellborn - by Czelsior - 06-02-2015, 05:25 PM
Reversing Spellborn - by Slayeer - 12-02-2015, 01:54 PM
Reversing Spellborn - by Czelsior - 13-02-2015, 03:49 PM
Reversing Spellborn - by Slayeer - 14-02-2015, 12:41 PM
Reversing Spellborn - by Valshaaran - 21-02-2015, 06:32 PM
Reversing Spellborn - by acid-burn - 21-02-2015, 09:21 PM
Reversing Spellborn - by Polymo - 21-02-2015, 11:25 PM
Reversing Spellborn - by Saltiel - 21-02-2015, 11:32 PM
Reversing Spellborn - by Czelsior - 22-02-2015, 02:23 AM
Reversing Spellborn - by Valshaaran - 22-02-2015, 09:30 PM
Reversing Spellborn - by acid-burn - 22-02-2015, 10:20 PM
Reversing Spellborn - by Valshaaran - 23-02-2015, 02:09 PM
Reversing Spellborn - by Slink - 23-02-2015, 03:02 PM
Reversing Spellborn - by Valshaaran - 23-02-2015, 03:25 PM
Reversing Spellborn - by wazzupi - 01-03-2015, 04:34 AM
Reversing Spellborn - by acid-burn - 01-03-2015, 01:38 PM
Reversing Spellborn - by JW-NL - 01-03-2015, 01:58 PM
Reversing Spellborn - by wazzupi - 01-03-2015, 08:53 PM
Reversing Spellborn - by JW-NL - 02-03-2015, 10:17 PM
Reversing Spellborn - by JW-NL - 02-03-2015, 10:23 PM
Reversing Spellborn - by Slink - 03-03-2015, 02:27 PM
Reversing Spellborn - by Saltiel - 03-03-2015, 07:23 PM
Reversing Spellborn - by acid-burn - 03-03-2015, 09:51 PM
Reversing Spellborn - by Sulvor - 15-03-2015, 07:14 AM
Reversing Spellborn - by Polymo - 15-03-2015, 09:19 AM
Reversing Spellborn - by Sulvor - 15-03-2015, 10:50 AM
Reversing Spellborn - by Polymo - 15-03-2015, 11:11 AM
Reversing Spellborn - by Saltiel - 15-03-2015, 06:06 PM
Reversing Spellborn - by acid-burn - 15-03-2015, 09:11 PM
Reversing Spellborn - by Saltiel - 15-03-2015, 10:14 PM
Reversing Spellborn - by Polymo - 15-03-2015, 10:24 PM
Reversing Spellborn - by Kevin_mybb_import1 - 15-03-2015, 11:52 PM
Reversing Spellborn - by Polymo - 16-03-2015, 06:40 PM
Reversing Spellborn - by Polymo - 16-03-2015, 08:48 PM
Reversing Spellborn - by tbjoker - 19-03-2015, 05:27 PM
Reversing Spellborn - by Polymo - 23-03-2015, 10:01 AM
Reversing Spellborn - by tbjoker - 24-03-2015, 03:36 PM
Reversing Spellborn - by Polymo - 24-03-2015, 06:17 PM
Reversing Spellborn - by tbjoker - 28-03-2015, 06:35 PM
Reversing Spellborn - by Polymo - 28-03-2015, 08:07 PM
Reversing Spellborn - by Saltiel - 29-03-2015, 01:16 PM
Reversing Spellborn - by tbjoker - 29-03-2015, 11:34 PM
Reversing Spellborn - by Saltiel - 30-03-2015, 07:32 PM
Reversing Spellborn - by JW-NL - 31-03-2015, 07:05 PM
Reversing Spellborn - by Kevin_mybb_import1 - 31-03-2015, 08:17 PM
Reversing Spellborn - by acid-burn - 31-03-2015, 09:06 PM
Reversing Spellborn - by JW-NL - 31-03-2015, 09:27 PM
Reversing Spellborn - by Kevin_mybb_import1 - 31-03-2015, 10:43 PM
Reversing Spellborn - by JW-NL - 03-04-2015, 11:30 PM

Forum Jump:


Users browsing this thread: 3 Guest(s)