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!

Drop Item to Ground ?

Nova

Wanderer
Drop Item to Ground ?

Hi,
how can I add Items, and drop them to the feet of my character instead of dropping them into my backpack ?
 

Tom Bombadil

Wanderer
mmmm in the drop on ground you could use
[code:1]
item.MoveToWorld( position);// item is your item
[/code:1]

i suppose for create in bounce ...
[code:1]
person.AddToBackpack( item ) ;//person is the person to add item
[/code:1]
 
Top