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!

Recent content by janvier1985

  1. J

    [release] osds v4

    http://www.dkunderground.org/wp-content/uploads/2011/04/man_shouting_through_megaphone.png OSDS stands for (Open Source Dekaron Server) It was created as a control panel for admins and users to manage the dekaron server. Its runs on PHP5 and MSSQL, and mostly run on a windows platform with...
  2. J

    [HOW TO] Auto increment in MSSQL Dekaron

    i post here becuz ive found it useful for php scripters I need to increment a field in every addition of a new record... what is the script for the auto increment in a create statement and alter table statement... CREATE TABLE [dbo].[new_table]( [recNum] [int] IDENTITY(1,1) ) or ALTER...
  3. J

    [FIX] How to have internet on VMware 1 Click Server

    Today i need my server back called DKveterans, but iam too lazy to clone my hdd and reinstall win2003 so i used silkbotters 1click server, But no internet ... hmmm i fixed that in less then 5min Ok listen up! In Vmware, select properties of the server Select Network Adapter Set the following...
  4. J

    [FIX] MSSQL 2000 Error on install

    Quick fix for MSSQL 2000: Error: A previous program installation created pending file operations on the installation machine. You must restart the computer before running setup. Fix: Restart the computer and see if you are able to run the setup. If the restart does not help, use the steps...
  5. J

    [HOWTO] Logging ALL Queries on a MSSQL Database?

    Hi, after ALLOT of googling in found a very sweet function in mssql If you have "Profiler" install here is how you can track almost everything that is going on in the DB ive found out that it will take months (YES! months) to analyze all the data that is send from dekaronserver.exe so here is...
  6. J

    [HOWTO] Create Coins ID

    Every character that did visit the D-Shop gets a unique ID, witch is different from the user_no I know its retarded but we have to deal with it so lets look at the SP in the database: /****** Object: Stored Procedure dbo.BL_CreateIdCode Script Date: 2006-5-25 13:03:36 ******/ CREATE...
  7. J

    [HOWTO] Create User No

    Ok, here is how you create a user_no for the database PHP Code $dk_time=strftime("%y%m%d%H%M%S"); list($usec1, $sec1) = explode(" ",microtime()); $dk_user_no=$dk_time.substr($usec1,2,2); echo $dk_user_no; Lets explain that: strftime = "%y%m%d%H%M%S" = Year - Month - Day - Hour - Minutes -...
  8. J

    OSDS V4 Admin

    Nothing to say, pictures can say enough You must be registered for see element. You must be registered for see element. You must be registered for see element. You must be registered for see element. You must be registered for see element. OSDS V4 is using "On-the-fly filtering" WTF is...
  9. J

    [RELEASE] Get guild name from character_name (PHP)

    $result2 = $db->query('SELECT * FROM character.dbo.GUILD_CHAR_INFO WHERE character_name = "'.$getCharsName['character_name'].'" '); $getGuildNum = $db->fetchNum($result2); $getGuildCode = $db->fetchArray($result2); if ($getGuildNum == '0'){ $guildname = "No Guild"; } else { $result3 =...
  10. J

    [RELEASE] Vote For Coins V2

    Here is a remake of Vote for coins with mysql Works on PHP 4 and PHP 5 Instructions: - create new db called "vote" - import "vote.sql" - edit "vote.php" and fill in mssql and mysql - edit "vote.php" to change values to your own wishes - Upload vote.php and votenow.php - go to...
  11. J

    [RELEASE] Dekaron Maps!

    Remember this? Voice 1: Hey dude where F*** are you ? Voice 2: In egutt Voice 1: Where ?!? Voice 2: euhmm 114 356 Voice 1: where the f**** is that ? Voice 2: dude use dekaron maps! Voice 1: oh yea! No more running around, find your way in dekaron fast and easy! WITH DEKARON MAPS! You must be...
  12. J

    [RELEASE] Live Users (PHP)

    Here is a small script to list all user_id's that are currently online WARNING! - THIS PULLS 1 QUERY EVERY 3 SECONDS - - Thats 20 query's in 1min - Thats 1200 every hour! You can change the time, on line 21 (in online.html) you'll find: 3000 = 3 sec online.html <!DOCTYPE html PUBLIC...
  13. J

    [RELEASE] Dekaron CMS (DKCMS)

    Project offline source: You must be registered for see element.
  14. J

    [Release] Flying Mount

    new Link: You must be registered for see element.
  15. J

    [RELEASE] Dekaron CMS (DKCMS)

    http://www.dkunderground.org/dkcms/img/logo.jpg Its finally done! After months of hard work and coding ... its finished to be released. Ive done allot of thinking about this and .. its pretty nice, but it can be more improved, with feedback from the members of course :D Everything you need to...
Back
Top