Client/Server confusion.

Post Reply
robos91
Posts: 4
Joined: Thu Nov 15, 2012 8:14 pm

Client/Server confusion.

Post by robos91 » Sat Aug 15, 2015 10:28 am

I just wanted to make sure that the expansions on the right are only supposed to have the first 4 Highlighted
Attachments
ffxi-2.png
Last edited by robos91 on Sat Aug 15, 2015 10:17 pm, edited 1 time in total.

Desufire
Posts: 162
Joined: Sun Feb 22, 2015 2:58 am

Re: Client confusion.

Post by Desufire » Sat Aug 15, 2015 2:38 pm

You can change that in the login script in the conf folder. Those 4 are default and it makes no difference to the game if they're lit or not.

robos91
Posts: 4
Joined: Thu Nov 15, 2012 8:14 pm

Re: Client confusion.

Post by robos91 » Sat Aug 15, 2015 3:52 pm

Thank you for the quick response. Is it normal for the scroll of dia to cause a crash?

robos91
Posts: 4
Joined: Thu Nov 15, 2012 8:14 pm

Re: Client confusion.

Post by robos91 » Sat Aug 15, 2015 10:16 pm

scratch that all combat causes a server crash

Desufire
Posts: 162
Joined: Sun Feb 22, 2015 2:58 am

Re: Client/Server confusion.

Post by Desufire » Sun Aug 16, 2015 2:54 pm

My server is fine but I haven't updated for a week. Make sure you're updated fully. If you are then a recent update may have an issue that they're fixing. It happens. Look on the github to see if it's been reported /fixed.

User avatar
tabitaru
Posts: 99
Joined: Sun Apr 12, 2015 4:49 am

Re: Client/Server confusion.

Post by tabitaru » Mon Aug 17, 2015 4:20 am

!
Last edited by tabitaru on Sun Oct 18, 2015 7:12 am, edited 1 time in total.

Spirburg
Posts: 16
Joined: Sat Aug 29, 2015 9:26 pm

Re: Client/Server confusion.

Post by Spirburg » Mon Aug 31, 2015 7:44 pm

Is there ways to make these expansions work?

Delaide
Posts: 478
Joined: Sat Jun 14, 2014 8:58 am

Re: Client/Server confusion.

Post by Delaide » Mon Aug 31, 2015 8:41 pm

https://github.com/DarkstarProject/dark ... kstar.conf
Change this file here:

Code: Select all

expansions: 30
To:

Code: Select all

expansions: 4094
This will allow you to see all those light up.

https://github.com/DarkstarProject/dark ... ttings.lua
Change this file here:

Code: Select all

ENABLE_COP     = 0;
ENABLE_TOAU    = 0;
ENABLE_WOTG    = 0;
ENABLE_ACP     = 0;
ENABLE_AMK     = 0;
ENABLE_ASA     = 0;
ENABLE_ABYSSEA = 0;
ENABLE_SOA     = 0;
To:

Code: Select all

ENABLE_COP     = 1;
ENABLE_TOAU    = 1;
ENABLE_WOTG    = 1;
ENABLE_ACP     = 1;
ENABLE_AMK     = 1;
ENABLE_ASA     = 1;
ENABLE_ABYSSEA = 1;
ENABLE_SOA     = 1;
This will allow you to do things that are restricted to the specific expansion (Some things will work even if the expansion is not selected)

Post Reply