ÄÚµå : |
private void Teleport( int index )
{
if ( m_MarkUse )
{
m_Mobile.SendLocalizedMessage( 1010589 ); // You will be teleported within the next two minutes.
new TeleportTimer( m_Mobile, m_Locations[index], TimeSpan.FromSeconds( 10.0 + (Utility.RandomDouble() * 110.0) ) ).Start();
m_Mobile.UsedStuckMenu();
}
else
{
new TeleportTimer( m_Mobile, m_Locations[index], TimeSpan.Zero ).Start();
}
} |
ÄÚµå : |
new TeleportTimer( m_Mobile, m_Locations[index], TimeSpan.FromSeconds( 10.0 + (Utility.RandomDouble() * 110.0) ) ).Start(); |
ÄÚµå : |
new TeleportTimer( m_Mobile, m_Locations[index], TimeSpan.FromSeconds( 10.0 ).Start(); |