View Single Post
  #3  
Old 07-21-2021, 02:02 AM
Splose
Banned
 
Join Date: Apr 2014
Posts: 279
Default

Quote:
Originally Posted by Hengishammer View Post
This spell will not scribe even though it clearly shows it can be at level 28.

It tells me it is available at level 36.

I am using ROF2 client.

Thanks!
Quote:
Originally Posted by Huppy View Post
Code:
UPDATE spells_new SET classes15 = 28 WHERE id = 12;
The reason is because the spells_us.txt in your EverQuest directory has it set to level 36. So your client thinks it is level 36. After running the query that Huppy posted above you need to use the export_client_files.exe to grab the new spells_us.txt (from the export folder) and overwrite your current one in the EQ directory.

It is possible that it is already set to level 28 in the DB so his query might not do anything, definitely run it anyway though if you want it to be level 28. Only saying this because mine is set to level 30 and Alla has it at 36, if you're talking about Yekan's Recovery.



The query I used to get this info ^
Code:
select id,name,classes15 from spells_new where name like '%Yekan\'\s Recovery%';
** I forgot to mention that anyone else playing on your server will need the updated spell file as well. And you will need to update and distribute the spell file for ~90% of changes.
Reply With Quote