Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Rohan
You last visited: Today at 17:20

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

Advertisement



Edit stats of existing item

Discussion on Edit stats of existing item within the Rohan forum part of the MMORPGs category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Feb 2014
Posts: 12
Received Thanks: 2
Edit stats of existing item

Hi all,
Im newbie in making private rohan server, i saw many people asking for edit weapon/amor/pet, this is the way I edit these items stats via sql management studio.

If you can make a private server, you should have sql server and management studio, im using MS SQL Server 2008 R2 and its management studio.

I m using server version from

First you need connect to SQL server, then make new query. To run a sql command, simply select command block then hit F5 or click Execute button.

Use this command to select DB:
Code:
use RohanGame;
Use this command to find character id:
Code:
select * from RohanGame.dbo.TCharacter;
Get your character id (id column), then use it in this command:
Code:
select t.name, i.* from TItem as i join BA_database_item as t
on i.type = t.id
where i.char_id = your_char_id_here
order by t.name asc;
Find your item, and get its id in TItem table (id column) and some fields we need, this is my Fenaty's Ray:
Code:
id=94
attr=0x0329000414000B14000C14000D0F00177800224600467800473C00550F00000000000000000000000000
equip_level=75
equip_strength=0
equip_dexterity=0
equip_intelligent=0
To edit item, just change field by update command (dont forget the comma (,) between updated fields)
Code:
update TItem set 
attr= your_new_attr,
equip_level = 1,
equip_strength=0,
equip_dexterity=0,
equip_intelligent=0
where id = 94;
Now we see the attr value:
Code:
0x0329000414000B14000C14000D0F00177800224600467800473C00550F00000000000000000000000000
represented by hex character string after "0x", hex character: 0-9,A-F, each item option is represented by 6 character: 2 option type, 4 option value, as my weapon, these are options:

032900 --- 03: psy, 0x0029 = 30 ------------------- +30 psy
041400 --- 04: int, 0x0014 = 20 ------------------- +20 int
0B1400 --- 0B: mobility --------------------------- +20 %mobi
0C1400 --- 0C: attk speed ------------------------- +20 %attk speed
0D0F00 --- 0D: %crit, 0x000F ---------------------- +15 % crit
177800 --- 17: %HP, 0x0078 = 120 ------------------ +120% HP
224600 --- 22: % Dmg Drop, 0x0046 = 70 ------------ +70% DD
467800 --- 46: All stats, 0x0078 = 120 ------------ +120 All stats
473C00 --- 47: %all attack, 0x003C = 60 ----------- +60% attack
550F00 --- 55: weapon enchanted, 000F = 15 -------- enchanted 15

And all "00.." left is just filled for hex string length.
I used calculator (programmer mode) to calculate value, ex: DEC 430 => HEX 1AE = 01 AE, switch position and fill to hex string: AE01

and update to DB:
Code:
update TItem set 
attr=0x0329000414000B14000C14000D0F00177800224600467800473C00550F00000000000000000000000000
where id = 94;
This is some option I known:

By the way, Im new in setting private server, Gratt underground and ronelia dont have mobs in my server, is there anyone can give me monster file or show me the way to make mobs for these maps.

Thanks
namvfpx is offline  
Thanks
1 User
Old 02/27/2014, 16:24   #2
 
elite*gold: 0
Join Date: Feb 2011
Posts: 333
Received Thanks: 111

That's the full list of attributes, extracted from the mapserver.
zzerachiel is offline  
Old 09/26/2014, 05:15   #3
 
elite*gold: 0
Join Date: May 2014
Posts: 21
Received Thanks: 1
@namvfpx

can you please help me with this?

because i cant find

"attr=0x0329000414000B14000C14000D0F00177800224600 467800473C00550F00000000000000000000000000"

because in me i only see attr = binary data
kurinaixl is offline  
Old 09/26/2014, 08:26   #4
 
elite*gold: 0
Join Date: Mar 2014
Posts: 50
Received Thanks: 2
Quote:
Originally Posted by namvfpx View Post
Hi all,
Im newbie in making private rohan server, i saw many people asking for edit weapon/amor/pet, this is the way I edit these items stats via sql management studio.

If you can make a private server, you should have sql server and management studio, im using MS SQL Server 2008 R2 and its management studio.

I m using server version from

First you need connect to SQL server, then make new query. To run a sql command, simply select command block then hit F5 or click Execute button.

Use this command to select DB:
Code:
use RohanGame;
Use this command to find character id:
Code:
select * from RohanGame.dbo.TCharacter;
Get your character id (id column), then use it in this command:
Code:
select t.name, i.* from TItem as i join BA_database_item as t
on i.type = t.id
where i.char_id = your_char_id_here
order by t.name asc;
Find your item, and get its id in TItem table (id column) and some fields we need, this is my Fenaty's Ray:
Code:
id=94
attr=0x0329000414000B14000C14000D0F00177800224600467800473C00550F00000000000000000000000000
equip_level=75
equip_strength=0
equip_dexterity=0
equip_intelligent=0
To edit item, just change field by update command (dont forget the comma (,) between updated fields)
Code:
update TItem set 
attr= your_new_attr,
equip_level = 1,
equip_strength=0,
equip_dexterity=0,
equip_intelligent=0
where id = 94;
Now we see the attr value:
Code:
0x0329000414000B14000C14000D0F00177800224600467800473C00550F00000000000000000000000000
represented by hex character string after "0x", hex character: 0-9,A-F, each item option is represented by 6 character: 2 option type, 4 option value, as my weapon, these are options:

032900 --- 03: psy, 0x0029 = 30 ------------------- +30 psy
041400 --- 04: int, 0x0014 = 20 ------------------- +20 int
0B1400 --- 0B: mobility --------------------------- +20 %mobi
0C1400 --- 0C: attk speed ------------------------- +20 %attk speed
0D0F00 --- 0D: %crit, 0x000F ---------------------- +15 % crit
177800 --- 17: %HP, 0x0078 = 120 ------------------ +120% HP
224600 --- 22: % Dmg Drop, 0x0046 = 70 ------------ +70% DD
467800 --- 46: All stats, 0x0078 = 120 ------------ +120 All stats
473C00 --- 47: %all attack, 0x003C = 60 ----------- +60% attack
550F00 --- 55: weapon enchanted, 000F = 15 -------- enchanted 15

And all "00.." left is just filled for hex string length.
I used calculator (programmer mode) to calculate value, ex: DEC 430 => HEX 1AE = 01 AE, switch position and fill to hex string: AE01

and update to DB:
Code:
update TItem set 
attr=0x0329000414000B14000C14000D0F00177800224600467800473C00550F00000000000000000000000000
where id = 94;
This is some option I known:

By the way, Im new in setting private server, Gratt underground and ronelia dont have mobs in my server, is there anyone can give me monster file or show me the way to make mobs for these maps.

Thanks
if you downloaded ROHAN Server Files from Senzoku, just open C:/RoHan/RoHan/world/world
then put all of the files to the original folder of world

from C:/RoHan/RoHan/world/world
to C:/RoHan/RoHan/world

hope it will fix your problem
kelvz002 is offline  
Old 09/26/2014, 15:12   #5
 
elite*gold: 0
Join Date: Jul 2014
Posts: 278
Received Thanks: 51
Quote:
Originally Posted by kurinaixl View Post
@namvfpx

can you please help me with this?

because i cant find

"attr=0x0329000B14000414000C14000D0F00177800224600 467800473C00550F00000000000000000000000000"

because in me i only see attr = binary data
Array of options in type - 1 byte type, 2-bytes value little endian format.

if you don't know what I just said means, don't fok with it.
Banana Bandit is offline  
Old 09/27/2014, 03:47   #6
 
elite*gold: 0
Join Date: May 2014
Posts: 21
Received Thanks: 1
Quote:
Originally Posted by Banana Bandit View Post
Array of options in type - 1 byte type, 2-bytes value little endian format.

if you don't know what I just said means, don't fok with it.
thanks bro i find the solution...

now my problem is how to create new account TT
and mobs are not moving..

this are my current config @registry

ConnMap = 1-0|1-1|1-2|1-3|1-4|5-0|5-1|5-3|5-4|5-5|3-0|3-1
DBServer = 192.168.0.175:22500
LogServerClass = FAIRY.ROHAN_4.LOG.ROHAN_4
Module = C:\RoHan\RoHan\Fairy\AIServer\AIServer.exe
ServerClass = FAIRY.ROHAN_4.AI.ROHAN_4_1
ServerClassMap = FAIRY.ROHAN_4.MAP_AI.ROHAN_4
TreadSleep = 0x0000005f


and also name are not showing (in top of my ingame char)
kurinaixl is offline  
Old 09/27/2014, 08:31   #7
 
elite*gold: 0
Join Date: Feb 2014
Posts: 319
Received Thanks: 75
Turn AI server on and put all those map id's in there.
IncognitoOne is offline  
Old 09/27/2014, 08:57   #8
 
elite*gold: 0
Join Date: May 2014
Posts: 21
Received Thanks: 1
Quote:
Originally Posted by IncognitoOne View Post
Turn AI server on and put all those map id's in there.
follow up question:

i opened the Ai server but nothing will appear,,,, but when i open again the Ai server it says server is already running.

my question is " is my Aiserver running good (normal that nothing will appear) or running bad (maybe corrupt).
kurinaixl is offline  
Old 09/27/2014, 09:18   #9
 
elite*gold: 0
Join Date: Jul 2014
Posts: 236
Received Thanks: 38
The AI server takes up a lot of resources. You might have a bugged version or you might not have a powerful enough computer (or allocated enough VMware resources) to run it.

If I want to make some extra fan noise and heat up my room, I turn on the AI server for fun.
Milocinia is offline  
Old 09/27/2014, 12:40   #10
 
elite*gold: 0
Join Date: May 2014
Posts: 21
Received Thanks: 1
Quote:
Originally Posted by Milocinia View Post
The AI server takes up a lot of resources. You might have a bugged version or you might not have a powerful enough computer (or allocated enough VMware resources) to run it.

If I want to make some extra fan noise and heat up my room, I turn on the AI server for fun.

u mean even if i wont open the "Aiserver" the mobs will still moving/attack?
kurinaixl is offline  
Old 09/27/2014, 13:09   #11
 
elite*gold: 0
Join Date: Jul 2014
Posts: 278
Received Thanks: 51
Quote:
Originally Posted by kurinaixl View Post
u mean even if i wont open the "Aiserver" the mobs will still moving/attack?
The AIserver is what makes the mobs move and attack. Without it running, mobs just stand around and don't fight back. It is the brains of rohan.

To do that it takes a lot of computer power and it takes a long time to start and the screen to appear. Don't get click happy. If you click anything except 'connect' it will want to close.
Banana Bandit is offline  
Old 09/29/2014, 06:23   #12
 
elite*gold: 0
Join Date: May 2014
Posts: 21
Received Thanks: 1
Quote:
Originally Posted by Banana Bandit View Post
The AIserver is what makes the mobs move and attack. Without it running, mobs just stand around and don't fight back. It is the brains of rohan.

To do that it takes a lot of computer power and it takes a long time to start and the screen to appear. Don't get click happy. If you click anything except 'connect' it will want to close.

I see that's explain everything... my question has been answered...

thank you very much

very well appreciated.

hmm. anyway do u know the map code for whirlwind flied and r3?
(like 1-0 = kainon, 1-1 = vena which is used in aiserver )
kurinaixl is offline  
Old 09/29/2014, 16:43   #13

 
Dr.Dr.SheldonLeeCooper's Avatar
 
elite*gold: 33
The Black Market: 100/0/2
Join Date: Jan 2011
Posts: 2,693
Received Thanks: 456
Quote:
Originally Posted by kurinaixl View Post
I see that's explain everything... my question has been answered...

thank you very much

very well appreciated.

hmm. anyway do u know the map code for whirlwind flied and r3?
(like 1-0 = kainon, 1-1 = vena which is used in aiserver )
Copy & Paste this:

0-1|0-2|0-3|1-0|1-1|1-2|1-3|1-4|2-0|2-1|2-2|2-3|2-4|3-0|3-1|3-2|3-3|3-4|4-0|4-1|4-3|4-5|5-0|5-1|5-2|5-3|5-4|5-5|6-0|6-1|6-2|6-3

Im sry if i forgot some Areas
Dr.Dr.SheldonLeeCooper is offline  
Old 11/11/2014, 00:13   #14
 
elite*gold: 0
Join Date: Oct 2012
Posts: 1
Received Thanks: 0
Hey where to download server file +db + client rohan?
reason11 is offline  
Old 05/01/2015, 10:30   #15
 
elite*gold: 0
Join Date: Dec 2013
Posts: 15
Received Thanks: 0
can i use this to edit my char weapon even if im not a server owner?? thx for ur feedback/reply ^_^
saszuke25 is offline  
Reply


Similar Threads Similar Threads
How to edit item stats in private servers?
05/07/2017 - Rohan - 42 Replies
https://fbcdn-sphotos-e-a.akamaihd.net/hphotos-ak- prn1/1010857_211074569048750_1945593815_n.jpg https://fbcdn-sphotos-c-a.akamaihd.net/hphotos-ak -ash3/q83/s720x720/580521_211073709048836_19521852 76_n.jpg Any1 can tell me how they did that ? i saw also some1 with duped items wth ?
char stats, and item stats
01/27/2010 - Lineage 2 - 6 Replies
hi all today.. on a private server. i made a verry strange exp..... some clannies called me to come to HS to help for pvp as i came there i seen mass pvp arround 30 ppl all hitted 1 person ................ a S dagger items drago set and AS i watched it.... he needed for everyone just 1 or 2 hits beamed arround like hell..
how to edit items stats using CE
10/21/2008 - Perfect World - 34 Replies
any idea how to do it? i because some edited items posted in some forum but i know its client side but still any idea how to do this?? :D:o



All times are GMT +1. The time now is 17:20.


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