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!

Small, Quick Question

jnleonard3

Wanderer
Small, Quick Question

Im making a bow that i want a person to have 100.0 archey, what do i add to the script, or if you dont know, pls tell me where i can find the script for the teleporter into Wind

thnks in advance
 

jnleonard3

Wanderer
Re: .

no, i want the script because since requires 75 magery to enter wind, it sould be easy to manipulate it to use it on a bow so that it requires 100 archery
 

juani

Wanderer
try putting on the bow script:
public override bool OnEquip (Mobile m)
{
if (m.dex < 100)
return false
else
return base.Onequip(m);


i didnt copy this, i made it up, but ive edited stuff like this.
check the onequip method for baseweapon.
 
Top