Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. default {
  2. state_entry() {
  3. llRequestPermissions(llGetOwner(), PERMISSION_DEBIT);
  4. }
  5.  
  6. money(key id, integer amount) {
  7. llGiveMoney("uuid-to-send-to", amount);
  8. }
  9.  
  10. run_time_permissions(integer perm) {
  11. if (perm & PERMISSION_DEBIT) {
  12. llSetPayPrice(1, []);
  13. }
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement