Exemplo n.º 1
0
 public override void OnResponse(NetState state, RelayInfo info)
 {
     if (!state.Mobile.InRange(Point, 3))
     {
         state.Mobile.SendLocalizedMessage(500251); // That location is too far away.
     }
     else if (info.ButtonID == 1)
     {
         Deed.DeployAddon(true, Point, Map);
     }
     else if (info.ButtonID == 2)
     {
         Deed.DeployAddon(false, Point, Map);
     }
 }