Search found 669 matches

by bluekirby0
Wed Aug 06, 2014 3:24 am
Forum: Scripting
Topic: Changing the look of a Chocobo Mount
Replies: 4
Views: 3877

Re: Changing the look of a Chocobo Mount

Chocobo model is part of animation 5, which means you cannot set a "look" value to change it as such. It is probably a sub-animation value that currently isn't being used on dsp. Feel free to tinker with it.
by bluekirby0
Wed Aug 06, 2014 3:19 am
Forum: Troubleshooting
Topic: How do I apply this patch?
Replies: 4
Views: 3656

Re: How do I apply this patch?

I would honestly recommend trying to manually apply the patch first. If you find that too difficult to do, then the patch has probably been made irrelevant by more recent changes and will require some consideration to re-implement.
by bluekirby0
Wed Aug 06, 2014 3:17 am
Forum: Troubleshooting
Topic: Gameserver error
Replies: 5
Views: 4061

Re: Gameserver error

HKEY_LOCAL_MACHINE\SOFTWARE\[Wow6432Node\]PlayOnline[US|EU]\InstallFolder "0001" has your install path for FFXI. Wow6432Node is only for users of 64-bit windows You should find ONE of PlayOnline PlayOnlineUS or PlayOnlineEU depending on what version of the client you installed. If you have more than...
by bluekirby0
Sun Aug 03, 2014 1:22 pm
Forum: Server Setup & Guides
Topic: DB Error - MySQL Server Has Gone Away
Replies: 5
Views: 4960

Re: DB Error - MySQL Server Has Gone Away

You can also configure your mysql server to be more forgiving about timeouts to try to prevent the connection loss in the first place (at some significant performance penalty when the server is used by many programs).
by bluekirby0
Sun Aug 03, 2014 1:20 pm
Forum: Server Setup & Guides
Topic: New
Replies: 24
Views: 12807

Re: New

Home/Workgroup makes zero difference. 1)What you need to do is close your server, go back to the zoneip section in the setup guide, and set it to your LAN IP address instead of localhost. That will allow people on your internal network to connect. If you then need to run a client on the SAME system ...
by bluekirby0
Tue Jul 29, 2014 11:58 am
Forum: Server Setup & Guides
Topic: Adding Items?
Replies: 5
Views: 4586

Re: Adding Items?

Changing the item name in the database does NOT do what you think it does. Item names are totally 100% client-side. Changing the name in the database changes the name of the script the server tries to execute when an item is equipped or used.
by bluekirby0
Mon Jul 28, 2014 7:03 pm
Forum: Server Setup & Guides
Topic: Adding Items?
Replies: 5
Views: 4586

Re: Adding Items?

You cannot add an arbitrary item. The client will not know how to handle it. You must use an existing item id and you cannot change things like whether something is equippable without creating more problems. You can find an itemid with polutils or using ffxiah.com.
by bluekirby0
Fri Jul 25, 2014 4:20 pm
Forum: General Chat
Topic: Aegis Question
Replies: 6
Views: 4337

Re: Aegis Question

I could look it up, but i seem to recall the amount being reduced differently than other MDT items when it was implemented specifically to avoid the cap altogether.
by bluekirby0
Thu Jul 24, 2014 1:35 am
Forum: Public Servers
Topic: About the "other" DarkStar official server...
Replies: 26
Views: 16444

Re: About the "other" DarkStar official server...

If everyone playing is on the LAN then you are better off using the LAN IP. Otherwise you will have to hairpin everyone in unless your router supports hairpinning on its own (98% don't because of how NAT routers work).
by bluekirby0
Wed Jul 23, 2014 2:24 pm
Forum: Scripting
Topic: Bastok Mission 9-1
Replies: 16
Views: 9651

Re: Bastok Mission 9-1

Would also recommend you only "get" the var once per trigger action and store it in a local variable. The way you have it right now the DB can be queried 4 times to do the exact same thing, and generally will be when someone triggers the NPC with none of the quest requirements active. DB transaction...