You are Unregistered, please register to gain Full access.
    


RaGEZONE sponsored advertisment:

Just Host Image
Professional Hosting from Just Host

 
 
LinkBack Thread Tools
Old 06-05-2009   #1 (permalink)
RaGEZONER
 
gotmilk8437's Avatar
 
Rank: Hobbit
Join Date: Apr 2007
Posts: 77
Thanked 1 Time in 1 Post

[Guide]Setting Up and Endless Online Private Server

Your Ad Here
Endless Online Server Setup Guide
Using SQLITE


Problems

I've been noticing a lot of people having problems. I tried to make this tutorial as descriptive as possible but I guess it's just not good enough.

Be sure to check the following:
- In your config.ini, under ## SLN ##, SLN = 1 has been changed to SLN = 0
- Your database (file you made in SQLite Database Browser) is in the same folder as all the other files.
- When making the database, before putting in the next script, you get rid of the old one.
- Your host IP address is 0.0.0.0 (don't change it, apparently it's not supported yet, so just leave it).

If you've thoroughly checked all of these and you still have problems, or you don't understand one of them,
add me on MSN Messenger or email me at: gotmilk8437@hotmail.com

This tutorial is very easy to follow and virtually newb-proof. I don't get why you people can't follow instructions properly. Read this tutorial CAREFULLY (as with any other tutorial you ever read, use that as a life lesson) and do not skip any steps if you get any sort of problem, no matter how small, it can cause bigger errors in the longrun.

Please, feel free to ask questions, that's what I'm here for.

Introduction

This guide will show you how to setup an Endless Online private server. You also don't have to compile, as this server is pre-compiled for you, which means no headaches.

Requirements

SQLite ---> Download
EOServ Rev 134 ---> Download
WinRAR (or WinZIP) ---> Download

If any links are broken (they shouldn't be) let me know, I'll upload the files myself.

Setting Up

May I suggest making a folder on your desktop (something like EO Private Server Files) for easier access to your files.

Inside that folder (if you made one) make two new folders. One for you server files and one for SQLite (it's zipped so your going to have to extract it yourself). We'll refer to them as the SQLite folder and the Server Files folder.

Extract all files from the SQLite zip to your SQLite folder.

Extract all files from the EOServ Rev 134 zip to your Server Files folder.

Making The Database

Go into your SQLite folder and open the SQLite Database Browser.

Now go to File, then New Database.

Name it something simple like "database" or "eoservDB" something you'll remember.
Save in your Server Files folder.

A window should pop up asking you to start creating tables, just press cancel.

Now go to the tab Execute SQL.

First, paste this into the top box:

Code:
CREATE TABLE IF NOT EXISTS `accounts`
 (
 `username` VARCHAR(16) NOT NULL,
 `password` CHAR(64) NOT NULL,
 `fullname` VARCHAR(64) NOT NULL,
 `location` VARCHAR(64) NOT NULL,
 `email` VARCHAR(64) NOT NULL,
 `computer` VARCHAR(64) NOT NULL,
 `hdid` CHAR(10) NOT NULL,
 `regip` VARCHAR(15) DEFAULT NULL,
 `lastip` VARCHAR(15) DEFAULT NULL,
 `created` INTEGER NOT NULL,
 `lastused` INTEGER DEFAULT NULL,
 PRIMARY KEY (`username`)
 );
Then press Execute query.
It should say "No error" below.
Now remove the text from the box.

Second, paste this in:

Code:
CREATE TABLE IF NOT EXISTS `characters`
 (
 `name` VARCHAR(12) NOT NULL,
 `account` VARCHAR(16) DEFAULT NULL,
 `title` VARCHAR(32) DEFAULT NULL,
 `home` VARCHAR(32) DEFAULT NULL,
 `partner` VARCHAR(16) DEFAULT NULL,
 `admin` INTEGER NOT NULL DEFAULT 0,
 `class` INTEGER NOT NULL DEFAULT 0,
 `gender` INTEGER NOT NULL DEFAULT 0,
 `race` INTEGER NOT NULL DEFAULT 0,
 `hairstyle` INTEGER NOT NULL DEFAULT 0,
 `haircolor` INTEGER NOT NULL DEFAULT 0,
 `map` INTEGER NOT NULL DEFAULT 192,
 `x` INTEGER NOT NULL DEFAULT 7,
 `y` INTEGER NOT NULL DEFAULT 6,
 `direction` INTEGER NOT NULL DEFAULT 2,
 `spawnmap` INTEGER NOT NULL DEFAULT 192,
 `spawnx` INTEGER NOT NULL DEFAULT 7,
 `spawny` INTEGER NOT NULL DEFAULT 6,
 `level` INTEGER NOT NULL DEFAULT 0,
 `exp` INTEGER NOT NULL DEFAULT 0,
 `hp` INTEGER NOT NULL DEFAULT 10,
 `tp` INTEGER NOT NULL DEFAULT 10,
 `str` INTEGER NOT NULL DEFAULT 0,
 `int` INTEGER NOT NULL DEFAULT 0,
 `wis` INTEGER NOT NULL DEFAULT 0,
 `agi` INTEGER NOT NULL DEFAULT 0,
 `con` INTEGER NOT NULL DEFAULT 0,
 `cha` INTEGER NOT NULL DEFAULT 0,
 `statpoints` INTEGER NOT NULL DEFAULT 0,
 `skillpoints` INTEGER NOT NULL DEFAULT 0,
 `karma` INTEGER NOT NULL DEFAULT 1000,
 `sitting` INTEGER NOT NULL DEFAULT 0,
 `bankmax` INTEGER NOT NULL DEFAULT 20,
 `goldbank` INTEGER NOT NULL DEFAULT 0,
 `usage` INTEGER NOT NULL DEFAULT 0,
 `inventory` TEXT NOT NULL,
 `bank` TEXT NOT NULL,
 `paperdoll` TEXT NOT NULL,
 `spells` TEXT NOT NULL,
 `guild` CHAR(3) DEFAULT NULL,
 `guild_rank` INTEGER DEFAULT NULL,
 PRIMARY KEY (`name`)
 );
Press Execute query.
It should still say "No error" below.

Third, paste this in:

Code:
CREATE TABLE IF NOT EXISTS `guilds`
 (
 `tag` CHAR(3) NOT NULL,
 `name` VARCHAR(32) NOT NULL,
 `description` TEXT NOT NULL,
 `created` INTEGER NOT NULL,
 `ranks` TEXT NOT NULL,
 `bank` INTEGER NOT NULL DEFAULT 0,
 PRIMARY KEY (`tag`),
 UNIQUE (`name`)

  );

Fourth, paste this in:

Code:
CREATE INDEX `character_account_index` ON `characters` (`account`
 );
Fifth, and lastly, paste this in:

Code:
CREATE INDEX `character_guild_index` ON `characters` (`guild`
 );
Now press the save button at the top:


Close SQLite, we're done here.

Configurating

Go into your Server Files folder and open the config.ini file.

Look for: ### SERVER ###

From there, scroll down till you find:

## PasswordSalt
# Enter any large amount of random characters here
# WARNING: Changing this will break any existing users' passwords.
PasswordSalt = ChangeMe <-------- Change that to whatever you like.

Now, under: ### DATABASE ###
Change the following:

## DBType
# Database type (mysql or sqlite)
DBType = mysql <-------- Change to sqlite

## DBHost
# MySQL hostname / SQLite filename
DBHost = localhost <-------- Change to your what you named your database in SQLite.

Now, under: ## MISC ##
Change the following:

## StartItems
# Items a charater should start with
# Syntax: id,amt;id,amt; (must end with semicolon if used)
StartItems = <-------- Put a 0 there (I'll teach you how to edit that later).

## StartSpells
# Spells a charater should start with
# Syntax: id,level;id,level; (must end with semicolon if used)
StartSpells = <-------- Put a 0 there as well.

Save and close.

Running The Server

Run eoserv.exe.

Now go to where you installed Endless Online (the actual game).
Open econfig.exe.
Change the ip to 127.0.0.1 and click Save.

Now run the game like you normally would and create an account. Then login, make a character, and play!

**Keep in mind that only the basic shops in Aeven work on this, it's still in development so wait for later revisions or simply add more shops yourself (I'm not writing a tut for it!)

Customizing Your Server

I'll teach you a little bit (a LITTLE BIT, not EVERYTHING) on customizing your server.

To change the news, go into the data folder and open news.txt, change to your liking.

To edit items you start with, go back into your config.ini again.

Find the following:
## StartItems
# Items a charater should start with
# Syntax: id,amt;id,amt; (must end with semicolon if used)
StartItems = 0

Replace the 0 with items in this format: id,amt;id,amt; <------ Always have ; at the end!!
**The comma separates the item id from the amount of it.
**The semicolon must be placed at the end of each item.
**Don't add too many items, remember you can't fit that many in your inventory!
CLICK HERE FOR ITEM IDS (the numbers in parentheses are the IDs)

To edit rates (exp rate, etc.), go into config.ini.

Find the following:
## RATES ##

## ExpRate
# Rate that exp is gives at (%)
# 200 is 2x, 1000 is 10x etc.
ExpRate = 100 <-------- Change this to the rate (it works as a %, 100 is 1x or 100%)

## DropRate
# Rate that items are dropped at (%)
# 200 is 2x, 1000 is 10x etc.
DropRate = 100
<-------- Change this to the rate (it works as a %, 100 is 1x or 100%)

## MobRate
# Globaly control general strength of all monsters (%)
# 200 is 2x, 1000 is 10x etc.
MobRate = 100
<-------- Change this to the rate (it works as a %, 100 is 1x or 100%)

## SpawnRate
# Globally control spawn speed of all monsters (%)
# 200 is 2x, 1000 is 10x etc.
SpawnRate = 100 <-------- Change this to the rate (it works as a %, 100 is 1x or 100%)

For everything else, look around in the config.ini file but pay VERY CLOSE attention to the notes after the # signs above the value, if it says something like "Shouldn't supass 65k" then IT SHOULDN'T! SO DON'T LET IT!!!

Making Yourself An Admin

Open SQLite Database Browser (after you've made your account, then made your character) and open your database.

Go to the Browse Data tab and change where it says accounts to characters.

Find your character name, then on that line, under "admin" it should say 0.

Double click the 0 and a window should pop up, replace it with:
1 = Light Guide
2 = Gaurdian
3 = Game Master
4 = High Game Master <-------- That should be YOU!

You can also change your stats here, but dont change HP and TP, thats not your MAX health that's just your current health, so if you make it 500 it will be 500/10 and the game will glitch so DON'T DO IT IT'S JUST A BAD IDEA!

If you want to raise your health edit your con.
If you want to raise your mana edit your int.

I wouldn't go over 1000 with any stat, that's where the game starts to get buggy.

After all editing is done, click the save button again.

Giving Yourself Items (because I know you want to)

You'll need to do this while playing (with a command).

Here's the format of it: $sitem [item id] [amount]

So for instance, say you wanted 1mil gold. Here's what you type in the chat:
$sitem 1 1000000

It should say "You picked up 1000000 gold" at the bottom, as if you picked it up off the ground.

Click Here For Item IDs (numbers in parentheses are the IDs)

Going Public


To make your server public, you need to forward the port 8078. Go to http://portforward.com/ and choose your router model and follow the steps.

Then either make a no-ip or give people your actualy IP (not too safe unless you're just playing with trusted friends).

If you can't portforward, hamachi is always an option, but anyone who plays will have to download it as well and connect to you.

Anyways, put either your no-ip, your actualy ip address, or your hamachi ip address into the endless online config and save (like you did before with 127.0.0.1) and have all your players do that as well. Then simply play like you normally would!

***I'll write a full tutorial on going public another time, I'm too tired now, sorry guys.

Credits
Sausage -- for making EOServ.
Sambro -- for hosting a pre-compiled server.
Me -- for writing this tutorial.

Hope this helps! Any questions please reply and I'll see if I can answer them.


EDIT: I've written a tutorial on the basics of PubEdit, it's a wonderful program that can do a lot of editing for your server. Read this tutorial carefully.

PubEdit Tutorial

First, download PubEdit 1.3. Now, before you start editing anything, I suggest you backup your files, if you put the wrong values in the wrong places your pub files may get corrupted and when you login to the game NPCs will be invisible or buildings will be invisible or your character and all others will be invisible. So before you mess up your pub files, go to your data folder, then your pub folder. Now make a new folder in there, let's call it backups. Now copy all four pub files and paste it into your backups folder. Now if any pub file gets corrupted you can simply replace it with a clean one from your backups folder.

Now that you've done all that go ahead and open up PubEdit. Then go to File at the top, and click Open (or press CTRL+O). Navigate to your pub folder again. Now look at the bottom right where it says Endless Class File (*.ecf) and change it. If you want to edit Items choose the Item file, if you want to edit NPCs choose the NPC file, I wouldn't edit the other two. You really don't need to anyway.

Firstly, you can order the list by whatever column you want. That's how I figured all of this out. By comparing what types of items have similar values and determining what they mean.
Okay lets start with Items. I'll explain all the columns that I know.

ID = The ID number of the item (dont mess with that)
Name = Name of the weapon
ICO = The icon number of the weapon (what it looks like, basically, don't mess with that)
TYP = Type of item, potion, equip, etc.. (dont mess with that either unless you know what you're doing)
EQI = Equip, armor, boot, hat, etc..
UNI = Not sure what it stands for, but you can use this to make lore items normal, or cursed items uncursed. All 4's are lores, all 5's are cursed. Set to 0 to make them normal.
HP = HP this item adds when you put it on.
TP = TP this item adds when you put it on.
M... = Minimum damage done (usually weapons only)
MxD = Maximum damage done (usually weapons only)
ACC = Accuracy this item adds
EVA = Evasion this item adds
DEF = Defense this item adds
--- = I have absolutely no idea, just leave it be
STR = Strength this item adds
INT = Intelligence this item adds
WIS = Wisdom this item adds
AGI = Agility this item adds
CON = CON this item adds
CHA = CHA this item adds
LR = If anybody knows this, please tell me.
DR = If anybody knows this, please tell me.
ER = If anybody knows this, please tell me.
AR = If anybody knows this, please tell me.
WR = If anybody knows this, please tell me.
FR = If anybody knows this, please tell me.
SP1 = Location in the gfx file (don't worry about that)
SP2 = Location in the gfx file (don't worry about that)
SP3 = Location in the gfx file (don't worry about that)
--- = I'm not sure but I think it's level requirement because the only number is 3 on Sai, which requires level 3 to wear, so that's my best guess.
CLR = Class requirement, you should change all these to 0, because classes aren't supported in eoserv yet.
SRR = I really don't know this either, if someone does please let me know.
ITR = I really don't know this either, if someone does please let me know.
WSR = I really don't know this either, if someone does please let me know.
AIR = I really don't know this either, if someone does please let me know.
CNR = I really don't know this either, if someone does please let me know.
CAR = I really don't know this either, if someone does please let me know.
--- = I really don't know this either, if someone does please let me know.
--- = I really don't know this either, if someone does please let me know.
WT = I believe this stands for weight, not like you'd want to edit that anyway.
--- = Don't know, if someone does tell me please.
SZE = Size, the maximum for this should be 7 (means it takes up 8 spaces in your inventory, like the TB)

Just click the number you want to change, and then change it, when all changes have been made go to File and then Save (or press CTRL+S).

Now for NPCs, here's all the values I know.

ID = ID number of the NPC (don't change that)
Name = Name of the NPC
GFX = ID of the GFX this NPC uses (what it looks like, don't change that)
--- = I wish I could tell you but I don't know, leave it as 0 I guess.
PRT = Don't know, seems only the Apozen Overlord, Anundo Leader, and Octopus have 1's for this. Any ideas?
CHD = Again I don't know, only Apozen's Taraduda, Tentacle, and Ninja Guard have 1's for this. Any ideas?
NPC = Type of NPC this is. 15 is for quest NPC, 14 is for spell carriers, 13 is just law bob, 12 is just priest, 11 is for guilds, 10 is for barbers, 9 is for banks, 7 for innkeepers, 6 is for shops of any type, 2 is for combatable monsters, 1 seems to also be for combatable monsters, and 0 is for non interactable NPCs. The only things I would really change here is making a number 6 if you want to add shops, like for the people in Aeven Square (Wise Man, Hactor, Dan, etc..).
--- = Sorry, not a clue. Anyone knows?
HP = HP this NPC has, only change this for combatable monsters (Dragons, Apozen, Spiders, etc..).
--- = Sorry, not a clue. Leave as 0 I guess.
ACC = Accuracy this NPC has
EVA = Evasion this NPC has
DEF = Defense this NPC has
M... = Minimum damage this NPC does (whenever I edit this it doesn't seem to work, I'm hoping to contact Rena, the maker of pubedit, and ask if she ever plans to fix this)
MxD = Maximum damage this NPC does (whenever I edit this it doesn't seem to work, I'm hoping to contact Rena, the maker of pubedit, and ask if she ever plans to fix this)
--- = No clue, any ideas?
--- = No clue, any ideas?
--- = No clue, any ideas?
--- = No clue, any ideas?
--- = No clue, any ideas?
--- = No clue, any ideas?
EXP = Experience this NPC gives when killed. (Tends to get buggy if you put this too high, if you want more exp from monsters, just edit your exprate and only slightly change these numbers)

I hope this tutorial helps. I will update with a CodeBlocks tutorial another time. Please leave some feedback on this, I'll help you any way I can.

P.S. - BACKUP YOUR PUB FILES BEFORE YOU EDIT! I CAN'T STRESS THIS ENOUGH! I DON'T WANT TO HEAR COMPLAINTS ABOUT CORRUPTED PUB FILES IF YOU FORGOT TO BACK THEM UP! DO IT!!!

Also, if you have a specific task you would like to perform with PubEdit, but my tutorial didn't explain it well enough for you, please let me know.

Last edited by gotmilk8437; 07-31-2009 at 04:38 PM.
gotmilk8437 is offline   Reply With Quote
Thanked by :

RaGEZONE sponsored advertisment:
Old 06-05-2009   #2 (permalink)
Newbie
 
Rank: Hobbit
Join Date: Jun 2009
Posts: 1
Thanked 0 Times in 0 Posts

Re: Setting Up and Endless Online Private Server

aww i did all right but i get meny of errors
bosiukaspt is offline   Reply With Quote

Endorsement
Old 06-05-2009   #3 (permalink)
RaGEZONER
 
gotmilk8437's Avatar
 
Rank: Hobbit
Join Date: Apr 2007
Posts: 77
Thanked 1 Time in 1 Post

Re: Setting Up and Endless Online Private Server

Originally Posted by bosiukaspt View Post
aww i did all right but i get meny of errors
What errors are you getting?

Did you mess around a lot in your config.ini (perhaps you put an unstable value for something)?
gotmilk8437 is offline   Reply With Quote

Endorsement

Old 06-06-2009   #4 (permalink)
Newbie
 
Rank: Hobbit
Join Date: Jun 2009
Posts: 14
Thanked 0 Times in 0 Posts

Re: Setting Up and Endless Online Private Server

Doesn't work... everytime ii click eoserv it just keeps telling me that it cant be configured or that theres an error with the file confi.local ini. ii dont even have the file config.ini o_o all ii have is. 'config' ? Lol o_o unless thats the same thing as config.ini.... but ii dont have config.local.ini.. so. x_x what do ii do ?!
Zoonar! is offline   Reply With Quote
Old 06-06-2009   #5 (permalink)
Aka: קuяəέv¡l
 
exposed's Avatar
 
Rank: Member +
Join Date: Feb 2008
Location: Center of a Tos
Posts: 198
Thanked 1 Time in 1 Post

Re: Setting Up and Endless Online Private Server

o isnt this the fps rpg type game endless ages ?

just wondering

i might try to set this up
__________________

"Prepare to meet your doom (Damn the torpedoes -- full speed ahead!)"
exposed is offline   Reply With Quote
Old 06-06-2009   #6 (permalink)
Newbie
 
Rank: Hobbit
Join Date: Jun 2009
Posts: 14
Thanked 0 Times in 0 Posts

Re: Setting Up and Endless Online Private Server

endless-online? i'm pretty sure its a fps type game xD
Zoonar! is offline   Reply With Quote
Old 06-06-2009   #7 (permalink)
RaGEZONER
 
gotmilk8437's Avatar
 
Rank: Hobbit
Join Date: Apr 2007
Posts: 77
Thanked 1 Time in 1 Post

Re: Setting Up and Endless Online Private Server

Originally Posted by Zoonar! View Post
Doesn't work... everytime ii click eoserv it just keeps telling me that it cant be configured or that theres an error with the file confi.local ini. ii dont even have the file config.ini o_o all ii have is. 'config' ? Lol o_o unless thats the same thing as config.ini.... but ii dont have config.local.ini.. so. x_x what do ii do ?!
Config is config.ini, you just can't see the .ini, that's just the type of file it is.

Try running the eoserv debug first.

Go into your error.txt and see what errors are there.

P.S.

exposed

I don't think this is the game your thinking of. It's just a 2d mmorpg called Endless Online. Google it and you'll find the homepage.
gotmilk8437 is offline   Reply With Quote
Old 06-06-2009   #8 (permalink)
Newbie
 
Rank: Hobbit
Join Date: Jun 2009
Posts: 14
Thanked 0 Times in 0 Posts

Re: Setting Up and Endless Online Private Server

kai well, ii did the eoserv-debug nd then went into my error.txt nd it saiddd the following:

INCLUDEd configuration file not found: admin.local.ini
Warning: An NPC on map 182 at 15,25 is being placed by linear scan of spawn area
Error: NPC couldn't spawn anywhere valid!
Warning: An NPC on map 250 at 1***36 is being placed by linear scan of spawn area
Error: NPC couldn't spawn anywhere valid!
Warning: An NPC on map 250 at 1***36 is being placed by linear scan of spawn area
Error: NPC couldn't spawn anywhere valid!
A required table is missing. (Have you executed install.sql?)
no such table: accounts


Not quite sure what that means, or how i'm suppose to fix it. x_X
Zoonar! is offline   Reply With Quote
Old 06-07-2009   #9 (permalink)
Member
 
Tangerine's Avatar
 
Rank: Hobbit
Join Date: Jan 2009
Posts: 41
Thanked 0 Times in 0 Posts

Re: Setting Up and Endless Online Private Server

Well I did all the config-ing and stuff, but I got an error trying to open eoserv.exe

Screenie:




Help, please?
Tangerine is offline   Reply With Quote
Old 06-07-2009   #10 (permalink)
Newbie
 
Rank: Hobbit
Join Date: Jun 2009
Posts: 14
Thanked 0 Times in 0 Posts

Re: Setting Up and Endless Online Private Server

Originally Posted by Tangerine View Post
Well I did all the config-ing and stuff, but I got an error trying to open eoserv.exe

Screenie:




Help, please?

ii got the same problem! D: !!!!!!!!
Zoonar! is offline   Reply With Quote
Old 06-07-2009   #11 (permalink)
Newbie
 
Rank: Hobbit
Join Date: Jun 2009
Posts: 4
Thanked 0 Times in 0 Posts

Exclamation Re: Setting Up and Endless Online Private Server

ok just to start off saying im no expert and thats for sure ive been trying to get a EO server up forever i dont know ive tried time and time again but now i can at least get the server saying that its loaded npcs and items and maps and stuff all i did was change the ip on the config to 127.0.0.1 amd at the very end of config theres it sas INCLUDE = blah blah blah right well when u try to turn on eoserv.exe if you pay attention you will notice how it doesnt say INCLUDE ..Blah blah blah plz excuse my stupidity ..anyway it says INCLUDEd with a small D so i chnged that on the config file and thats how i got it to load the npcs and all that stuff but now im having a problem with actaully logging on to the server i have running on my computer it says (o/300) connections yes i have changed the ip in the endless configuration on the game itself to the ip 127.0.0.1 and when i run the client it shows that ip at the bottom left so theres no confusion about me knowing or not knowing that anyway when i click create account it doesnt do anything but beep once like it always does just before the menu comes up so i also try the play key it to only beeps and i cant connect the server doesnt show an incoming connection either so if you can tell me something i dont know which im sure is ALOT haha i would much appreciate it
metalhead87 is offline   Reply With Quote
Old 06-07-2009   #12 (permalink)
Newbie
 
Rank: Hobbit
Join Date: Jun 2009
Posts: 14
Thanked 0 Times in 0 Posts

Re: Setting Up and Endless Online Private Server

Originally Posted by metalhead87 View Post
ok just to start off saying im no expert and thats for sure ive been trying to get a EO server up forever i dont know ive tried time and time again but now i can at least get the server saying that its loaded npcs and items and maps and stuff all i did was change the ip on the config to 127.0.0.1 amd at the very end of config theres it sas INCLUDE = blah blah blah right well when u try to turn on eoserv.exe if you pay attention you will notice how it doesnt say INCLUDE ..Blah blah blah plz excuse my stupidity ..anyway it says INCLUDEd with a small D so i chnged that on the config file and thats how i got it to load the npcs and all that stuff but now im having a problem with actaully logging on to the server i have running on my computer it says (o/300) connections yes i have changed the ip in the endless configuration on the game itself to the ip 127.0.0.1 and when i run the client it shows that ip at the bottom left so theres no confusion about me knowing or not knowing that anyway when i click create account it doesnt do anything but beep once like it always does just before the menu comes up so i also try the play key it to only beeps and i cant connect the server doesnt show an incoming connection either so if you can tell me something i dont know which im sure is ALOT haha i would much appreciate it
kai, now i'm where yu are.. o_o'' hmm.
Zoonar! is offline   Reply With Quote
Old 06-07-2009   #13 (permalink)
Newbie
 
Rank: Hobbit
Join Date: Jun 2009
Posts: 4
Thanked 0 Times in 0 Posts

Re: Setting Up and Endless Online Private Server

i was trying to get Milks attention but i guess hes way afk its GRRR for me since ive been trying off and on through diff sited on how to get this going and for the first time im really close and he explained it so well i think he could help me out just a few more steps i wonder why it is i cant log onto a server im running from my own comp ...
metalhead87 is offline   Reply With Quote
Old 06-07-2009   #14 (permalink)
Newbie
 
Rank: Hobbit
Join Date: Jun 2009
Posts: 4
Thanked 0 Times in 0 Posts

Re: Setting Up and Endless Online Private Server

you know what nevermind i just shut it down and try to restart it and im getting nothing again pretty lame so idk maybe it just not worth all the hassel i thought it would have been cool to have something likethis but not if i have to reload it everytime i shut it down how dissapointing
metalhead87 is offline   Reply With Quote
Old 06-07-2009   #15 (permalink)
Newbie
 
Rank: Hobbit
Join Date: Jun 2009
Posts: 14
Thanked 0 Times in 0 Posts

Re: Setting Up and Endless Online Private Server

its probably the smallest thing thats making it not work... @_@ agh. Milks offline now... :/ great
Zoonar! is offline   Reply With Quote
Old 06-07-2009   #16 (permalink)
Newbie
 
Rank: Hobbit
Join Date: Jun 2009
Posts: 4
Thanked 0 Times in 0 Posts

Re: Setting Up and Endless Online Private Server

OMG man i did a little twitching with this config file and its up again but i still cant connect to it whats the deal with this thing i so want to get into this ARGhh i guess im going to have to google around for another 100years to figure the other half of this out
metalhead87 is offline   Reply With Quote
Old 06-07-2009   #17 (permalink)
YEy i has custom title^_^
 
zarut's Avatar
 
Rank: Subscriber
Join Date: Sep 2006
Location: Land of eternal
Posts: 297
Thanked 7 Times in 4 Posts

Re: Setting Up and Endless Online Private Server

the error could be that the server only supports 32bit system or other way around..
__________________
Originally Posted by Emogon;
"strength....."
"honor......"
"wisdom...."
"i see them in you...."
"what brings you to my land of emos...?"
zarut is offline   Reply With Quote
Old 06-07-2009   #18 (permalink)
Newbie
 
Rank: Hobbit
Join Date: Jun 2009
Posts: 14
Thanked 0 Times in 0 Posts

Re: Setting Up and Endless Online Private Server

Originally Posted by zarut View Post
the error could be that the server only supports 32bit system or other way around..
which means...? ._.''
Zoonar! is offline   Reply With Quote
Old 06-07-2009   #19 (permalink)
YEy i has custom title^_^
 
zarut's Avatar
 
Rank: Subscriber
Join Date: Sep 2006
Location: Land of eternal
Posts: 297
Thanked 7 Times in 4 Posts

Re: Setting Up and Endless Online Private Server

you can run it only on 32bit OS like windows xp 32bit or windows vista 32bit not on 64bit system what the news are i know few programs that crashes when you try run it on 64bit system but works fine at 32

nvm... it seems to miss file config.local.ini so if you rename the config.ini to that it will work just gives errors so you make two of them it will start, no error but close very soon after dunno if it creates server for you since i dont have endless online
__________________
Originally Posted by Emogon;
"strength....."
"honor......"
"wisdom...."
"i see them in you...."
"what brings you to my land of emos...?"
zarut is offline   Reply With Quote
Old 06-09-2009   #20 (permalink)
Newbie
 
Rank: Hobbit
Join Date: Jun 2009
Posts: 5
Thanked 0 Times in 0 Posts

Re: Setting Up and Endless Online Private Server

I got the same error =/ cant find "config.local.ini" if anyone firgures it out let me know thanks
timetoroll is offline   Reply With Quote
Old 06-09-2009   #21 (permalink)
Monster Member
 
Rank: Member
Join Date: Dec 2006
Posts: 183
Thanked 3 Times in 3 Posts

Re: Setting Up and Endless Online Private Server

fuck that man i am runing it on a x64 os and i'd like to say eo is too good for this site... let sausage handle his own shit.
TheLaughingMan is online now   Reply With Quote
Old 06-10-2009   #22 (permalink)
RaGEZONER
 
gotmilk8437's Avatar
 
Rank: Hobbit
Join Date: Apr 2007
Posts: 77
Thanked 1 Time in 1 Post

Re: Setting Up and Endless Online Private Server

Guys.

Try going into your config.ini again.

Go to ## SLN ## and change SLN = 1 to SLN = 0.

Try that.

As for the "can't find config.local.ini" don't worry about that.
gotmilk8437 is offline   Reply With Quote
Old 06-10-2009   #23 (permalink)
Member
 
Tangerine's Avatar
 
Rank: Hobbit
Join Date: Jan 2009
Posts: 41
Thanked 0 Times in 0 Posts

Re: Setting Up and Endless Online Private Server

Originally Posted by gotmilk8437 View Post
Guys.

Try going into your config.ini again.

Go to ## SLN ## and change SLN = 1 to SLN = 0.

Try that.

As for the "can't find config.local.ini" don't worry about that.
Hmm, I tried that but I still get the error. And it closes right away. =P
Tangerine is offline   Reply With Quote
Old 06-10-2009   #24 (permalink)
Newbie
 
Rank: Hobbit
Join Date: Jun 2009
Posts: 7
Thanked 0 Times in 0 Posts

Angry Re: Setting Up and Endless Online Private Server

Originally Posted by Tangerine View Post
Hmm, I tried that but I still get the error. And it closes right away. =P
thats exactly what it does to me, when you open the command prompt with eoserv on it, it closes right away..could you plz fix it i've been trying all day to make a server
bradzombie2521 is offline   Reply With Quote
Old 06-10-2009   #25 (permalink)
RaGEZONER
 
gotmilk8437's Avatar
 
Rank: Hobbit
Join Date: Apr 2007
Posts: 77
Thanked 1 Time in 1 Post

Re: Setting Up and Endless Online Private Server

If it closes as fast as it opens, that's not an error and there's nothing for me to fix...

That's your windows system closing your DOS windows. It's really gay and happens to all of us but I have found a fix.

Right click anywhere on your desktop and go to New and then hit Shortcut.

Browse for your eoserv.exe file.

Save the shortcut as something like EOServ Shortcut or whatever you want.

Now right click your shortcut and hit properties.

Now for target it will have the path to your shortcut in parentheses so for this example I'll use "EOServRev115\eoserv.exe"

Now before the first " put a space and add this in: C:\Windows\System32\cmd.exe\ /K

So it's now: C:\Windows\System32\cmd.exe /K "EOServRev115\eoserv.exe"
You MUST include the spaces, it's the most important part!
Also, don't confuse the slashes! The /K is the only forward slash the rest are \.

Now run your shortcut when you want to put your server online and it should run fine.


Again guys, do not worry about that config.local.ini not found, even I still get that and run with no problems.
gotmilk8437 is offline   Reply With Quote
 

Bookmarks

Thread Tools




Translated by Google
Albanian Arabic Belarusian Bulgarian Catalan Chinese Croatian Czech Danish Dutch English Estonian Filipino Finnish French Galician German Greek Hebrew Hindi Hungarian Icelandic Indonesian Italian Japanese Korean Latvian Lithuanian Maltese Norwegian Polish Portuguese Romanian Russian Serbian Slovak Slovenian Spanish Swedish Taiwanese Thai Turkish Ukrainian Vietnamese
no new posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274