Laravel Core Programmer
Developer
- Joined
- Jul 18, 2007
- Messages
- 1,057
- Reaction score
- 1,044
yeah yeah this guide is pointless but some people started asking questions about it so why the hell not.
Changing Items Names:
To find names of for example Shouts, you have to look up the index first which is in [Inititems.txt / Client Config] or [inititems.dat in patch Config]
see the (index 515)... thats the index your looking for, always find the index of the item or monster that you need then to look for [Message-e.dat / Patch Config] and from there you can change the name:
this time your finding name of the item to change it in the message-e
so if you take the horn of spirit and change it to "shouts" it will look as shouts in the game!
--------------------------------
Changing Monsters Names:
Its pretty much the same thing,
but this time you have to look for the monster:
Look in InitMonsters.txt for some thing like this
(name 1) find it in message-e... and change it -.-
--------------------------------
Changing NPC's Names:
same thing:
Look in IniNPC.txt
and in Message-e.dat
--------------------------------
there... and dont ask questions or reply with stupid spams or flames here -.-
Changing Items Names:
To find names of for example Shouts, you have to look up the index first which is in [Inititems.txt / Client Config] or [inititems.dat in patch Config]
PHP:
;Shouts
(item (name 715) (Index 515) (Image "shop021")(desc 262) (class general etc) (code 4 9 0 0) (country 0) (plural 1) (pay 1)(buy 400000) (effect 17) )
PHP:
( itemname 715 "Horn of Spirit")
so if you take the horn of spirit and change it to "shouts" it will look as shouts in the game!
--------------------------------
Changing Monsters Names:
Its pretty much the same thing,
but this time you have to look for the monster:
Look in InitMonsters.txt for some thing like this
PHP:
(monster (name 1) (index 1) (country 0 1 2) (race 0) (level 1) (ai 1) (range 20) (sight 160 240) (exp 21) (itemgroup 1 2)
(str 21) (hth 1) (int 10) (wis 10) (dex 2) (hp 1) (mp 70) (aspeed 2400) (hit 0) (dodge 0)
(attack 0 7 7) (magic 0 0) (defense 0 0) (absorb 0) (mspeed 1600 800)
(quest (2 1 901 10) (3 1 902 10) (54 1 1025 10) (8001 1 933 10)))
PHP:
( monstername 1 "Demon Vulgar")
--------------------------------
Changing NPC's Names:
same thing:
Look in IniNPC.txt
PHP:
(gennpc (index 1) (country 0) (kind 1) (shape 3) (html 1) (map 0) (xy 257491 258584 16120) (dir 254491 257584))
and in Message-e.dat
PHP:
( npcname 1 "Weapon Merchant")
--------------------------------
there... and dont ask questions or reply with stupid spams or flames here -.-