Example #1
0
 public TeleporterGeneric(Location worldLocation, string script, Location destination, TeleporterGraphic graphic = TeleporterGraphic.NoDraw)
 {
     ItemAndLocation = new ItemAndLocation()
     {
         Location = worldLocation,
         ItemID   = (ushort)graphic
     };
     Script      = script;
     Destination = destination;
 }
Example #2
0
 public TeleporterWithFixedDest(string script, TeleporterGraphic graphic = TeleporterGraphic.NoDraw)
 {
     Script  = script;
     Graphic = graphic;
 }