LOTF Source Guide

03/13/2009 21:15 Dania#136
For everyone getting the command prompt closing after a second, you didn't edit the Config.ini in the same folder, edit the IP in there, and the database connection details.

Quote:
[Server]
ServerIP=192.168.1.100
XPRate=25
ProfXPRate=25
DBUserName = "root"
DBUserPass = ""
ServerIP is your local network IP. The rest is self explanatory.
03/13/2009 22:14 PeTe Ninja#137
will release HOW TO CReate a server.. for lotf servers
03/13/2009 22:15 Dania#138
Go for it. I will try to make something good of this source, maybe one day it will be a whole new Conquer. :)
03/14/2009 00:32 PeTe Ninja#139
Quote:
Originally Posted by Dania View Post
Go for it. I will try to make something good of this source, maybe one day it will be a whole new Conquer. :)
with lotf you cant make it " your own " unless by that you mean editing, rewriting lotf will be pointless. taking out npcs commands thats not rewriting just editing which is good i guess

if your like me ( im putting VIp in mine, it will be awesome )
03/14/2009 08:00 Dania#140
Well I mean heavily modifying the source so I can literally call it my own. It could take me years, though. I needed this source as a base for the communication/packets which I know nothing about and this is an excellent source to build off from.
03/14/2009 08:09 PeTe Ninja#141
Quote:
Originally Posted by Dania View Post
Well I mean heavily modifying the source so I can literally call it my own. It could take me years, though. I needed this source as a base for the communication/packets which I know nothing about and this is an excellent source to build off from.

just edit it and its yours,

i think lotf as a no ones source , tanel might of made it but ... everyone in epvp contributed to all of the great codes out there.
03/14/2009 13:57 Metin2_Team#142
[quote=Super.Pvper;1260550]Official Unofficial Guide for the LOTF Source.

Server Info:

- Database: MySQL
- Language: C#
- Client: v 5016

Required Programs:

- Microsoft Visual C# 2005 Express Edition [Link: [Only registered and activated users can see links. Click Here To Register...]]
- AppServ(MySQL, Apache, and PhpMyAdmin all in one) [Link: [Only registered and activated users can see links. Click Here To Register...]]

- LOTF Source: [Link: [Only registered and activated users can see links. Click Here To Register...]]
- Conquer Online Client 5016 [Link: <NONE>]

*IMPORTANT NOTE!!!!!!!!!!!*
YOU MUST REMEMBER ALL THE USERNAMES/PASSWORDS YOU ENTER!

Setup Guide:

1. Download and Install everything.

2. Go to PhpMyAdmin (go to your browser, and type: [Only registered and activated users can see links. Click Here To Register...], then enter root for the username, and the password you set when installing AppServ.[quote]

Itīs just loading and nothing is doing why?
04/02/2009 23:03 coolkid1990#143
Quote:
Originally Posted by kinshi88 View Post
In the source (opened in Visual C#), there is a folder called resources.

Drag and drop the mysql.data file into resources.
The only folders i see when i open up the source are Properties and References (On the right hand side panel)... Where is the resources folder? I opened COServerProject.csproj and i can't find the Resources folder anywhere, help please? I've been looking for it for awhile now so if someone could just simply say what file i should open and where to look for it that'd be great.
04/02/2009 23:08 PeTe Ninja#144
Quote:
Originally Posted by coolkid1990 View Post
The only folders i see when i open up the source are Properties and References (On the right hand side panel)... Where is the resources folder? I opened COServerProject.csproj and i can't find the Resources folder anywhere, help please? I've been looking for it for awhile now so if someone could just simply say what file i should open and where to look for it that'd be great.
someone released a fixed lotf source which means they did that and added a few more. you shuold search for it.
04/02/2009 23:14 coolkid1990#145
I'm trying to find a simple LOFT source with as little bugs as possible this is the best one i could find with an easy setup guide. I'll try to find the one your thinking of though, maybe its better :)
04/02/2009 23:22 coolkid1990#146
Found it :) Thanks alot ^^

[Only registered and activated users can see links. Click Here To Register...]
04/02/2009 23:24 PeTe Ninja#147
most lotf sources that are least bugs still have alot of bugs

btw do not get Cov2 source.. it is the worst ever
04/02/2009 23:28 coolkid1990#148
Quote:
Originally Posted by PeTe Ninja View Post
most lotf sources that are least bugs still have alot of bugs

btw do not get Cov2 source.. it is the worst ever
Hmm kai :P Thanks ^^
04/02/2009 23:37 coolkid1990#149
SQL query:

--
-- Database: `coproj`
--
-- --------------------------------------------------------
--
-- Table structure for table `accounts`
--
CREATE TABLE `accounts` (
`AccountID` varchar( 16 ) NOT NULL default '',
`Password` varchar( 64 ) NOT NULL default '',
`LogonType` int( 8 ) unsigned NOT NULL default '0',
`LogonCount` int( 10 ) unsigned NOT NULL default '0',
`Status` int( 8 ) unsigned default '0',
`Charr` varchar( 16 ) NOT NULL default '',
`AccNr` int( 10 ) unsigned NOT NULL AUTO_INCREMENT ,
`Online` int( 8 ) unsigned NOT NULL default '0',
PRIMARY KEY USING BTREE(
`AccNr`
)
) ENGINE = MYISAM DEFAULT CHARSET = latin1 AUTO_INCREMENT =1

MySQL said: Documentation
#1046 - No database selected

It came up with that message when i tried to import my database on [Only registered and activated users can see links. Click Here To Register...] any idea how to fix that?
04/02/2009 23:42 PeTe Ninja#150
Quote:
Originally Posted by coolkid1990 View Post
SQL query:

--
-- Database: `coproj`
--
-- --------------------------------------------------------
--
-- Table structure for table `accounts`
--
CREATE TABLE `accounts` (
`AccountID` varchar( 16 ) NOT NULL default '',
`Password` varchar( 64 ) NOT NULL default '',
`LogonType` int( 8 ) unsigned NOT NULL default '0',
`LogonCount` int( 10 ) unsigned NOT NULL default '0',
`Status` int( 8 ) unsigned default '0',
`Charr` varchar( 16 ) NOT NULL default '',
`AccNr` int( 10 ) unsigned NOT NULL AUTO_INCREMENT ,
`Online` int( 8 ) unsigned NOT NULL default '0',
PRIMARY KEY USING BTREE(
`AccNr`
)
) ENGINE = MYISAM DEFAULT CHARSET = latin1 AUTO_INCREMENT =1

MySQL said: Documentation
#1046 - No database selected

It came up with that message when i tried to import my database on [Only registered and activated users can see links. Click Here To Register...] any idea how to fix that?

make sure you have the database coproj created then selected in the drop down arrow on left then import it =]