ll.GiveMoney

ll.GiveMoney(AvatarID: uuid, Amount: number) : number

Transfers Amount of L$ from script owner to AvatarID. This call will silently fail if PERMISSION_DEBIT has not been granted.

Example

ll.GiveMoney(uuid(<key>), 6)
{
  "def": "func",
  "desc": "Transfers Amount of L$ from script owner to AvatarID.\nThis call will silently fail if PERMISSION_DEBIT has not been granted.",
  "energy": 10,
  "sleep": 0,
  "pure": false,
  "link": "https://wiki.secondlife.com/wiki/LlGiveMoney",
  "name": "GiveMoney",
  "signatures": [
    {
      "result": [
        {
          "name": "",
          "def": "result",
          "desc": "",
          "variadic": false,
          "type": [
            "number"
          ],
          "optional": false
        }
      ],
      "args": [
        {
          "def": "arg",
          "name": "AvatarID",
          "desc": "",
          "type": [
            "uuid",
            "string"
          ],
          "variadic": false,
          "optional": false
        },
        {
          "def": "arg",
          "name": "Amount",
          "desc": "",
          "type": [
            "integer",
            "number"
          ],
          "variadic": false,
          "optional": false
        }
      ]
    }
  ]
}

< Back to ll