|
|
@ -35,10 +35,10 @@ class BackendClient: |
|
|
|
self.warn = False |
|
|
|
return self.up |
|
|
|
|
|
|
|
async def vip(self, steamid: SteamID, amount: int, extra: str): |
|
|
|
async def vip(self, steamid: SteamID, amount: int, extra: str, unique: str = ""): |
|
|
|
async with aiohttp.ClientSession(cookies={ |
|
|
|
"secretkey":self.secret_key}) as session: |
|
|
|
async with session.post(self.vip_url + f"?steam={steamid.id64}&amount={int(amount)}&service=steam&extra={extra}", ssl=False) as response: |
|
|
|
async with session.post(self.vip_url + f"?steam={steamid.id64}&amount={int(amount)}&service=steam&extra={extra}&unique={unique}", ssl=False) as response: |
|
|
|
try: |
|
|
|
result = int(await response.text()) |
|
|
|
if result == 0: |
|
|
|