View Single Post
  #11  
Old 10-25-2011, 02:24 PM
Baruuk
Sarnak
 
Join Date: Aug 2005
Posts: 64
Default

Good tip. I'm almost there. I've updated to 2024 and now have that table in my database. That really will solve my problem. I could simply just delete the rows manually for other races other than Drakkin. However, I wanted to try a SQL statement but I'm getting a syntax error. Probably something simple:

DELETE * FROM 'char_create_combinations' where start_zone = 394 AND allocation_id < 94;

Strangely enough, a select statement of the same thing works fine:

SELECT * FROM `char_create_combinations` WHERE start_zone = 394 AND allocation_id < 94;

*** Nevermind - I realized I could simply use the SELECT statement above and then just delete the resultant rows.

Thoughts?
Reply With Quote