Jump to content

Coder99513

Member
  • Posts

    2
  • Joined

  • Last visited

Posts posted by Coder99513

  1. Hello forums!
    I'm a little stumped at the moment with a skript I am making. I am trying to use MongoSK for data storage on my server, but I am having issues getting MongoSK to cooperate with me. Could someone figure out what I am doing wrong, and/or a fix for this?


    The following is a snippet of my test skript. This snippet is run within a command trigger.

    # Assume {-mongo::players} is a collection with documents. One document has the field {"id":2}
    # I am trying to retrieve the field "name" from the document where id=2, and message it (to the player within a command)
    
    set {_query} to new mongo query
    set mongo collection of {_query} to {-mongo::players}
    set {_myfilter} to new mongosk filter where field "id" is 2
    set mongo filter of {_query} to {_myfilter}
    set {_doc} to first mongo document of query {_query}
    message "%value ""name"" of {_doc}%"

    The following is the errors I get when reloading:
    image.png.fb298975a73a7c23d37f3519e838917b.png

    Could anyone find a way to rid this skript of these errors and find out what (probably very obvious) mistake I have made?

    Best regards,
    Coder99513
     

×
×
  • Create New...