View Single Post
  #1  
Old 04-25-2020, 01:01 AM
keffie
Fire Beetle
 
Join Date: Jul 2014
Posts: 2
Default How to add a race/class combination?

My cousin and I are trying to modify a server for the first time to try and set up teams.
One of the things we wanted to do related to that was add new race/class combinations, to balance the teams.

We tried adding a row in the 'char_create_combinations' table, sort of like the person from this thread,
http://www.eqemulator.org/forums/showthread.php?t=36677

In our case, we tried adding a Half Elf Shadow Knight, this was the insert statement.

Code:
INSERT INTO `char_create_combinations` (`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`)
VALUES ( 36, 7, 5, 208, 1, 0);
It seemed like it inserted to the database successfully, but then on the character create screen we don't see the new option available.
Did we miss something, or maybe there is another step?

We're both using Titanium client, in case that makes a difference.
Reply With Quote