Paste #12444: Edit of P#12442 - Edit of P#12438 - Edit of P#12436 - - Sitting Script

Date: 2014/12/30 21:48:04 UTC-08:00
Type: Denizen Script

View Raw Paste Download This Paste
Copy Link


Sitting:
  Type: Assignment
  Actions:
    On Assignment:
      - Trigger Name:Chat State:true
  Interact Scripts:
  - 100 Sitting Listener

Sitting Listener:
  Type: Interact
  Steps:
    1:
      Chat Trigger:
        1:
          Trigger: /sit/
          Script:
            - flag player sitter:<npc>
            - flag player chatter
            - chat "Ok. Where do you want me to sit?"

ChooseBlockListener:
    Type: World
    Events:
        On player Clicks Block:
        - if <player.has_flag[chatter]> {
          - flag npc sitloc:<context.location.sub[-.5,.5,-.5]>
          - sit <context.location.sub[-.5,.5,-.5]> npc:<player.flag[sitter]>
          - flag <player.flag[sitter]> sitter
          - flag chatter:!
          }

timedLoopStart:
  type: world
  events:
    on server start:
    - run timedLoop

timedLoop:
  type: task
    script:
    - foreach <server.get_npcs_flagged[sitter]> {
      - sit <sitloc.location.sub> npc:<def[value]>
      }
    - announce "Loop..."
    - wait 5s
    - inject s@timedLoop