Cloudsplitter/Ruinator SQL mix up

Post Reply
x8jason8x
Posts: 44
Joined: Mon Jan 15, 2018 9:20 am

Cloudsplitter/Ruinator SQL mix up

Post by x8jason8x » Wed Apr 25, 2018 4:00 pm

Idk if I'm putting this in the right forum, but I was coding some custom stuff when I came across this:

Code: Select all

INSERT INTO `weapon_skills` VALUES (76,'cloudsplitter',0x01000000000000000100000000000000000000000000,5,300,64,58,2000,5,1,14,12,0,1,0);
INSERT INTO `weapon_skills` VALUES (77,'ruinator',0x01000000000000010100010000000000000000000001,5,357,0,59,2000,5,1,10,6,0,1,39);
Ruinator is a merit WS, and Cloudsplitter is a learned WS (aside from equipped) so skill should be 0 on it, and the WS unlock IDs need switched, like so:

Code: Select all

INSERT INTO `weapon_skills` VALUES (76,'cloudsplitter',0x01000000000000000100000000000000000000000000,5,0,64,58,2000,5,1,14,12,0,1,39);
INSERT INTO `weapon_skills` VALUES (77,'ruinator',0x01000000000000010100010000000000000000000001,5,357,0,59,2000,5,1,10,6,0,1,0);
Thought I'd share this for anyone who may have had issues regarding it, if anyone, and for correction in a later version.

Delaide
Posts: 478
Joined: Sat Jun 14, 2014 8:58 am

Re: Cloudsplitter/Ruinator SQL mix up

Post by Delaide » Sat May 12, 2018 3:06 am

Recommend if you know how to change, submit to the github. If you do not know how to operate git repositories, ask around, then submit a correction to the repository. Or you can just file a bug: https://github.com/DarkstarProject/darkstar/issues

Post Reply