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!

[Tutorial] Adding Items

Junior Spellweaver
Joined
Jul 27, 2007
Messages
177
Reaction score
22
hi here is a nice tutorial on how to add items when there is no iniitem.txt

i wont show how to add to client.


ok so you just downloaded some weapons and there is no iniitem.txt

so we'll make one.

ok so we go to Kalonline\data\Item\Weapon\Tex

and hopefully there should be some images of the weapons

and we'll go with a nice Red Deamon Bow which is PB_S20_06

so we have are going to use an old bow from the iniitem.txt

Code:
;22 - G1 Birch Bow
(item [COLOR=red](name 277)  (Index 22) (Image "Wea011") (Action 1 1)[/COLOR]  (class weapon bow) (code 1 2 2 2) (country 2) [COLOR=red](level 1)[/COLOR] (wear 1)        [COLOR=red](limit archer 1) (range 160) (buy 4) (sell 1) (endurance 4)    (specialty (aspeed 800)      (Attack 2 7)     (hit 12)[/COLOR]                    )  )

ok so a birch bow is what we will use

you can change anything that is in red

so i will make a G90 Red Deamon Bow

Code:
;22 - G1 Birch Bow
(item [COLOR=red](name 9999)  (Index 9999) (Image "WeaG90") (Action 20 6)[/COLOR]  (class weapon bow) (code 1 2 2 2) (country 2) [COLOR=red](level 90)[/COLOR] (wear 1)        [COLOR=red]([/COLOR][COLOR=red]limit archer 90) (range 250) (buy 0) (sell 0) (endurance 52)  (maxprotect 300)  (specialty (aspeed 800) (Str 25) (Hth 32)   (Dex 25) (Attack 2500 3000)  (hp 500) (mp 200)  (hit 84)[/COLOR]

and all we are realy doing is change the Action number

so we look at the PB_S20_06

and we use 20_6 but without the _

simple and easy proberly a crap tutorial but i havnt seen one on here :)

ohwell thanks for looking.

Respect Dj-Angel:thumbup:
 

Attachments

You must be registered for see attachments list
Back
Top