Exemple #1
0
 public void AddOrders(string classid, string instanceid, string price)
 {
     try
     {
         BaseGetMarketApi <InsertOrders> .GetMarketAsync($"https://market.csgo.com/api/InsertOrder/{classid}/{instanceid}/{price}/?key={your_secret_key}", your_secret_key);
     }
     catch
     {
     }
 }
Exemple #2
0
 public void Offline()
 {
     BaseGetMarketApi <object> .GetMarketAsync($"https://market.csgo.com/api/v2/go-offline?key={your_secret_key}", your_secret_key);
 }
Exemple #3
0
 public void StartPing()
 {
     BaseGetMarketApi <marketping> .GetMarketAsync($"https://market.csgo.com/api/v2/ping?key={your_secret_key}", your_secret_key);
 }
Exemple #4
0
 public void DeleteOrder()
 {
     BaseGetMarketApi <DeleteOrders> .GetMarketAsync($"https://market.csgo.com/api/DeleteOrders/?key={your_secret_key}", your_secret_key);
 }
Exemple #5
0
 public void ProcessOrder(string classid, string instanceid, string price)
 {
     BaseGetMarketApi <ProcessOrder> .GetMarketAsync($"https://market.csgo.com/api/ProcessOrder/{classid}/{instanceid}/{price}/?key={your_secret_key}", your_secret_key);
 }
Exemple #6
0
 public void SetToken(string token)
 {
     BaseGetMarketApi <SetToken> .GetMarketAsync($"https://market.csgo.com/api/SetToken/{token}/?key={your_secret_key}", your_secret_key);
 }
Exemple #7
0
 public void SetPrice(string item_id, int price)
 {
     BaseGetMarketApi <set_price> .GetMarketAsync($"https://market.csgo.com/api/v2/set-price?key={your_secret_key}&item_id={item_id}&price={price}&cur=RUB", your_secret_key);
 }
Exemple #8
0
 public void SetCurrentPrice(string item_Id, int price)
 {
     BaseGetMarketApi <SetPrice> .GetMarketAsync($"https://market.csgo.com/api/SetPrice/{item_Id}/{price}/?key={your_secret_key}", your_secret_key);
 }
Exemple #9
0
 public void AddToSale(string price, string id)
 {
     BaseGetMarketApi <add_to_sale> .GetMarketAsync($"https://market.csgo.com/api/v2/add-to-sale?key={your_secret_key}&id={id}&price={price}&cur=RUB", your_secret_key);
 }
Exemple #10
0
 public void RemoveAllFromSale()
 {
     BaseGetMarketApi <object> .GetMarketAsync($"https://market.csgo.com/api/v2/remove-all-from-sale?key={your_secret_key}", your_secret_key);
 }