RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Levelable Items ALL 2.3

virus512

Sorceror
I did not make these scripts at all I just made easy and minor adjustments to make them ALL be able to run on 2.3 scripts came from here I take no credits for the scripts

http://www.runuo.com/community/threads/runuo-2-0-rc1-levelable-items-system-3-0.71218/


It works but do you get any exp for kill mobs ? ;>

OK I forgot about this :p now it works

2. Now that you have created levelable items, you need to make the following changes to BaseCreature.cs to let these items gain experience...

Open up your basecreature.cs and find the following in the OnDamage method

Code (text):

if ( speechType != null && !willKill )
speechType.OnDamage( this, amount );
Add this immediately after...

Code (text):

if ( !Summoned && willKill )
LevelItemManager.CheckItems( from, this );
 
Top