Register for your free account! | Forgot your password?

You last visited: Today at 15:17

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



What Language?

Discussion on What Language? within the Dekaron Private Server forum part of the Dekaron category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Nov 2009
Posts: 20
Received Thanks: 0
What Language?

What language is Dekaron Coded in?

then i mean.
When i making my own dekaron server what language do i write it on.
(Computer Language)
[GM]Zan is offline  
Old 07/31/2010, 19:28   #2
 
[DEV]Harmony's Avatar
 
elite*gold: 0
Join Date: Feb 2009
Posts: 815
Received Thanks: 431
It will be English if you will use english files unless u use dekaron kr files it will be on korean.
[DEV]Harmony is offline  
Old 07/31/2010, 20:20   #3
 
elite*gold: 0
Join Date: Nov 2009
Posts: 20
Received Thanks: 0
i mean what programming language.
[GM]Zan is offline  
Old 07/31/2010, 20:38   #4
 
gedimazs's Avatar
 
elite*gold: 0
Join Date: May 2008
Posts: 863
Received Thanks: 197
you don't need to know any programming language to open dekaron server except you want to modify dekaronserver.exe or dekaron.exe to load new stuff like aloken, mavrics and etc. and btw you must know how to create new dlls too Good luck
gedimazs is offline  
Old 07/31/2010, 22:44   #5



 
MMOPerfection©'s Avatar
 
elite*gold: 280
Join Date: Mar 2008
Posts: 1,549
Received Thanks: 310
If you want to add aloken into the exe you'll need to know the
ASM language.
MMOPerfection© is offline  
Old 08/01/2010, 19:53   #6
 
elite*gold: 20
Join Date: Jan 2008
Posts: 1,346
Received Thanks: 354
Dekaron was coded in C++, but like Xplicit said you'll need to know asm if you want to implement new features. Even if you aren't going to need to code any assembly, you'll still need to know it so you can reverse their executables and workout how you're going to implement such things.

@gedimazs You don't 'need' to know how to create DLL's to implement new features to the game, it's only one of the ways of implementing those features. But yes it's generally the quicker way to implement features.
bottomy is offline  
Old 08/01/2010, 21:43   #7
 
Zombe's Avatar
 
elite*gold: 20
Join Date: Dec 2007
Posts: 1,451
Received Thanks: 840
If you'd like to get into serious reversing (Like I'm trying to now ), heres what you do:

1. You learn C++. Kind of good tutorial (At least I didn't find a better one):


2. You learn ASM. Heres the best ASM utorial you'll ever find, I finished it ~3 years ago, and I still haven't seen a better, more in-depth tutorial, ever. Here's the link:


3. Get a decompiling program or a few. Here's two c++ decompilers I'd suggest:



And here's a good article about decompiling:



After that, you wont need to make a dll, you will be able to modify the exe itself using it's source code, since you'll have a pretty good (well, good enough to modify it) source code of the exe.

But if you decide to take upon the mission of learning C++ and ASM, heres a warning... Well, I'll put it this way: I've learned PHP in 2-3 days. I've been learning C++ and ASM for 3 years, and still learning.
Soo, you'll have to be pretty dedicated to that... Dedicated enough to not get laid with your girlfriend for a year... Although that's a different story, and it wasn't my fault. But you get the idea.

Good luck, future adventurers! >=O



Ok, I just realized this is completely off-topic. Its coded in C++ so that you'd know.
Zombe is offline  
Thanks
1 User
Old 08/02/2010, 00:08   #8
 
elite*gold: 20
Join Date: Jan 2008
Posts: 1,346
Received Thanks: 354
Quote:
Originally Posted by Zombe View Post
3. Get a decompiling program or a few. Here's two c++ decompilers I'd suggest:


Just a note though to any who are thinking about decompiling dekaron's executable(s). It's unlikely that it will even be able to decompile it for starters since because of just the size of the executable. But even if it does decompile it there may be problems like, un-meaningful variable names/function names, depending on what optimizations were used might affect the actual output, if any functions were declared in another section than the .text segment it may not be shown as a function and it's code, if text or variables info is stored within the .text segment it might get translated into C/C++ code, if there's any encryption of obfuscation used that will cause problems, then one main problem is data types (specifically distinguishing between what data type they were declared as).

For instance say you have the following assembly:
AT&T

INTEL


So see you don't know what the pointer was actually declared as, like it could have been the following:
Code:
char *s = variable;
int *i = (int*)variable;

*s = 0;
*i = 0;
*(int*)&s = 0;
So the decompiler may declare the pointers as type void *. But it's not just variables that are declared as pointers where the problem lies.


AT&T

INTEL


So here we have exactly the same code as one another, only different points on the stack. But here's what the actual C/C++ code might look like.
Code:
int a = 2;
((int*)a)[1] = 1;
(&a)[5] = 4;

int *c = (int*)2;
*(c + 1) = 1;
(&c)[5] = (int*)4;
So what the decompiler might do is just declare them both as int, and cast them like the variable a. This can create hard to understand code, so all in all decompilers aren't going to give you that much more information then if you were to just read the disassembled code.
bottomy is offline  
Thanks
1 User
Reply


Similar Threads Similar Threads
how to change private server language english to french language it's possible ?
10/19/2018 - Shaiya Private Server - 8 Replies
can people say me how to change the language to the server please ? thank you for now
Need help [pk2] Language
02/15/2010 - Silkroad Online - 2 Replies
Hey guys, Im trying to translate silkroad to dutch for my friends. But I dont know where to start. I would appriciate it if someone can help me :) Greets TheNetherlands
Which Language?
09/27/2009 - CO2 Programming - 2 Replies
Well basically, which language would be the best to write an auto red devil fighter, or something of the sort?



All times are GMT +2. The time now is 15:17.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.