CS2 autoexec: how to make one and what to do when it will not load
- By Bartlomiej Paluch
- 1 hour ago
A CS2 autoexec is a plain text file the game reads at launch. Building one takes a minute. The interesting problem is that a large share of the configs circulating online contain commands CS2 no longer has, and the game says nothing when it skips them.
Where the file goes
One path, no exceptions. Right click CS2 in your Steam library, choose Manage, then Browse local files. From the folder that opens, go into game, then csgo, then cfg. That is the destination.
Create a text file there and name it autoexec.cfg. When saving from Notepad, set the file type to All Files, because otherwise Windows appends .txt and the game will never see the file.
The fastest way to check: turn on file extensions in Explorer. If what you see is autoexec.cfg.txt, you have already found the reason nothing loads.
Making the game read it
The file alone is not enough, and this is where most people stop without realising it. The game does not scan the folder hoping to find configs, so you have to point at it directly.
Open the properties for CS2 in Steam, find the launch options, and enter +exec autoexec.cfg.
The extension matters. The version without .cfg appears in older guides and in CS2 it frequently does nothing at all.
At the end of the file itself, add host_writeconfig. That forces your current settings into the game’s own config, which keeps them from evaporating on exit.
Proving the CS2 autoexec loaded
Do not infer it from your settings. Make the game say so out loud, which takes one line and saves half an hour of guesswork.
Near the end of the file, before the write line, add something like echo AUTOEXEC LOADED.
Launch the game, open the console, and look for that text. If it is there, the file loaded and any remaining problem is in its contents rather than its location. If it is missing, go back to the filename and the launch option.
How to open the console, and what to do when the key does nothing, is covered separately in our piece on the CS2 console not opening.
One detail that saves restarts: after editing the file, type exec autoexec in the console and it reloads without leaving the game.
Dead commands still doing the rounds
| Line from a copied config | Status in CS2 |
|---|---|
| m_rawinput | gone, mouse input bypasses the system by default |
| cl_updaterate | gone, the server decides the rate |
| cl_cmdrate | gone, same reason |
| cl_righthand | gone, handedness lives in the viewmodel settings |
| cl_bob_lower_amt | gone, weapon sway works differently now |
| cl_join_advertise | gone |
We checked these against the game’s own command and variable dumps rather than against other blogs. All six appear in configs marketed as current, and all six are silently ignored.
That is the argument for writing your own file instead of pasting somebody else’s. A config you did not write is a list of lines you cannot vouch for.
What belongs in a short file
Fifteen lines that change something, rather than two hundred that mostly do not. A short file also has the practical advantage that when something misbehaves, you can read the whole thing at a glance.
Sensitivity and the scoped multiplier, so a change of mouse is one line rather than an evening.
Viewmodel. Field of view and offsets, since this is the only thing permanently covering part of your screen that you control.
Crosshair, if you prefer keeping it in the file rather than in the menu.
A frame cap, set slightly above your monitor’s refresh rate.
Binds for anything you do often that otherwise costs a menu.
Binds are the highest value lines
Display settings are set once and forgotten. Binds fire every round, which makes them the best return per line in the whole file.
The standard set: a jump bound to the scroll wheel, a viewmodel toggle, quick buys, dropping the bomb. None of it is an exploit. Each does exactly what your fingers would do, only faster and without fumbling.
The scroll wheel jump is worth its own explanation, including why it beats the spacebar, and that is in our guide to the CS2 bhop bind on scroll.
One rule when adding binds: one key, one action. Multi state toggle scripts look clever and end with you pressing something other than what you intended in the one round where it mattered.
Pro configs and why they rarely help
Every so often a file appears with a player’s name attached and gets treated as a recipe.
Half of what is inside depends on hardware and habit: a sensitivity tuned to one mouse and one mousepad, a viewmodel set for a particular screen, binds laid out for a keyboard you do not own. The other half is audio and video tuned to a machine unlike yours.
Transplanted whole, that produces an unfamiliar game rather than a better one. The sensible use is to read it and steal individual ideas, usually a bind you had not thought of.
When the file is not the problem
There is a specific case where the echo line appears, the file clearly loaded, and one setting still refuses to work.
Most often the command is restricted on the server. A chunk of the console is limited to your own server or requires server commands enabled, and an official match will refuse it regardless of where you typed it. Which commands those are is set out in our list of sv_cheats 1 commands.
The second cause is a typo. The game does not announce it on screen, it writes a quiet line into the console that scrolled past during map load.
The third, and the most irritating, is two contradictory lines in one file. The lower one wins, so a value set twice gives you the second one while you search everywhere except the obvious place.
A second file for practice commands
Splitting the settings into two files is worth the extra minute, because the things you want while playing and the things you want while practising work against each other.
The autoexec holds what should always apply: sensitivity, viewmodel, binds, frame cap. Practice commands are a different animal. Infinite ammo, grenade trajectories, instant respawn and bot control only function on your own server, and an official match refuses them anyway.
Keeping those in a separate file, called on demand, is cleaner than one long file with half its lines inert most of the time. It also means you can hand that file to a friend without exporting your personal sensitivity along with it.
The full set of commands worth putting in it is in our walkthrough of the CS2 practice server config.
Load order, or why settings revert
The game reads its own config first, then your autoexec if the launch option points at it. That is why the file overrides the menu rather than the other way round.
On exit, however, the current state is written back. Change something in the menu mid session and that value lands in the game’s config, where it will lose to your autoexec at the next launch. It looks random and it is simply ordering.
Keep each setting in one place. Either the file or the menu. Mixing both is the source of every “it changed by itself” report.
One copy, two machines
If you play on more than one computer, the file becomes worth more than the settings inside it.
Keep it in any cloud synced folder and copy it into place after installing the game. Rebuilding every bind from memory takes an evening. Copying a file takes a second.
One value does not travel: sensitivity tuned to one mouse behaves differently on another and needs recalculating rather than copying. Everything else transfers unchanged and gives you your own game on a borrowed machine in about a minute.
Frequently asked questions about the CS2 autoexec
Where do I save autoexec.cfg?
In the game folder, under game, then csgo, then cfg. Browse local files in Steam takes you there fastest.
Does it work without a launch option?
Sometimes, and it is not worth relying on. Adding +exec autoexec.cfg settles it permanently.
How do I confirm the file loaded?
Put an echo line in it and look for that text in the console after launch.
Do I need to restart after editing?
No. Type exec autoexec in the console and it reloads.
What is host_writeconfig for?
It forces current settings into the game’s own config so they persist after you close the game.
Can a custom config get me banned?
Not when it uses commands the game exposes normally. Binds and settings are a standard part of it.
Why do commands from a downloaded config do nothing?
Because some of them are leftovers from the previous game. Check in the console whether CS2 recognises a command before keeping it.
Last updated: September 2026
Paths and commands checked in September 2026 against the current build. The list of commands that no longer exist comes from comparing common configs with the game’s own command and variable dumps, and can change with a major update.
CS2 ranks explained: every rank in order and how to climb
- By Bartlomiej Paluch
- 1 day ago
CS2 ranks confuse people because the game runs two separate ratings side by side and calls both of them a rank. One is the familiar badge, awarded per map. The other is a single number in Premier, attached to your account. They measure different things and they move for different reasons.
Two ladders, one account
The badge ladder survived from the previous game: eighteen skill groups from Silver I up to Global Elite. The part people miss is that a badge belongs to a map, not to you. Master Guardian on Mirage and Silver on Ancient is a perfectly normal profile, because those are two independent assessments that never talk to each other.
Premier works differently. You get one number, the CS Rating, running from around a thousand to past forty thousand, and it covers every map at once. The colour beside it changes every five thousand points, which is where the shorthand people use in voice chat comes from.
Premier also requires Prime, and that gate matters more than it sounds. Without it you are looking at the badge ladder only, which is playable but disconnected from the system everyone else is measured by. What the purchase actually buys is set out in our breakdown of whether CS2 Prime is worth it.
Which CS2 rank actually means something
The honest answer annoys people with a high badge on one map.
A map badge describes how you did on that map, possibly six months ago, in a sample of matches you have long forgotten. If you play Mirage almost exclusively, your Silver on Nuke is not a verdict on your aim. It is a note that you never go there.
The CS Rating is the fairer measure. One number, all maps, updated after every match, publicly ranked on leaderboards. Valve built seasons and competition around it, which makes it the currency of the game whether or not you like the format.
If you want to know where you actually stand, look at the number. Treat the badges as souvenirs from specific maps.
What the system is actually scoring
| What happens in the match | How the system reads it |
|---|---|
| a win | the only thing that reliably moves you up |
| a loss with strong personal stats | a smaller loss, still a loss |
| thirty kills in a defeat | does not rescue the result |
| beating a much weaker team | small gain, and a heavy penalty if you slip |
| a wide rank spread in the lobby | folded into what the system expected |
The uncomfortable conclusion sits in the first and third rows together. Personal statistics are a garnish. The core of the calculation is the match result measured against what the system expected from both teams, and that is why a player with a negative kill difference can climb past someone who tops the scoreboard in defeats.
Why you are stuck
The usual complaint is not “I play badly”, it is “I play the same amount and nothing moves”.
That is exactly what the system is designed to produce. Your rating settles at the level where you win about half your matches, and once it has found that level it will keep feeding you matches at fifty percent until something about your play changes.
Hours do not qualify as a change. The cheapest things that do are usually these: knowing one map properly, having a repeatable opening for the round, and saying anything at all to your teammates.
The first of those we have covered in full for the map most people start with, in our rundown of Mirage callouts, because naming a place is the precondition for communicating anything about it.
Rank restrictions when queueing together
The game limits who you can enter ranked matches with, and that limit is frequently the real reason a group cannot play together.
With a wide badge gap, the game refuses to put you in the same competitive match. Premier applies a comparable restriction measured in rating points instead of badges.
The workaround is not a workaround: play unranked modes, or close the gap by playing separately for a while. Borrowed and purchased accounts solve it for a week and end in lost access, since sharing an account is against Steam’s own rules.
What genuinely moves the number
- Commit to two maps. Premier has a veto anyway, so two well known maps remove half the variance from your queue.
- Play openings, not duels. A repeatable entry with full information wins more rounds than winning the fight in the middle.
- Keep calls to three words. Position, how many, what they hold. Everything else is noise.
- Play in short sets. After a third consecutive loss you are worse than you feel, and the system records it.
- Fix the machine once. Stable frames and a settled sensitivity do more than another hour of deathmatch.
That last point sounds like an excuse and is measurable. What actually produces frames, and which commonly recommended commands do nothing at all, is in our guide to increasing FPS in CS2.
Training that shows up in the rating
Playing and practising are different activities, and mixing them is the reason people log thousands of hours without improving.
A match tests what you already know. Practice is for acquiring what you do not, and it needs repetition under controlled conditions: the same grenade, the same entry, ten times in a row, with nobody shooting back.
An empty server and a handful of commands cover it, with nothing to download. The full setup is in our walkthrough of the CS2 practice server config.
Twenty minutes of that before a session is worth more to your rating than two extra hours played tired.
Colour tiers and the plateau they create
Nobody says “I am at twenty two thousand”. They name a colour, and it helps to know why.
The scale is cut into bands of five thousand points, each with its own colour beside the number. Grey at the bottom, upward through the tiers, to the band where a fraction of the population sits.
The practical consequence: changing colour is the only moment progress is visible. Four hundred points inside a band is the same improvement and looks like nothing, which is exactly why people quit a few hundred points short of a new tier and conclude they have hit a ceiling.
What not to do
Do not check your rank on third party sites. Trust data and full rating internals are not public, so anything promising to display them is guessing.
Do not buy a boost. Beyond breaking the platform’s rules, it lands you in matches you cannot read, which produces losing streaks and returns you to where you started with less money.
Do not use ranked as a warm up. Your first matches of the day are statistically your worst, and you are paying for them in rating.
How long a genuine climb takes
A realistic scale helps, since guides promising two colour tiers in a week are selling hope rather than information.
At a steady level of play, the rating stands still. After one real improvement, a map you finally know properly, movement becomes visible across a dozen or so matches, because that is roughly what the system needs to separate a change in skill from a good week.
Large jumps mostly happen on new accounts, where the system is still searching for your level and adjusts boldly. Later corrections are small by design, and mistaking that for stagnation is the most common misreading of the whole system.
Hidden badges and fresh accounts
Two situations that look like bugs and are not.
After a long break, a badge can vanish from your profile. It returns once you play a match on that map, because the game wants a current reference point rather than a year old one.
On a new account you start with no assessment at all, the first matches swing it wildly, and then it decelerates. That early stretch feels like easy progress and sets a false expectation for everything after it.
Neither can be accelerated by anything except playing. There is no command and no setting, despite one circulating every few months.
Frequently asked questions about CS2 ranks
How many ranks are there in CS2?
Eighteen badges in Competitive, from Silver I to Global Elite. Premier has no badges, only a CS Rating with colour bands every five thousand points.
Why is my rank different on every map?
Because Competitive badges belong to maps rather than accounts. The Premier rating is shared across all of them.
Do I need Prime for ranks?
For Premier, yes. The badge ladder is more widely available, but Premier is the system the game is built around now.
Do kills raise your rank?
Marginally. The result of the match, measured against expectation, is what the calculation runs on.
How many matches until I get a rank?
A handful of wins, after which the game issues a first badge or a first number. Early adjustments are large because the system is still estimating you.
Can I see my exact Competitive points?
No. You see a badge, not the number underneath it. Only Premier shows the figure.
Does taking a break lower my rank?
Your badge may be hidden until you play again. The rating itself does not decay for inactivity.
Last updated: September 2026
System behaviour described from public documentation and data gathered by community trackers, checked in September 2026. Valve does not publish the full rating formula, so specific details may differ from what you see on your account.
Xplay.gg review: the servers are the product, the skins are the bonus
- By Bartlomiej Paluch
- 2 days ago
Almost every Xplay.gg review frames the platform as a way to get free skins for playing. That framing undersells it and sets the wrong expectation. It is a network of CS2 practice servers that happens to pay you in coins, and judged that way it makes far more sense.
What an Xplay.gg review usually gets wrong
Over five hundred servers across roughly ten modes: deathmatch, retake, duels, and movement modes like surf and bhop. You play, complete challenges, log in daily, and accumulate coins.
Those coins buy skins in an internal store. There is a battlepass layered on top with progression levels and structured challenges.
The operator is EXCORP GG, the same company behind CS.Money and the Scope.gg stats tracker, which matters mainly because it means the platform is not a one person operation that disappears next year.
What the coins realistically buy
Set expectations properly and the rest of the review makes sense.
Coins accumulate at a rate that produces low tier items over weeks rather than anything expensive over days. This is a reward layer on top of playing, not an income stream, and nobody has furnished an inventory this way.
The honest comparison is against the game’s own weekly drop, and it lands in similar territory: small items, arriving steadily, for time you were spending anyway. Those alternatives are covered in our short guide to free CS2 skins without a deposit.
Why the servers matter more
Here is the part that separates this from task platforms: the time you spend is not wasted even if you never claim anything.
Retake servers put you into post plant situations repeatedly, which is the scenario ordinary matchmaking gives you a handful of times an hour.
Deathmatch produces more duels in twenty minutes than a full competitive match.
Duel servers isolate the one on one, which is where most rounds are actually decided.
Movement modes teach control that transfers directly, and they are the most enjoyable way to practise something tedious.
That is a reasonable training rotation on its own. The coins are payment for doing something you would benefit from regardless, which is a fundamentally better deal than being paid to watch adverts.
How the battlepass changes the pace
The progression layer is what separates a couple of curious evenings from a habit, and it is worth understanding before you start.
Challenges give the sessions a shape: play a specific mode, hit a specific target, unlock the next tier. That structure is the reason people keep coming back, more than the coins themselves.
It also has the usual downside of progression systems. Chasing a challenge in a mode you do not enjoy is how a practice tool turns into a chore, and at that point the reward stops being worth the evening.
The sensible approach is to ignore any challenge that pushes you somewhere you would not otherwise go, and let the rest accumulate slowly.
The trade off nobody mentions
Time on community servers does not count toward the in game weekly drop, which needs official servers.
So you are choosing between two reward systems rather than stacking them. An evening on Xplay earns coins and no progress toward the drop, and an evening in casual matchmaking does the reverse.
For most players the sensible answer is a split: official servers when you want the drop and want to play seriously, community servers when you want repetitions. Nobody tells you this, and it is the single most useful thing to know before starting.
Where it fits against the alternatives
| Route | What you give | What you get |
|---|---|---|
| Xplay servers | playing time you were spending anyway | coins plus genuine practice |
| in game weekly drop | time on official servers | one low tier item a week |
| task platforms | attention and personal data | a few dollars an hour at best |
| trade up contracts | items you already hold | fewer, better items |
Only the first row gives you something beyond the reward itself, and that is the argument for it. We priced the third row properly in our rundown of apps that pay you to play games.
The skin changer, and what it is not
The servers include a feature letting you use skins you do not own while playing there. It is cosmetic and local to that network.
Two things follow. It is genuinely fun and a good way to see what an expensive skin looks like in your hands before buying one. And it changes nothing about your actual inventory, which is worth stating because the feature confuses newer players regularly.
Nothing about it touches your Steam account or carries any risk to it, since it exists entirely on the community servers you are playing on.
The code
Referral code
Xplay.gg: code GETSKINPL adds a starting bonus, which shortens the slowest part, the beginning.
Worth entering because the early stage is where most people give up, and a starting balance makes the store feel reachable rather than theoretical.
Who it suits
- Players who already grind deathmatch or retakes. You are being paid for existing habits.
- Anyone working on aim or movement, since the modes are built for that.
- Players without Prime, since community servers do not require it.
- People who like structured goals, which the battlepass provides.
Who it does not
Anyone chasing a specific expensive skin. The coin rate makes that a very long project, and buying is faster.
Players focused on the weekly drop, since time here does not count toward it.
Anyone who dislikes community server rules, which vary and are not the official experience.
Community servers, and what to expect from them
Anyone who has only played official matchmaking will notice differences immediately, and they are worth knowing about rather than being surprised by.
Rules vary between servers, moderation is done by the operator rather than by Valve, and the atmosphere is looser than a competitive match. That is the trade for having a hundred duels an hour available on demand.
It also means none of it affects your competitive rating, which is either the appeal or the drawback depending on what you came for. If ranked progress is the goal, the setup you actually want is your own server, laid out in our walkthrough of the CS2 practice server config.
Practical notes
- Log in daily even without playing, since daily rewards are a meaningful share of the total.
- Pick one mode and stay in it for a session, because switching constantly teaches nothing.
- Claim rewards promptly rather than accumulating toward something distant.
- Treat coins as a bonus, and judge the platform on whether the servers improved your game.
Xplay.gg review verdict
A solid practice network with a reward layer attached, run by an established operator, and best judged on the servers rather than the store.
If you were already spending evenings in deathmatch, this is straightforwardly better than doing it elsewhere. If you came looking for free skins as an outcome rather than a side effect, the arithmetic will disappoint you, exactly as it does with every route that pays you for time.
A sensible weekly split
Since the two reward systems compete for the same evenings, it helps to decide the split once rather than every time you open the game.
One session on official servers covers the weekly drop and keeps you playing full rounds, which is the format everything else is practice for. Two or three shorter sessions on community servers cover repetitions: aim in deathmatch, decision making in retakes, movement when you want something lighter.
That pattern gets you the drop, the coins and the practice without treating any of it as a job. Anyone doing the opposite, grinding a reward system every evening, usually stops within a month.
Frequently asked questions about Xplay.gg
Is Xplay.gg legit?
It is operated by EXCORP GG, the company behind CS.Money and Scope.gg, and reviews are broadly positive about both servers and payouts.
How do you earn coins?
By playing on the servers, completing challenges, progressing the battlepass and logging in daily.
What can the coins buy?
Skins in the internal store, realistically low tier items over weeks rather than anything expensive quickly.
Does playing there count toward my weekly drop?
No. The in game drop requires official servers, so the two reward systems do not stack.
What is the skin changer?
A cosmetic feature on their servers letting you use skins you do not own. It changes nothing in your Steam inventory.
Do I need Prime?
No. Community servers are open to free accounts.
Is it better than task platforms?
For a CS2 player, usually yes, because the time also improves your game rather than only producing a reward.
Last updated: September 2026
Server counts, reward mechanics and ownership details come from public reviews and the platform’s own pages, checked in September 2026, and can change. This article contains affiliate links: if you register through one, the site may receive a commission, which does not change the terms on your side.
CaseHug review: the free daily cases are the part worth using
- By Bartlomiej Paluch
- 3 days ago
CaseHug is a CS2 case opening site, and reviews of it spend almost all their space on the deposit bonus. The more interesting mechanic is the one that costs nothing: daily openings unlocked through ranks and tasks, reportedly stacking to around fifteen free rewards a day at the top tier.
What this CaseHug review focuses on
It has run since 2022 under a UK registered operator, with provably fair verification on openings. You add funds using skins, a card or crypto, open cases, and move what you get to your Steam account or convert it where supported.
The interface is clean and the flow is fast, which every review agrees on. Public rating sits around 4.4 from roughly 630 reviews, with a trust score of 77 out of 100.
The rating breakdown is worth reading rather than the average: about 73 percent five star and 13 percent one star. That shape, mostly happy with a hard block of unhappy, tells you more than the number.
The free mechanic, which is the useful one
Two systems hand out openings without a deposit.
Daily tasks. Simple actions that unlock repeatable free opens.
Rank progression. Each tier unlocks a free case every twenty four hours, and at maximum rank the combination reportedly reaches around fifteen free rewards a day.
That is the part of the site with a guaranteed return, because the input is time rather than money. What comes out is mostly low value, and low value from nothing is still better than the arithmetic on anything you pay for.
The arithmetic on paid cases
This deserves saying plainly, and it applies to every site in this category rather than this one specifically.
A case costs more than its contents are worth on average. That is not an accusation, it is how the model works. The platform sets prices so that the expected value of what comes out sits below the price of opening, and the difference is the business.
Which means paid opening is entertainment with a price, not a way to acquire skins efficiently. If the goal is a specific item, buying it directly costs less, every time, without exception.
The routes that do not involve paying at all are laid out in our short guide to free CS2 skins without a deposit, and if the goal is money rather than items, our breakdown of how much you lose selling CS2 skins covers the other direction.
How the free layer actually accumulates
Fifteen free openings a day sounds substantial and it is worth understanding what that produces over a month.
Free cases sit at the bottom of the value range, which is exactly what you would expect from something given away. Most openings return items worth pennies, and the occasional one returns something worth listing.
Across a month of daily use that adds up to a modest amount rather than an inventory. The useful comparison is not against paid openings, it is against the other free routes: weekly drops in the game itself, task platforms, and trade up contracts.
Against those, this sits in the middle. It costs more attention than a weekly drop and less time than a survey platform, and the reward scale is similar to both.
What reviewers complain about
| Complaint | How to read it |
|---|---|
| delays on high value withdrawals | the substantive one, and the reason to keep amounts modest |
| additional checks on larger payouts | standard for payment providers, still slow |
| bad luck on openings | not a platform issue, that is the model |
| bonus terms misunderstood | read them before depositing, they are published |
The first row is the one to take seriously. Reviewers report friction specifically when withdrawing something expensive, and that pattern appears often enough across this whole industry to be worth planning around rather than dismissing.
The bonus and the code
Referral code
CaseHug: code GOLDIE adds starting balance without a deposit, plus a percentage on the first top up.
The half of that worth having is the starting balance, because it costs nothing. The deposit percentage is a discount on spending, which is only value if you were going to spend anyway.
Codes in this industry change and expire, so treat any figure you read, here included, as a starting point to verify on the site rather than a promise.
Depositing skins instead of money
One option people use without thinking it through: adding funds by handing over skins rather than paying with a card.
It feels cheaper because no money leaves your account. In value terms it is identical to selling those items at whatever rate the platform applies and then spending the proceeds, and that rate is rarely the best one available.
So the question to ask is whether you would have sold those specific skins at that price for cash. If the answer is no, depositing them is a worse decision wearing a more comfortable disguise.
Provably fair, and what it does not mean
The verification system lets you confirm that an opening was not manipulated after the fact. That is genuinely useful and it is not the same as the odds being good.
A verifiable outcome and an unfavourable expected value coexist perfectly well. Verification tells you the draw was honest, not that the price was fair.
People conflate the two constantly, and the platforms do not go out of their way to separate them.
Who it suits
- People who will use the free daily openings and stop there.
- People who enjoy the opening itself and have budgeted for it as entertainment.
- People who withdraw small amounts, which is where the process runs smoothly.
Who it does not
Anyone after a specific skin. Buying it directly is cheaper, always.
Anyone treating it as a way to make money. The expected value works against you by design.
Anyone who would be upset losing what they deposit. That outcome is the common one.
Sensible rules if you use it
- Use the free openings first and see whether the site behaves before adding anything.
- Withdraw early. Do not accumulate a balance you would mind losing access to.
- Keep withdrawals modest, given the pattern reviewers describe.
- Read the bonus terms before the deposit, not after.
- Decide a figure in advance and treat it as spent the moment you deposit it.
That last one is the difference between an evening of entertainment and a decision you regret, and it has nothing to do with which platform you chose.
CaseHug review verdict
A competent, established site with a genuinely useful free layer and the same underlying economics as every other case opening platform: what you pay for returns less than it costs on average.
Use the daily openings, take the starting balance, and be clear eyed about the paid side. If a specific skin is the goal, the cheaper path is buying it, and we set out the alternatives in our guide to trading or selling CS2 skins.
Getting items out to Steam
Whatever you end up holding on the site is not yours in any meaningful sense until it reaches your Steam account, and that step has its own rules.
Withdrawals go through the same trade system as everything else, which means a valid trade link, mobile authentication settled on your account, and the platform having the item in stock to send.
Once it arrives, the seven day restriction applies exactly as it does to any other trade, and the mechanics are in our piece on the CS2 trade lock. Plan around that if you were intending to sell what you pulled.
Frequently asked questions about CaseHug
Is CaseHug legit?
It has operated since 2022 under a UK registered operator with provably fair verification, and holds a rating around 4.4 from roughly 630 reviews.
Can you open cases for free?
Yes. Daily tasks and rank progression unlock repeatable free openings, reportedly up to around fifteen a day at maximum rank.
Do paid cases return what they cost?
On average, no. Expected value sits below the price of opening, which is how the platform earns.
What does the code give?
Starting balance without a deposit, plus a percentage on the first top up. Terms change, so verify on the site.
What do reviewers complain about most?
Delays and extra checks on high value withdrawals. Smaller payouts are described as straightforward.
What does provably fair actually guarantee?
That an opening was not manipulated. It says nothing about whether the price of the case is favourable.
Is this a good way to get a specific skin?
No. Buying the item directly costs less in every scenario.
Last updated: September 2026
Ratings, bonus terms and free opening figures come from public reviews and the platform’s own pages, checked in September 2026, and can change. Case contents are random and what you pay for returns less than it costs on average. This article contains affiliate links: if you register through one, the site may receive a commission, which does not change the terms on your side.
Tradeit.gg review: cheap for trading, expensive for cashing out
- By Bartlomiej Paluch
- 4 days ago
Tradeit is a bot trading platform, which means you swap items against its own inventory instead of waiting for a buyer. The reviews mostly agree it works well. What they average away is the thing that matters most: swapping items here is cheap, and turning them into money is not.
What this Tradeit.gg review is really about
On a normal marketplace you list an item and wait. Here the site holds a large inventory of skins and trades with you directly, so the exchange happens in seconds.
That speed is the product. The cost of it is the spread: the platform values what it takes slightly below what it gives, and that difference is how it earns.
Nothing about that is hidden or unusual. It is the same model as a currency exchange booth, and it is the reason instant trades are possible at all.
The two very different fees
| What you are doing | Reported cost |
|---|---|
| skin for skin trade | a base of around 2 percent plus a few cents |
| trade involving locked items | up to a further 13 percent depending on hold status |
| overall spread across items | independent estimates of roughly 5 to 13 percent |
| instant conversion to cash | reported as dramatically higher, with figures up to 60 percent cited |
Read the first row against the last one. They describe the same platform doing two different jobs, and the difference between them is larger than the difference between most competing sites.
There is no published fee table, which is worth stating plainly. The numbers above come from independent reviews rather than from a page you can check yourself.
What this means in practice
Use it for what it is good at.
Swapping items: excellent. Instant, cheap, and it avoids two conversions that selling and rebuying would cost you.
Consolidating a pile of cheap skins into something worth holding: also good, for the same reason.
Turning skins into money: use something else. A platform charging a stated fifteen percent will leave you with more, and we went through one in our review of SkinCashier.
That is not a criticism of the site. It is a bot trading platform that also offers a cash out button, and the button is priced like an afterthought.
Why locked items cost more
The extra charge tied to trade hold status is the most interesting part of the pricing, because it is a real business cost rather than an arbitrary surcharge.
An item under a trade lock cannot be resold by the platform for a week. During that time the price can move, and the platform carries that risk instead of you. The surcharge is what the risk costs.
Which gives you a lever: trade items that are already free to move and you avoid the highest tier of that charge entirely. How the lock works is in our piece on the CS2 trade lock.
What the inventory size changes
A bot trading platform is only as good as what it holds, and that is the part people underestimate when comparing sites.
On a large inventory you can usually find something close to what you actually want, which means one trade rather than three. On a thin one you end up taking a near miss and swapping again later, paying the spread twice for a result you did not choose.
That is the practical argument for using a large platform even when a smaller one advertises a slightly better rate. One trade at a slightly worse spread beats two at a slightly better one.
It also explains why these sites hold such large stocks. The inventory is not a showroom, it is the product.
Reputation and scale
The platform has been running since 2017 and holds a public score around 4.7 across roughly 21 700 reviews, which is unusually high for this category.
Longevity matters here more than in most industries, because skin platforms appear and vanish frequently. A site that has processed trades for years has demonstrated the one thing reviews cannot: that it is still there.
The complaints that do appear follow the familiar pattern, and most turn out to be the cash out pricing surprising someone who expected it to match the trading fee.
The code
Referral code
Tradeit.gg: code SZOX adds a bonus to your first trade, which offsets part of the spread.
A first trade bonus is worth taking on a trade you were going to make anyway. It is not a reason to make one, and that distinction is worth keeping in mind with every promotion in this industry.
How to check the spread yourself
- Pick an item you own and note its market price.
- Start a trade for something of similar value without confirming it.
- Compare both sides at market prices and work out the difference.
- Repeat with a locked item to see the hold surcharge in action.
- Repeat with something obscure, where spreads widen everywhere.
Since there is no published table, this is the only way to know what you are paying. It takes five minutes and it beats every review, this one included.
Where it fits among the alternatives
Think of the platforms in this space as three tools rather than a ranking.
Bot trading sites like this one are for exchanging items quickly, and they are the cheapest way to do that.
Instant cash out sites are for turning items into money, and they price that job openly.
The Steam market returns the most and gives you funds you cannot withdraw.
Using one for another’s job is the mistake that produces most of the complaints in this category, and we set out the decision in our guide to trading or selling CS2 skins.
Trading up, and where it stops working
The most common use of a platform like this is turning several mid tier items into one better one, and there is a point where that stops paying.
Each swap costs a spread. One trade toward a specific goal is efficient. Three trades chasing an upgrade cost three spreads, and the item at the end has to be meaningfully better to justify them.
The version that quietly drains an inventory is sideways trading: swapping for something of nearly identical value because it looks better this week. Nothing about that is a bad decision individually, and repeated monthly it is the most reliable way to end up with less than you started with.
Practical notes
Check both sides at market prices before confirming. The interface shows its own valuations, which are not the same thing.
Prefer unlocked items when trading, to avoid the hold surcharge.
Do not chain trades. Each swap costs a spread, and three in a row costs three of them for one upgrade.
Never enter your Steam password anywhere but Steam. A trade link is all any platform needs.
Tradeit.gg review verdict
A strong, long running platform for the specific job of swapping skins quickly, with pricing that is fair for trading and poor for cashing out.
Judge it on the job you actually need doing. If the answer at the end is another item, this is one of the better options available. If the answer is money in your bank account, take the items somewhere that prices that properly and keep this site for what it does well.
Why no published fee table is a problem
Most of this article relies on independent estimates, and that is worth naming as a weakness rather than glossing over.
A stated percentage lets anyone check a platform before committing. A spread built into valuations does not, and the only way to measure it is to start a trade and compare both sides yourself.
The practical effect is that your experience depends on how carefully you look. Someone who checks market prices on both sides gets a good deal here. Someone who trusts the interface valuations may not, and will never know either way.
Frequently asked questions about Tradeit.gg
Is Tradeit.gg legit?
It has operated since 2017 with a public score around 4.7 from roughly 21 700 reviews, which is strong for this category.
What does Tradeit charge?
There is no published table. Independent estimates put the trading spread at roughly 5 to 13 percent, with a small base fee and an additional charge tied to trade hold status.
Is cashing out expensive?
Reportedly yes, and by a wide margin compared with the trading fee. Dedicated cash out platforms are the better route for that.
Why do locked items cost more to trade?
Because the platform cannot resell them for a week and carries the price risk during that time.
How fast are trades?
Seconds, since you are trading against the site’s own inventory rather than waiting for a buyer.
What is the code worth?
A bonus on the first trade. Useful on a trade you were making anyway, not a reason to make one.
Should I use it to consolidate cheap skins?
Yes, that is one of the things it does best, and it avoids the two conversions that selling and rebuying would cost.
Last updated: September 2026
Fee estimates come from independent reviews rather than a published table, checked in September 2026, and can change. This article contains affiliate links: if you register through one, the site may receive a commission, which does not change the terms on your side.
SkinCashier review: a stated 15 percent, which makes it easy to check
- By Bartlomiej Paluch
- 5 days ago
Most instant sale platforms hide their margin inside the price they quote. SkinCashier states it: fifteen percent on a completed sale. That single difference makes the whole thing checkable, and it is the reason this review can be shorter and more definite than most.
What this SkinCashier review comes down to
A quoted percentage lets you do the arithmetic before you commit, rather than reverse engineering a spread afterwards.
Take fifteen percent off a 100 dollar sale and 85 remains, before the payout method takes its own share. Compare that with a platform quoting you 82 and calling it commission free, and the picture reverses.
So the useful question is never whether a site charges a fee. It is what lands in your account at the end, and only a stated percentage lets you work that out in advance.
The full chain on a 100 dollar skin
| Stage | What happens |
|---|---|
| market price | 100 |
| platform cut | 15 percent, stated |
| balance after sale | around 85 |
| payout method | own fee, varies by method |
| minimum withdrawal | from about 0.50, higher on some methods |
The fourth row is where the differences between users come from. Two people selling the same skin can end up several dollars apart purely on how they chose to take the money out.
Reading the fee against the alternatives
That number sounds high until it is placed next to what the alternatives actually cost, so here is the comparison in plain terms.
Selling on the Steam market costs a platform cut and produces funds locked inside Steam, which for most people asking about cashing out is not money at all.
Instant sale platforms advertising no commission typically quote ten to twenty percent below market, and that spread is the fee under another name.
Selling privately avoids every cut and carries the only real risk of losing the item outright.
Against that field, a stated fifteen percent with money arriving in minutes is unremarkable rather than expensive. The thing that makes it easy to recommend is not the number, it is that you can see the number before you commit.
Payout methods, and which to choose
The list is unusually broad: PayPal, bank and SEPA transfer, card, several cryptocurrencies, and gift cards in some regions.
PayPal is the one users consistently describe as near instant, often arriving in under two minutes.
Bank transfer is the sensible option for larger amounts, and it moves at the speed of banking rather than the speed of the platform.
Crypto is fast and unforgiving. A wrong address cannot be undone by anybody.
Gift cards arrive immediately and are worth exactly what you can spend them on, which is less than cash.
Choose the method before deciding how much to sell, because its minimum determines whether one sale is enough to clear the threshold.
Speed, in context
Processing is generally described as one to fifteen minutes once the trade clears, and PayPal often much faster than that.
The phrase to notice is “once the trade clears”. Nothing can start until the item actually reaches the platform, and a locked item cannot be sent at all, which is a Steam restriction rather than a platform failing. The mechanism is in our piece on the CS2 trade lock.
Most complaints about slow payouts anywhere in this industry turn out to be that sequence being misread. The whole chain is laid out in our walkthrough of cashing out CS2 skins.
Scale, and why it matters
Public figures put the platform at around 720 000 registered users and roughly 100 000 transactions a month, with a trust rating near 4.5.
Volume matters in this category for one specific reason: a platform processing a hundred thousand transactions monthly has a working support process, because it has to. Smaller operations often do not, and that is where transactions get stuck.
It is not a guarantee of anything. It is a reason to expect the ordinary case to work smoothly.
Where the model costs you
The cut is not cheap and it is not pretending to be.
Selling the same item yourself on the Steam market returns more, and the funds stay inside Steam. Listing it on a marketplace and waiting for a buyer returns more again, at the cost of time and effort.
What you are buying here is certainty and speed. That is a real product, and it has a price, and the price is stated on the page. Whether it is worth paying depends entirely on whether you need the money this afternoon, which we set out in our guide to trading or selling CS2 skins.
The code
Referral code
SkinCashier: code SZOX adds three percent to the sale, which offsets a fifth of the platform cut.
Three percent on a fifteen percent cut is worth entering, particularly on larger sales where it comfortably exceeds any payout fee. It does not change which platform is cheapest in absolute terms, and it narrows the gap.
Testing it in five minutes
- Pick three items: popular, mid tier, obscure.
- Get quotes without accepting anything.
- Note each as a percentage of market price.
- Repeat elsewhere the same afternoon.
- Compare the obscure item, which is where platforms diverge.
A stated commission makes this test faster here than anywhere else, because you already know what the deduction will be and are only checking the base price it applies to.
Who it suits
- People who want to calculate before selling. The stated percentage makes that possible.
- Small sellers. A low withdrawal minimum means small balances are not stranded.
- Anyone needing money quickly, especially through PayPal.
- Sellers outside the largest markets, given the breadth of payout methods.
Who it does not
Patient sellers. Fifteen percent is a lot to pay for speed you did not need.
Holders of unusual items. Rare patterns and sticker combinations are undervalued by automated pricing everywhere, as we explained in our notes on CS2 inventory value.
Anyone converting money straight back into skins. Two conversions cost more than a swap, and swapping exists precisely for that case.
What a first sale looks like start to finish
Written out once, the process is short enough that most of the anxiety around it disappears.
You log in through Steam’s own window, paste your trade link, and pick the items you want to sell. The site shows an offer, you accept, and a bot sends a trade request. You confirm it on your phone, and the balance appears.
Then you choose a payout method, enter the destination and submit. Depending on the method, the money is there within minutes or by the next working day.
Hands on time: under ten minutes. Everything longer than that is either a rule you did not check or a payment network doing its ordinary job.
Practical checks before the first sale
Confirm the withdrawal minimum for the method you intend to use, not the lowest one advertised.
Refresh your trade link rather than reusing an old one.
Have mobile authentication settled, or Steam holds the trade regardless of what the platform does.
Never type your Steam password anywhere except Steam. A marketplace needs a trade link, and nothing else, ever.
SkinCashier review verdict
SkinCashier does the ordinary thing well and states its terms plainly, which in this category counts for more than it should have to.
Fifteen percent is the price of turning items into money within minutes. If that trade is worth it to you, this is a straightforward way to make it. If it is not, the slower routes return more and always will.
One thing to watch on gift card payouts
Gift cards look attractive because they arrive instantly and sometimes carry a bonus, and they deserve one caution.
A voucher is worth face value only if you were going to spend money in that shop anyway. If you take a card because it was the fastest option and then never use it fully, the effective rate on your sale drops below every other method on the list.
Take them when they match something you were already buying, and take cash otherwise.
Frequently asked questions about SkinCashier
How much does SkinCashier take?
Fifteen percent of a completed sale, stated openly rather than folded into the quoted price.
How fast are payouts?
Usually one to fifteen minutes once the trade clears, with PayPal often arriving in under two.
What is the minimum withdrawal?
From around fifty cents, though individual methods have higher thresholds.
Which payout methods are available?
PayPal, bank and SEPA transfer, card, several cryptocurrencies and, depending on region, gift cards.
Is SkinCashier legit?
It operates at scale, with figures around 720 000 users and roughly 100 000 transactions a month, and a trust rating near 4.5.
Why is my sale not going through?
Most often a trade lock or an outdated trade link. Neither is something the platform can override.
Is fifteen percent expensive?
Compared with selling yourself, yes. Compared with platforms hiding a larger spread inside the quote, frequently not.
Last updated: September 2026
Fees, payout times and user figures come from public reviews and the platform’s own pages, checked in September 2026, and can change. This article contains affiliate links: if you register through one, the site may receive a commission, which does not change the terms on your side.
