Quote:
Originally Posted by karnyge
It is easier to ask for someone in here to write you a navicat query in order to correct this. Try and talk to Nukleus, Funhacker, Spongebox, or Eurion. They are the only ones I know who can give you a query for navicat.
Alternatively, and a whole lot easier, is to restore a back up of your database where you know you had the autoeps. It will mean you will lose a lot of other information, unless you can find the exact table(s) to restore. Backup the database before you restore, just in case. I would suggest you dont restore all the tables relevant to players and their accounts. (Ones like cq_account, cq_syndicate, cq_eudemon, etc.)
As for adding monsters try this-
[Only registered and activated users can see links. Click Here To Register...]
|
tnxs for saying the rest cannot write a Msql query..
--------------------------------------------------
I do not really get the problem but...
for adding auto eps to your new/old monsters follow this little guide
Code:
UPDATE cq_monstertype SET action = '[the cq_action id]' where id = [id of the monster];
or
UPDATE cq_monstertype SET action = '[the cq_action id]' where name = [exact name of the monster];
do not use the []
I prefer use the id of monsters.
so for example in your cq_action is standing
| id | id_next | id_nextfail | type | data | param |
| 6001 | 0 | 0 | 1001 | 0 | e_money += 900 |
ect..
your monsters id is "9898" named "testeud"
You have to
UPDATE cq_monstertype SET action = '6001' where id = 9898;
or
UPDATE cq_monstertype SET action = '6001' where name = testeud;
get it?
magewarior2