im in big trouble Help [cq_action]

05/17/2011 05:07 shadowkiller990#1
Code:
900001025	900001000	900001026	1001	0	level > 160
900001026	900001027	0	120	0	0
900001027	900001028	0	101	0	Sorry~Your~Level~Is~To~Low
900001028	4000000	0	102	0	Okay. 0
its not workign im using it for custom exp balls,

if player is lower then 160 then it says sorry you level is to low but if there over 160 they shld open it but big problem nothing works lol if there over level 160 it brings up the message and the other problem is it dosent open the exp ball box it skips the id 900001000 i cant figure this out i tried everything lol
05/17/2011 05:12 Jack Sparrow#2
I suggest you to take a look at this and u may find the problem or u can just use it and change the levels
all credits goes to Nukleuz
[Only registered and activated users can see links. Click Here To Register...]
05/17/2011 05:21 Eurion#3
The action type 1001's level setting can only be the following, (+=, ==, <)

I've fixed your issue up for you this time. Run these queries, and reload your actions.
Code:
DELETE FROM `cq_action` WHERE id >= 900001025 AND id <= 900001028;

INSERT INTO `cq_action` VALUES
('900001025', '900001026', '900001000', '1001', '0', 'level < 160'),
('900001026', '900001027', '0', '120', '0', '0'),
('900001027', '900001028', '0', '101', '0', 'Sorry~Your~Level~Is~To~Low'),
('900001028', '4000000', '0', '102', '0', 'Okay. 0');
05/17/2011 07:49 shadowkiller990#4
haha im so stupid haha easier way to do is on client side theres a little slot that says REG LEVEL haha im thinking to hard haha thanks again for ur help and support everyone
05/17/2011 07:52 Jack Sparrow#5
not really good idea if itis client side only since players can just skip that patch and use it still , make sure u edit the item at cq-itemtype too not just client side