Dropitemrule table

01/02/2012 23:04 karnyge#1
Ok i read through various posts, and my question wasnt covered.

So heres my problem.
I have 5 different ID numbers for the various Exp balls and packs of them. I have tried adding each number to the cq_dropitemrule. Every time i do it says its an invalid integer.

Question is-
How do i add balls or packs to drops?

Ok I have fixed it now.
What was happening was using copy and paste made the pasted numbers invisible. I dont know why that happened lol. But its sorted.
01/03/2012 17:18 WolvesMaster#2
i really can't recognize your problem exactly but try this small guide

INSERT INTO `cq_dropitemrule` VALUES ('406', '7110', '0001', '5000000', '1021266', '0', '0', '1021266', '0', '0', '1021266', '0', '0', '1021266', '0', '0', '1021266', '0', '0');

Dropitemrule ID (anything you want since it's not exist before)
Monsterype ID
Drop chance
Item IDs ( balls or packs IDs )

add this action query to make the monster drop the items you want

INSERT INTO `cq_action` VALUES ('100000063','0','0','801','0','dropitem 1021266') ;

Item ID
Action ID
Type 801 : For Dropping

and go to in cq_monstertype and search for your monster id like 7110 and look for action field and write that action in it 100000063 and it will drop the items for sure


Regards
01/03/2012 22:36 karnyge#3
[QUOTE=karnyge;14620599]. Every time i do it says its an invalid integer.
QUOTE]

I think that says what the issue was. But as a edited in- ITS SOLVED.