Advertisement
Guest User

Vorspire

a guest
Jul 7th, 2009
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.64 KB | None | 0 0
  1. using System;
  2. using Server;
  3.  
  4. namespace Server.Touring
  5. {
  6.     public static class DestinationConfig
  7.     {
  8.         public static void Init()
  9.         {
  10.             Tour.AddDestination(
  11.                 Map.Felucca,
  12.                 new Point3D(1433, 1684, 0),
  13.                 @"Britain Bank",
  14.                 @"The bank provides a service allowing you to access your personal bank box by speaking to a banker.",
  15.                 TimeSpan.FromSeconds(15.0)
  16.             );
  17.  
  18.             Tour.AddDestination(
  19.                 Map.Felucca,
  20.                 new Point3D(1385, 1749, 0),
  21.                 @"Britain Bridge",
  22.                 @"The scene of many battles between good and evil people like yourself. You should watch your back around here.",
  23.                 TimeSpan.FromSeconds(10.0)
  24.             );
  25.         }
  26.     }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement