Register for your free account! | Forgot your password?

You last visited: Today at 16:21

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



lvl up item

Discussion on lvl up item within the EO PServer Hosting forum part of the Eudemons Online category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Jul 2010
Posts: 134
Received Thanks: 38
lvl up item

can someone tell me the query how to get up 1 or 5 lvl potion
track19 is offline  
Old 12/10/2010, 09:08   #2
 
San-Goku's Avatar
 
elite*gold: 0
Join Date: Sep 2010
Posts: 340
Received Thanks: 201
why wont u use search button

Code:
-- ----------------------------
-- cq_itemtype
-- ----------------------------


INSERT INTO `cq_itemtype` VALUES ('742000', 'WarSoul+1', '0', '0', '0', '0', '0', '0', '0', '0', '28', '0', '0', '15000000', '0', '0', '0', '0', '0', '0', '0', '1', '1', '0', '0', '0', '0', '0', '0', '0', '0', '00', '00', '00', '0000', '0000', '0', '0', '100000', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `cq_itemtype` VALUES ('742001', 'WarSoul+5', '0', '0', '0', '0', '0', '0', '0', '0', '28', '0', '0', '15000005', '0', '0', '0', '0', '0', '0', '0', '1', '1', '0', '0', '0', '0', '0', '0', '0', '0', '00', '00', '00', '0000', '0000', '0', '0', '500000', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');


-- ----------------------------
-- cq_action
-- ----------------------------


delete from cq_action where id >= 15000000 and id <= 150000009;
INSERT INTO `cq_action` VALUES ('15000000', '15000004', '15000001', '1001', '0', 'level == 255');
INSERT INTO `cq_action` VALUES ('15000001', '15000002', '0', '1001', '0', 'level += 1');
INSERT INTO `cq_action` VALUES ('15000002', '15000003', '0', '0502', '742000', '0');
INSERT INTO `cq_action` VALUES ('15000003', '0', '0', '126', '0', 'Congratulations,~you~gain~1~extra~level!');
INSERT INTO `cq_action` VALUES ('15000004', '0', '0', '126', '0', 'You~have~reached~max~Level!!');
INSERT INTO `cq_action` VALUES ('15000005', '15000009', '15000006', '1001', '0', 'level == 255 level == 251 level == 251 level == 251 level == 251');
INSERT INTO `cq_action` VALUES ('15000006', '15000007', '0', '1001', '0', 'level += 5');
INSERT INTO `cq_action` VALUES ('15000007', '15000008', '0', '0502', '742001', '0');
INSERT INTO `cq_action` VALUES ('15000008', '0', '0', '126', '0', 'Congratulations,~you~gain~5~extra~levels!');
INSERT INTO `cq_action` VALUES ('15000009', '0', '0', '126', '0', 'Your~level~almost~max.~Please~use~WarSoul+1l!!');


-- ----------------------------
-- Add in itemtype.dat id 742000 and 742001 and ur done.
-- ----------------------------
zzzzzzzzzzzzzzz
San-Goku is offline  
Thanks
1 User
Old 12/10/2010, 09:10   #3
 
~Sword~Stalker~.'s Avatar
 
elite*gold: 0
Join Date: Dec 2009
Posts: 1,784
Received Thanks: 1,056
Quote:
Originally Posted by track19 View Post
can someone tell me the query how to get up 1 or 5 lvl potion
Query :

Code:
-- ----------------------------
-- cq_itemtype
-- ----------------------------


INSERT INTO `cq_itemtype` VALUES ('742000', 'WarSoul+1', '0', '0', '0', '0', '0', '0', '0', '0', '28', '0', '0', '15000000', '0', '0', '0', '0', '0', '0', '0', '1', '1', '0', '0', '0', '0', '0', '0', '0', '0', '00', '00', '00', '0000', '0000', '0', '0', '100000', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `cq_itemtype` VALUES ('742001', 'WarSoul+5', '0', '0', '0', '0', '0', '0', '0', '0', '28', '0', '0', '15000005', '0', '0', '0', '0', '0', '0', '0', '1', '1', '0', '0', '0', '0', '0', '0', '0', '0', '00', '00', '00', '0000', '0000', '0', '0', '500000', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');


-- ----------------------------
-- cq_action
-- ----------------------------


delete from cq_action where id >= 15000000 and id <= 150000009;
INSERT INTO `cq_action` VALUES ('15000000', '15000004', '15000001', '1001', '0', 'level == 255');
INSERT INTO `cq_action` VALUES ('15000001', '15000002', '0', '1001', '0', 'level += 1');
INSERT INTO `cq_action` VALUES ('15000002', '15000003', '0', '0502', '742000', '0');
INSERT INTO `cq_action` VALUES ('15000003', '0', '0', '126', '0', 'Congratulations,~you~gain~1~extra~level!');
INSERT INTO `cq_action` VALUES ('15000004', '0', '0', '126', '0', 'You~have~reached~max~Level!!');
INSERT INTO `cq_action` VALUES ('15000005', '15000009', '15000006', '1001', '0', 'level == 255 level == 251 level == 251 level == 251 level == 251');
INSERT INTO `cq_action` VALUES ('15000006', '15000007', '0', '1001', '0', 'level += 5');
INSERT INTO `cq_action` VALUES ('15000007', '15000008', '0', '0502', '742001', '0');
INSERT INTO `cq_action` VALUES ('15000008', '0', '0', '126', '0', 'Congratulations,~you~gain~5~extra~levels!');
INSERT INTO `cq_action` VALUES ('15000009', '0', '0', '126', '0', 'Your~level~almost~max.~Please~use~WarSoul+1l!!');


-- ----------------------------
-- Add in itemtype.dat id 742000 and 742001 and ur done.
-- ----------------------------


and u need to go and download the file




Regards
~Sword~Stalker~. is offline  
Thanks
2 Users
Old 12/10/2010, 09:10   #4
 
elite*gold: 0
Join Date: Jul 2010
Posts: 134
Received Thanks: 38
do i have to add anything to client
track19 is offline  
Old 12/10/2010, 09:14   #5
 
San-Goku's Avatar
 
elite*gold: 0
Join Date: Sep 2010
Posts: 340
Received Thanks: 201
*** u so N**B



already release...zzzzzzz.............

USE SEARCH BUTTON
San-Goku is offline  
Thanks
1 User
Old 12/10/2010, 09:24   #6
 
elite*gold: 0
Join Date: Jul 2010
Posts: 134
Received Thanks: 38
oo sorry
track19 is offline  
Old 12/10/2010, 10:17   #7

 
magewarior2's Avatar
 
elite*gold: 20
Join Date: Mar 2008
Posts: 1,550
Received Thanks: 820
may i ask why this?

Code:
INSERT INTO `cq_action` VALUES ('15000005', '15000009', '15000006', '1001', '0', '[COLOR="Red"]level == 255 level == 251 level == 251 level == 251 level == 251[/COLOR]');
some 1 explains? I`ve never seen it before ....
magewarior2 is offline  
Old 12/11/2010, 00:34   #8
 
elite*gold: 0
Join Date: Mar 2010
Posts: 179
Received Thanks: 39
good work thanks
alxandr2 is offline  
Old 12/11/2010, 23:47   #9
 
T.h.u.n.d.e.r's Avatar
 
elite*gold: 0
Join Date: Mar 2010
Posts: 378
Received Thanks: 133
Quote:
Originally Posted by magewarior2 View Post
may i ask why this?

Code:
INSERT INTO `cq_action` VALUES ('15000005', '15000009', '15000006', '1001', '0', '[COLOR="Red"]level == 255 level == 251 level == 251 level == 251 level == 251[/COLOR]');
some 1 explains? I`ve never seen it before ....
This would help in +5 lvls potion and this mean thats you cant use this item in this lvls which is 255 .254 .253 .252 and 251 which mean you can use it in all existing lvls but cant with those lvls apove
T.h.u.n.d.e.r is offline  
Thanks
1 User
Old 12/13/2010, 11:36   #10

 
magewarior2's Avatar
 
elite*gold: 20
Join Date: Mar 2008
Posts: 1,550
Received Thanks: 820
so why not use | > 251 | ???
magewarior2 is offline  
Old 12/13/2010, 19:13   #11
 
T.h.u.n.d.e.r's Avatar
 
elite*gold: 0
Join Date: Mar 2010
Posts: 378
Received Thanks: 133
Quote:
Originally Posted by magewarior2 View Post
so why not use | > 251 | ???
Yup this is easier than the one apove also have the same effect can be used under this lvl , every one has his own style
T.h.u.n.d.e.r is offline  
Reply


Similar Threads Similar Threads
[Suche] Komplette item.eix/epk, icon.eix/epk, item proto und item list
12/25/2010 - Metin2 Private Server - 6 Replies
Hey =) Wie die Überschrift schon sagt, suche ich eine komplette item.eix/epk, icon.eix/epk, item proto und item list am liebsten noch von den Waffen von .darki und den ganzen neuen Rüstungen/Schilden/Helmen, da ich überhaupt nicht weiß wie man dass zB mit der item proto macht und wenn ich sie einfach nur ersetze, wie zB durch die "Waffen" item proto von .darki sind die ganzen neuen Rüstungen weg .... Ich hoffe irgendjemand könnte das machen, weil es bestimmt nicht nur für mich hilfreich ist...
[Request]How to Change Item Colour or selected item when use lootalarm
05/14/2010 - 12Sky2 - 0 Replies
ex1. item is rare colour i want to change to elite colour. ex2. item is rare but i don't want it then no alarm.
ProMt2.eu free P Server with all item over 80 e withot item shop it's the best
01/21/2010 - Metin2 Private Server - 6 Replies
***** new private server on 24/24 armour lil 66+9 free all item over 80 for free in the npgs. hourse level 21 when you start the pg is level 78. yang unlimited with a bug... in this server you can have all. alse armour gm liv 50. all rate are 1000% register and play for free. There isn't the item shop all is for free here.



All times are GMT +1. The time now is 16:22.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.