Ejemplo n.º 1
0
 /// <summary>
 /// Cuts a web, destroying it, and any Spiderlings on it.
 /// </summary>
 /// <param name="web">The web you want to Cut. Must be connected to the Nest this Cutter is currently on.</param>
 /// <returns>True if the cut was successfully started, false otherwise.</returns>
 public bool Cut(Spiders.Web web)
 {
     return(this.RunOnServer <bool>("cut", new Dictionary <string, object> {
         { "web", web }
     }));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Weaves more silk into an existing Web to strengthen it.
 /// </summary>
 /// <param name="web">The web you want to strengthen. Must be connected to the Nest this Weaver is currently on.</param>
 /// <returns>True if the strengthen was successfully started, false otherwise.</returns>
 public bool Strengthen(Spiders.Web web)
 {
     return(this.RunOnServer <bool>("strengthen", new Dictionary <string, object> {
         { "web", web }
     }));
 }