Jump to content

Recommended Posts

  • Replies 3
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

Yes. I suggest to use in quests with biolog additional flags like pc.setqf("BiologDone", 1) (wich means the quest is done) at the end of mission so you could use query like this:

DELETE FROM `player`.`quest` WHERE `szName` LIKE "%Biolog%" OR  `szName` LIKE "%biolog%" AND `szState` = "BiologDone" AND `szValue` = 1;

There is also another way, probably you're using navicat, so running custom query like this one:

SELECT * FROM `player`.`quest`  WHERE `szName` LIKE "%Biolog%" OR  `szName` LIKE "%biolog%";

will show all quests related to "biolog" and you can simply select with your mouse records wich you want to delete and do it with simple DEL key stroke (preferable way)

Another think, any third party modifications on database should be done on killed "game" and "db" processes.

PS witam kolegę z Polski :)

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.