Search found 5 matches

by dacrybabysuck
Tue Jan 05, 2016 10:55 pm
Forum: General Chat
Topic: Just Dropping By
Replies: 2
Views: 3537

Re: Just Dropping By

He's still alive. It's a been a while!
by dacrybabysuck
Sat Jun 20, 2015 12:38 pm
Forum: Bugs
Topic: Issues with Dedication wearing off
Replies: 4
Views: 5271

Re: Issues with Dedication wearing off

A recent pull request updated the exp bands to reflect retail. The emperor band now grants 30k exp bonus as opposed to 3k. That's likely what you are experiencing.
by dacrybabysuck
Tue Apr 14, 2015 9:56 am
Forum: Custom Applications and Tools
Topic: Full database update batch file
Replies: 2
Views: 4569

Re: Full database update batch file

An easy way to check for a table is a with a query like "select table_name from information_schema.tables where table_name = 'chars'"; It will either return the table name if it's there or not if it doesn't exist. EDIT: to be safer in the where clause you could also append the schema_name='dspdb' if...
by dacrybabysuck
Sun Nov 30, 2014 2:40 pm
Forum: Contributing
Topic: Holidays 2014 contest
Replies: 25
Views: 20039

Re: Holidays 2014 contest

I need no reward and will gladly spend every waking moment working on navmeshes. I'm still confused on how to export the maps properly. Is there documentation somewhere on how to do that? I thought I read through the entire forum post on it, but it didn't seem like there were clear instructions on w...
by dacrybabysuck
Fri Sep 05, 2014 9:47 pm
Forum: Server Setup & Guides
Topic: Update ZoneIP SQL File completes unsuccessfully
Replies: 9
Views: 9936

Re: Update ZoneIP SQL File completes unsuccessfully

To be honest, the delimiter syntax may not even be needed if you aren't using the mysql client directly. This totally could be a failure of the client. Since there is a semicolon in the proc the command line client requires the delimiter to be changed so it doesn't prematurely kill the script. My ap...