Register for your free account! | Forgot your password?

You last visited: Today at 17:10

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

Advertisement



help with items +255

Discussion on help with items +255 within the EO PServer Hosting forum part of the Eudemons Online category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Nov 2008
Posts: 295
Received Thanks: 9
help with items +255

i made items +255 with +255 elements
but boots dont have hp and another gears dont have def and atk

can any1 tell me how make hp at boots like 9999??
gege2900 is offline  
Old 05/17/2011, 13:22   #2
 
~Sword~Stalker~.'s Avatar
 
elite*gold: 0
Join Date: Dec 2009
Posts: 1,784
Received Thanks: 1,054
cq_item .. and u can change staff in cq_itemtype too .
~Sword~Stalker~. is offline  
Old 05/17/2011, 13:43   #3
 
elite*gold: 0
Join Date: Nov 2008
Posts: 295
Received Thanks: 9
where at cq_item coz cant find how make hp 9999
gege2900 is offline  
Old 05/17/2011, 15:03   #4
 
elite*gold: 0
Join Date: Nov 2010
Posts: 191
Received Thanks: 60
some db like mannq etc doesnt support +255 bonus .ex if u make +12 bonus it will show additional attack and defenses .then if u make +255 it will not show .i think revodb support +255 bonus .
40z10Q is offline  
Old 05/17/2011, 17:42   #5
 
Eurion's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 1,208
Received Thanks: 926
There are two parts to doing what you want. Client sided which the file is YourClient/ini/ItemAddition.ini and server sided which is cq_itemaddition. You can look at both of those and figure out what you need to do.


Examples would be


This will use the BlueCrestHelmet item.

ItemAddition.ini
Code:
;typeid level life attack_max attack_min defense mgcatk_max mgcatk_min magic_def dexterity dodge
          
111000 [color=red]1[/color] 0 0 0 4 0 0 3 0 0
111000 [color=red]2[/color] 0 0 0 8 0 0 5 0 0
111000 [color=red]3[/color] 0 0 0 13 0 0 8 0 0
111000 [color=red]4[/color] 0 0 0 17 0 0 11 0 0
111000 [color=red]5[/color] 0 0 0 21 0 0 13 0 0
111000 [color=red]6[/color] 0 0 0 25 0 0 16 0 0
111000 [color=red]7[/color] 0 0 0 29 0 0 19 0 0
111000 [color=red]8[/color] 0 0 0 34 0 0 21 0 0
111000 [color=red]9[/color] 0 0 0 42 0 0 27 0 0
111000 [color=red]10[/color] 0 0 0 50 0 0 32 0 0
111000 [color=red]11[/color] 0 0 0 63 0 0 41 0 0
111000 [color=red]12[/color] 0 0 0 84 0 0 54 0 0
The red is the bonus such as +1 +2 +3 +4 +5......


And for your cq_itemaddition it would be:
Code:
1864	111000	[color=red]1[/color]	0	0	0	4	0	0	3	0	0
1865	111000	[color=red]2[/color]	0	0	0	8	0	0	5	0	0
1866	111000	[color=red]3[/color]	0	0	0	13	0	0	8	0	0
1867	111000	[color=red]4[/color]	0	0	0	17	0	0	11	0	0
1868	111000	[color=red]5[/color]	0	0	0	21	0	0	13	0	0
1869	111000	[color=red]6[/color]	0	0	0	25	0	0	16	0	0
1870	111000	[color=red]7[/color]	0	0	0	29	0	0	19	0	0
1871	111000	[color=red]8[/color]	0	0	0	34	0	0	21	0	0
1872	111000	[color=red]9[/color]	0	0	0	42	0	0	27	0	0
2427	111000	[color=red]10[/color]	0	0	0	50	0	0	32	0	0
2670	111000	[color=red]11[/color]	0	0	0	63	0	0	41	0	0
2913	111000	[color=red]12[/color]	0	0	0	84	0	0	54	0	0
Here the red is the bonus as well. You can cross reference the .ini file with the database. It's quite easy. Say you wanted to add a new bonus of +13 to the items. Here's an example.

itemaddition.ini
Code:
111000 [color=red]13[/color] 0 0 0 [color=blue]90[/color] 0 0 [color=green]60[/color] 0 0
The red is the bonus which is +13. The blue is the defense which is 90, and the green is the magic defense which is 60.

For cq_itemaddition it would be:

Code:
4500	111000	[color=red]13[/color]	0	0	0	[color=blue]90[/color]	0	0	[color=green]60[/color]	0	0
Here again, red is the bonus (+13), blue is the defense (90), and green is the magic defense (60).

Hopefully you understand now.
Eurion is offline  
Thanks
2 Users
Old 05/18/2011, 16:46   #6
 
elite*gold: 0
Join Date: Nov 2008
Posts: 295
Received Thanks: 9
Quote:
1864 111000 1 0 0 0 4 0 0 3 0 0
1865 111000 2 0 0 0 8 0 0 5 0 0
1866 111000 3 0 0 0 13 0 0 8 0 0
1867 111000 4 0 0 0 17 0 0 11 0 0
1868 111000 5 0 0 0 21 0 0 13 0 0
1869 111000 6 0 0 0 25 0 0 16 0 0
1870 111000 7 0 0 0 29 0 0 19 0 0
1871 111000 8 0 0 0 34 0 0 21 0 0
1872 111000 9 0 0 0 42 0 0 27 0 0
2427 111000 10 0 0 0 50 0 0 32 0 0
2670 111000 11 0 0 0 63 0 0 41 0 0
2913 111000 12 0 0 0 84 0 0 54 0 0
at +13 put any another id or what?
gege2900 is offline  
Old 05/18/2011, 17:10   #7
 
elite*gold: 0
Join Date: Nov 2008
Posts: 295
Received Thanks: 9
ok i understand it now and thx verymuch bro
gege2900 is offline  
Reply


Similar Threads Similar Threads
[Ganz Einfach]HowTo GM Items & Neue Waffen & Drachengott Items implementieren
08/01/2012 - Metin2 PServer Guides & Strategies - 31 Replies
Hey Com, ich weiß zwar, dass es schon einige solcher Threads gibt ABER diesen bestimmt noch nicht.... Also ich habe mal eine Query(Erklär ich gleich) für euch reingeschreiben, mit der man übelst einfach GM,Drachengott und neue Waffen entbuggt :) Also so gehts :1. Navicat öffnen 2. in die Datenbank "player" 3. die Tabelle "item_proto" öffnen 4. Links oben auf File
NIGHTCLUB CHEAT!! Clone all owned items even Facebook Credits Items 100%Working!!
08/21/2010 - Facebook - 2 Replies
Require Tools * Charles * Firefox * NotePad++ (not required but it makes your job easier) Credits: Kingrj123,Botete0030 Steps@pwnthis to cloning items even Facebook Credits items:



All times are GMT +2. The time now is 17:10.


Powered by vBulletin®
Copyright ©2000 - 2024, 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 ©2024 elitepvpers All Rights Reserved.