// Someone cast an unlock spell
IfOrdered
  tmpx = selforder
  tmpy = 491  // The unique code for an unlock order
  IfXIsEqualToY
    // Is it closed?
    tmpargument = 0
    IfStateIs
      // Open it up
      tmpargument = ACTIONMG
      DoAction
        tmpargument = 1
        SetState
        tmpargument = 60
        SetBumpHeight
        KeepAction
        tmpargument = 0
        tmpdistance = 11025
        PlaySound
        // Wait a while
        tmpargument = 40
        SetTime
        // Tell the players...
        tmpargument = 3
        SendMessageNear

// Someone is trying to open it
IfBumped
  // Can they open the chest?
  SetTargetToWhoeverBumped
  IfTargetCanOpenStuff

    // Is it closed?
    tmpargument = 0
    IfStateIs

      // Are they in front?
      IfFacingTarget

        // Can they pick the lock?
        tmpargument = [DISA]
        IfTargetHasSkillID

          // Make target crouch
          tmpargument = ACTIONMG
          TargetDoAction
          tmpargument = 1
          PlaySound

          // Give some experience
          tmpargument = 25
          tmpdistance = EXPROLEPLAY
          GiveExperienceToTarget

          // Open it up
          tmpargument = ACTIONMG
          DoAction
            tmpargument = 1
            SetState				//Open
            tmpargument = 60
            SetBumpHeight
            KeepAction
            tmpargument = 0
            tmpdistance = 11025
            PlaySound
            // Wait a while
            tmpargument = 40
            SetTime
            // Tell the players...
            tmpargument = 4
            SendMessageNear
        Else

          // Do they have a chest key?
          tmpargument = [KEYC]
          CostTargetItemID
            tmpargument = ACTIONMG
            TargetDoAction			            // Make target crouch
            tmpargument = 1
            PlaySound					    //Click sound
            // Give some experience
            tmpargument = 5
            tmpdistance = EXPDARE
            GiveExperienceToTarget
            // Open it up
            tmpargument = ACTIONMG
            DoAction
              tmpargument = 1
              SetState
              tmpargument = 60
              SetBumpHeight
              KeepAction
              tmpargument = 0
              tmpdistance = 11025
              PlaySound
              // Wait a while
              tmpargument = 40
              SetTime
              // Tell the players...
              tmpargument = 5
              SendMessageNear
          Else
            IfTimeOut
              // Say it's locked...
              tmpargument = 2
              SendMessageNear
              // Wait a while
              tmpargument = 40
              SetTime
    Else
      // Wait before allowing to loot
      IfTimeOut
        // Reset the timer
        tmpargument = 40
        SetTime

        // Make target crouch
        tmpargument = ACTIONMG
        TargetDoAction

        // Can the target use this armor
        tmpargument = 0
        IfContentIs
          DropItems
          DropMoney
          DropKeys
          tmpargument = 0
          SendMessageNear
        Else
          tmpargument = 5
          IfContentIs
            DropMoney
            tmpx = rand % 4352 + targetwis
            tmpargument = [DISA]
            IfTargetHasSkillID		//Rouges always make it
              tmpx = 9000
            tmpy = 8704			//50% chance at 17 wis
            IfXIsMoreThanY
              DropItems			//Drop secret loot
              DropKeys
              tmpargument = 7		//Secret bottom!
              SendMessageNear
              tmpargument = 15
              tmpdistance = EXPSECRET
              GiveExperienceToTarget	//Award some xp
            Else
              tmpargument = 1
              SendMessageNear

          tmpargument = 10		//Content 10: chest contains map and secret bottom
          IfContentIs
            ShowMap
              tmpargument = 25
              tmpdistance = EXPSECRET
              GiveExperienceToTarget
              ShowYouAreHere
              tmpargument = 5
              SetContent
              tmpargument = 2
              PlaySound
            Else
              tmpargument = 8
              SendMessageNear
          Else
            // Say it's empty
            tmpargument = 1
            SendMessageNear

// All done
End
