Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

How to find the correct files for editing textures

Newbie Spellweaver
Joined
Feb 15, 2010
Messages
90
Reaction score
33
What you need:

  • [CS5, CS4, Cs3 doesn't really matter]
  • Nvidia DDS-Plugin [ / ]
  • RylCoder
  • brushes, patterns, styles. depends on your skills in photoshop.

Overall explanations:

Where the texture files can be found in:
yourrylserverdirectory/character/data/texture < high texture
yourrylserverdirectory/character/data/lowtexture < low texture


Where the GCMDS can be found in:
yourrylserverdirectory/character/data​

GCMDS:

pc_akhan_a.gcmds - GCMDS for Combatant Equipment
pc_akhan_b.gcmds - GCMDS for Officiator Equipment
pc_man.gcmds - GCMDS for Male KR Equipment
pc_woman.gcmds - GCMDS for Female KR Equipment


So, lets start

Step #1:

Open your itemscript and search the itemname from the Weapon, Armor, Helmet, Glove, Boot whatever you want to edit. I'll take an armor for example.

Code:
ID	ItemName	FieldModelName	AttachedModelName	SpriteDDS

470	Vestment of the Miscreant	robe.r3s	dark_anahita

This armor is for humans. Important part here, is the AttachedModelName in my example its dark_anahita

Step #2:

Open the gcmds file for human [explanation above!] with your ryl coder

Step #3:

Search for the AttachedModelName in the gcmds, in my example its dark_anahita

Code:
set "DARK_ANAHITA" link "MAGE_PANTS_B" LEG
		"m_marut_cloak_20.Z3M"	"[B]m_dark_anahita.dds[/B]"
		"m_marut_cloak_21.Z3M"	"[B]m_dark_anahita.dds[/B]"
		"m_marut_cloak_22.Z3M"	"[B]m_dark_anahita.dds[/B]"
		"m_marut_cloak_24.Z3M"	"[B]m_dark_anahita.dds[/B]"
	;

The fat printed is the dds-file.

Step #4:

Open the file with photoshop. And edit it in the way you want. Most of the modelfiles get mirrored ingame, so you gotta play around a bit till you found the right way.




Hope it's understandable :)
 
Last edited:
Newbie Spellweaver
Joined
Nov 1, 2008
Messages
19
Reaction score
0
Re: [Tutorial] How to find the correct files for editing textures

Thanks is very good tutorial :))
 
Junior Spellweaver
Joined
Apr 26, 2010
Messages
161
Reaction score
2
Re: [Tutorial] How to find the correct files for editing textures

That is also my way to take itemscripts and texture in other server :)
 
Moooooooooooooooo
Loyal Member
Joined
Jul 19, 2006
Messages
442
Reaction score
130
Re: [Tutorial] How to find the correct files for editing textures

What you need:
[*]RylCoder[for ROW, get the ROWCoder, somewhere here in forum]

Please don't rename my work. There is no row coder, it's just rylCoder. And the crypto codes can be changed in the "hack" file. The row crypto codes have been shared by MobidA.
 
Newbie Spellweaver
Joined
Feb 15, 2010
Messages
90
Reaction score
33
Re: [Tutorial] How to find the correct files for editing textures

Please don't rename my work. There is no row coder, it's just rylCoder. And the crypto codes can be changed in the "hack" file. The row crypto codes have been shared by MobidA.

erased the rowcoder word from it. i actually thought its another coder :x sorry for that one
 
Moooooooooooooooo
Loyal Member
Joined
Jul 19, 2006
Messages
442
Reaction score
130
Re: [Tutorial] How to find the correct files for editing textures

Btw to be more precise then the topic should be in the lines of "How to find equipment textures".
Beacuse there are a lot more textures than you are describing.
 
Newbie Spellweaver
Joined
Apr 18, 2012
Messages
24
Reaction score
0
Re: [Tutorial] How to find the correct files for editing textures

This tuto is for edit textures in game, right? Right.
And, how to edit new textures, to CREATE new itens?
Example, create new item in ITEMSCRIPT and new texture for this item, how to connect the new item with the new texture? :S:S:S:S
 
Newbie Spellweaver
Joined
Sep 27, 2010
Messages
13
Reaction score
3
Re: [Tutorial] How to find the correct files for editing textures

1. Open your gcmds file(pc_man.gcmds - for example)
2. find the .dds and .z3m or .z3am file and start to edit
Example:
from itemscript :
[item ID] [item name] [FieldModelName] [AttachedModelName]
Example: [1092] [KR Blue Santa Armor] [b_body.r3s][KR santa_b]
(just like how you create new item, just change the 4th column (AttachedModelName)

On Gcmds file:
find // body
create new( on empty space, just add on the //body below)
set "KR Santa_b"
"m_santa_21.Z3M" "kr_blue_santa.dds"
"m_santa_22.Z3M" "kr_blue_santa.dds"
"m_santa_23.Z3M" "kr_blue_santa.dds"
"m_santa_24.Z3M" "kr_blue_santa.dds"
"m_santa_30.Z3M" "kr_blue_santa.dds"
"m_santa_40.Z3M" "kr_blue_santa.dds"
"m_santa_50.Z3M" "kr_blue_santa.dds"

Z3M is the model file, dds is the texture file
so, just change your edited dds file.

3. save and restart the game.
 
Last edited:
Newbie Spellweaver
Joined
Apr 18, 2012
Messages
24
Reaction score
0
Re: [Tutorial] How to find the correct files for editing textures

1. Open your gcmds file(pc_akkhan_a.gcmds - for example)
2. find the .dds and .z3m or .z3am file and start to edit
Example(for armor):

// body
set "your new item name"
"A_11_08.Z3M" "your edited.dds"
Z3M is the model file, dds is the texture file
so, just change your edited dds file.

3. save and restart.


LOL MAN.
U're a genius!
U don't know how much I looked for this and I found nothing.
Thanks bro, VERY VERY VERY thanks.

If not asking to much,
Can u make an example to set a new armor santa?
Example, kr_blue_santa.dds
Just for me fully understand.
 
Newbie Spellweaver
Joined
Apr 18, 2012
Messages
24
Reaction score
0
Re: [Tutorial] How to find the correct files for editing textures

Really thanks bro! <3
 
Newbie Spellweaver
Joined
Jun 1, 2010
Messages
10
Reaction score
0
Re: [Tutorial] How to find the correct files for editing textures

guys.. can help me on something?...
im already edit texture in character/data/texture...
so how can i see my new texture on iventory..
and how can i make my own sprite?.. im totally blank...
can help me on it?..
 
Initiate Mage
Joined
Dec 20, 2012
Messages
3
Reaction score
0
Re: [Tutorial] How to find the correct files for editing textures

who know how to make char effect ?
 
Initiate Mage
Joined
Jun 1, 2007
Messages
1
Reaction score
0
Re: [Tutorial] How to find the correct files for editing textures

nice..
 
Last edited:
Newbie Spellweaver
Joined
Apr 16, 2013
Messages
12
Reaction score
0
Re: [Tutorial] How to find the correct files for editing textures

Great job !
 
Newbie Spellweaver
Joined
Jul 27, 2008
Messages
6
Reaction score
0
Re: [Tutorial] How to find the correct files for editing textures

hi all i want to make 1 RYL 1 private server who can send me the guild n download link thank you very much
 
Back
Top