|
||
|
|||||||
| Script Support Get support for modifying RunUO Scripts, or writing your own! |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 (permalink) |
|
Forum Newbie
Join Date: Jan 2004
Posts: 21
|
I have parrot animation in 2D, and am using the Magical Talking parrot script. I have the parrot drop as loot on Melisande as shrunken pet, and when double clicked gives you the parrot(always tamed, max loyality, and can't walk). As staff I can [move the parrot to the parrot perch and it jumps up on it. How would I go about making it so players could do this?
|
|
|
|
|
|
#2 (permalink) |
|
Forum Master
|
using the interior decorator might work (might have to download mine from the script submission area for movement in the x & y directions)
or you can script the perch for ondoubleclick to target a parrot then it places it in the right spot based on the perches location
__________________
http://www.AoAUO.com
:) ..... Come for the Customs, Play for the Fun. Return to see your new Friends ..... :) |
|
|
|
|
|
#3 (permalink) | |
|
Forum Novice
Join Date: Dec 2005
Posts: 112
|
Quote:
Code:
public override void OnDoubleClick(Mobile from)
{
if (!from.InRange(GetWorldLocation(), 1))
{
from.SendLocalizedMessage(500446); // That is too far away.
}
}
|
|
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|