Go Back   EQEmulator Home > EQEmulator Forums > Support > Support::Windows Servers

Support::Windows Servers Support forum for Windows EQEMu users.

Reply
 
Thread Tools Display Modes
  #1  
Old 03-14-2012, 04:29 PM
Serryon123
Sarnak
 
Join Date: May 2009
Location: nj
Posts: 39
Default No pets?

I had a question wondering if anyone had a fix, i have a fresh db and sourced everything in specifically the pets table, yet whenever I try to summon ANY kind of pet, theres no data found for them. Any ideas? Ive checked the spells specifically and the db and have actually summoned the npc ID the pet is supposed to be but the spells wont summon them. Thanks!
Reply With Quote
  #2  
Old 03-14-2012, 07:34 PM
lerxst2112
Demi-God
 
Join Date: Aug 2010
Posts: 1,742
Default

Did you source all of the required updates in trunk\EQEmuServer\utils\sql\svn?
Reply With Quote
  #3  
Old 03-14-2012, 07:51 PM
Serryon123
Sarnak
 
Join Date: May 2009
Location: nj
Posts: 39
Default

I believe so. I can try and just re source everything, but is there a faster then doing "source C:\blah\blah\blah\blah\blah\x.sql" for EVERY thing in there?
Reply With Quote
  #4  
Old 03-14-2012, 08:02 PM
Akkadius's Avatar
Akkadius
Administrator
 
Join Date: Feb 2009
Location: MN
Posts: 2,072
Default

Quote:
Originally Posted by Serryon123 View Post
I believe so. I can try and just re source everything, but is there a faster then doing "source C:\blah\blah\blah\blah\blah\x.sql" for EVERY thing in there?
The update has the revision number appended to the .sql script, you'll need to source everything from the last revision you believe you were using last.
Reply With Quote
  #5  
Old 03-14-2012, 08:04 PM
Serryon123
Sarnak
 
Join Date: May 2009
Location: nj
Posts: 39
Default

Ok great thanks im going to do that then. 1 more thing, would u be able to tell me how to change my starting zone and locs all at once? trheres like 345 rows cut and pasting suuucks!
Reply With Quote
  #6  
Old 03-14-2012, 08:12 PM
Akkadius's Avatar
Akkadius
Administrator
 
Join Date: Feb 2009
Location: MN
Posts: 2,072
Default

Quote:
Originally Posted by Serryon123 View Post
Ok great thanks im going to do that then. 1 more thing, would u be able to tell me how to change my starting zone and locs all at once? trheres like 345 rows cut and pasting suuucks!
You can change your starting zone for Titanium clients in the 'variables' table, you have to add an entry called 'startzone' and then in the value is your short name of the zone.

For SoF clients and up you change it in the `rules_values` table with the rule name of 'World:SoFStartZoneID', you set the value to be the zone ID name.

Otherwise if you really do want to change all of the values in the `start_zones` table you can do something like this:

Code:
UPDATE `start_zones` SET `x` = somevalue, `y` = somevalue, `z` = somevalue, `id` = somevalue;
Reply With Quote
  #7  
Old 03-14-2012, 08:14 PM
Serryon123
Sarnak
 
Join Date: May 2009
Location: nj
Posts: 39
Default

Ah cool thanks a lot Akka. Yea man I already had this update sourced its all duplicate entrys.. So any ideas on the pets? My server has leveling content i REALLY dont want to have to make every pet in the game by hand >_< haha
Reply With Quote
  #8  
Old 03-14-2012, 08:16 PM
Akkadius's Avatar
Akkadius
Administrator
 
Join Date: Feb 2009
Location: MN
Posts: 2,072
Default

Quote:
Originally Posted by Serryon123 View Post
Ah cool thanks a lot Akka. Yea man I already had this update sourced its all duplicate entrys.. So any ideas on the pets? My server has leveling content i REALLY dont want to have to make every pet in the game by hand >_< haha
Any pets that PEQ doesn't have in the database you will have to make yourself. There's nothing that automatically makes your pets... right now anyways
Reply With Quote
  #9  
Old 03-14-2012, 08:26 PM
Serryon123
Sarnak
 
Join Date: May 2009
Location: nj
Posts: 39
Default

Dam! Ok thanks, and btw that starter zone query u gave me we figured out and worked like a charm thanks again!
Reply With Quote
  #10  
Old 03-14-2012, 08:29 PM
Akkadius's Avatar
Akkadius
Administrator
 
Join Date: Feb 2009
Location: MN
Posts: 2,072
Default

Quote:
Originally Posted by Serryon123 View Post
Dam! Ok thanks, and btw that starter zone query u gave me we figured out and worked like a charm thanks again!
Yep. No problem
Reply With Quote
  #11  
Old 03-14-2012, 08:55 PM
Jeknos
Fire Beetle
 
Join Date: Oct 2010
Posts: 10
Default

Quote:
Originally Posted by Serryon123 View Post
I had a question wondering if anyone had a fix, i have a fresh db and sourced everything in specifically the pets table, yet whenever I try to summon ANY kind of pet, theres no data found for them. Any ideas? Ive checked the spells specifically and the db and have actually summoned the npc ID the pet is supposed to be but the spells wont summon them. Thanks!
If I'm reading this correctly, you only copied in the pets table? Pets are linked to npc_types so you won't be able to summon one without having the pet in npc_types as well.
Reply With Quote
  #12  
Old 03-14-2012, 09:03 PM
Serryon123
Sarnak
 
Join Date: May 2009
Location: nj
Posts: 39
Default

Im pretty sure i did it all, but ill try that as well and post back ty!
Reply With Quote
  #13  
Old 03-14-2012, 09:08 PM
Serryon123
Sarnak
 
Join Date: May 2009
Location: nj
Posts: 39
Default

I cant find a solid just npc_types.sql file anywhere in my trunk folder, the other 1s that have some type of npc in the file name ive sourced
Reply With Quote
  #14  
Old 03-14-2012, 11:17 PM
lerxst2112
Demi-God
 
Join Date: Aug 2010
Posts: 1,742
Default

You need to source the base peq database, this includes all the tables for npcs, pets, etc.

Then you source load_player.sql, and if you use bots, load_bots.sql

Then you source all of the required updates newer than the peq database version, and any optional updates newer than the peq database version that you're interested in.

At no time do you source specific individual tables.
Reply With Quote
  #15  
Old 03-15-2012, 02:59 AM
Serryon123
Sarnak
 
Join Date: May 2009
Location: nj
Posts: 39
Default

*sigh* yea i did all that and I just got the most updated rev n sourced it in rebooted server tried to cast and STILL no pets.. this is frustrating because i dont want to start all our hard work over.. Then again id prefer not to make every classes pet >_<
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

   

All times are GMT -4. The time now is 05:12 AM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3