GPay

Moved

Total Downloads: 1,122 - First Release: Mar 22, 2017 - Last Update: Mar 24, 2018

5/5, 6 likes
  1. Ah yeah I found it after an absolute age looking, would probably be a good idea to advise people in the Plugin Overview they have to manually change it there ;-)

    Kind Regards
     
  2. I Need a GPay to target a players rank when they donate
    Code:
    {
      "packages": {
        "22624": [
          {
            "command": "chat user add "the player" vip
          },
          {
            "command": "chat user add "the player" donor
          },
          {
            "command": "grant user 'theplayer' kits.vip
          }
        ]
      },
      "Secret": "GPAY_SECRET_KEY"
    }
     
  3. I believe you're looking for something like this?

    Code:
    {
        "packages": {
            "22624": [{
                    "command": "chat user add <username> vip"
                },
                {
                    "command": "chat user add <username> donor"
                },
                {
                    "command": "grant user <username> kits.vip"
                }
            ]
        },
        "Secret": "GPAY_SECRET_KEY"
    }
    or am i misunderstanding ?
     
  4. We're Looking for Video Makers! We need a video maker to make a video tutorial showing people how to install the rust plugin!, we are willing to pay for the video, please contact me if you're interested!
     
  5. Hi All,

    I would just like to ask if this would make use of the timed permissions plugin found here: Timed Permissions | Oxide

    So I can automate the VIP membership and don't get bogged down by admin!!

    My current config is like so:

    Code:
    {
      "packages": {
        "22510": [
          {
            "command" : "/usergroup add <username> vip",
            "qty": 1
          }],
        "22511": [
          {
            "command" : "/usergroup add <username> vip",
            "qty": 1
          }],
        "22512": [
          {
            "command" : "/usergroup add <username> vip",
            "qty": 1
          }],
        "22513": [
          {
            "command" : "/usergroup add <username> vip",
            "qty": 1
          }]
      },
      "Secret": "XXXxxxXXX"
    }
    So would I be able to do the following:
    Code:
    {
      "packages": {
        "22510": [
          {
            "command" : "addgroup <username> vip 30d",
            "qty": 1
          }]
      },
      "Secret": "xxxxxxxx"
    }
    If anyone else has been able to do just this could you please help and confirm the above is correct? Also just to clarify do you use chat commands or console commands in the above as I do believe I currently have it using chat commands due to: /usergroup add

    Many thanks in advance
     
  6. been waiting nearly days for activation to come to my email still nothing
     
  7. Check your junk email, that is where I found mine.
     
  8. Hey PryMary,

    You don;t need to add the slash before the command just have "command" : "addgroup <username> vip 30d" without the slash. I believe the commands must be console commands i am not sure. I will look into this and get back to you. For further support please contact us at support.gpay.io
     
  9. Is there a way when someone pays they will be moved to a different usergroup E.g VIP where I have set up that someone in a VIP group will get access to kits/commands etc.
     
  10. yeah just use oxide commands, i tested it and it works, testing fore things atm

    "command" : "addgroup <steamid> vip",
     
  11. Ahh I see, thank you very much
     
  12. your welcome
     
  13. So i've set everything up, and added a transaction for myself to see if it works and still when I do /claimdonation it replies, "no donation was found", I cannot seem to find the problem. Here is my config:

    Code:
    {
        "packages": {
            "23072": [{
                    "command": "chat user add <username> vip"
                }
            ]
        },
        "Secret": "secret num"
    }
     
  14. use this command not the one you have added and dont forget the --> , <---:
    "command" : "addgroup <steamid> vip",
     
  15. I still get the message no donation found :(
     
  16. did you add your secret codes and everything? and when you use <steamid> make sure in you web shop in settings Steam Auth is enabled
     
  17. yes everything is done as it should
     
  18. show me your confing file and lang file
     
  19. Code:
    lang:{
      "NoDonationMessage": "No Donation was found",
      "DonationFoundMessage": "Thanks for donating, your items have been added to your inventory",
      "NoInventorySpace": "Please empty your inventory before claiming your donation!",
      "CouldNotConnect": "Could not connect to the donation server, please try again later!",
      "DonationLink": "You can Donate at https://app.gpay.io/SERVERNAME",
      "PleaseWait": "Please Wait"
    }Config:{
        "packages": {
            "23072": [{
                    "command" : "addgroup <steamid> vip",
                }
            ]
        },
        "Secret": "xxxxxx"
    }
     
  20. Try this and in you lang file where is donation link, paste you webstore link ;)
    just copy my config setting to yours the whole lot it should work
    Config:


    {
    "packages": {
    "23072": [
    {
    "command" : "addgroup <steamid> vip",
    "qty": 1
    }
    ],
    "xxxxxx": [
    {
    "command" : "new",
    "qty": 1
    }
    ],
    "xxxxxx": [
    {
    "command" : "new",
    "qty": 1
    }
    ],
    "xxxxxx": [
    {
    "command" : "new",
    "qty": 1
    }
    ]
    },
    "Secret": "xxxxxx"
    }