Quote:
Originally Posted by Calabeth
Ok I might be rather dumb on this Q and over looked the right thread using search and such.
But a couple things.
1. The guide is great, I got it up and am playing on it but I want to now have the server run on my one comp as it has more ram and less CPU power, while I play on the other comp which has alot better Cpu/ and almost as much ram.
Off to search some more and hopefully find my answer for this one.
2. Quest related file error. When I zone into Thurgadina I crash and get perl quest error from Lorekeeper E. I attempted to look at the lines it said was messed up but it seemed fine to my noobish attempts of figuring it out.
|
Calabeth,
for question number 1:
I run my eqemu on another machine here, this is my set up
on the "server" machine running the eqemu, it also has my database on it, lets say its ip is 10.10.10.10
my boot5zones.bat file looks like this, at lease the parts that get changed
start zoneperl . 10.10.10.10 8780 127.0.0.1
note: the [start zoneperl] might be [start zone] if your using the non-perl version
If your running the database on the same machine as the eqemu then the db.ini shouldn't need changing.
Next to update the database, for example i created an account called goober (hehe, really i did) if i wanted to be able to login using my goober account on a different machine, i would need to update the database with the following
lets say my pc i want to login with is at 10.10.10.11 then i would run the following to update the database
update account set minilogin_ip = '10.10.11.11' where name = 'goober';
if you want to dump your existing database you can use this:
mysqldump -u username -ppassword database_name > FILE.sql
then to import it on the other machine:
mysql -u username -ppassword database_name < FILE.sql
this file could be very big, might take a bit to import (fyi)
for question number 2:
sorry i dont know, just now getting started in messing with the quests, might try deleting the file for now /shrug
Hope that helps
vRandom