Rust plugin
Oxide C# scrap + tiers + votestats.
Step-by-step guide
From server listing to automatic rewards — Rust.
-
Create the server listing
Add your Rust server on VoteServeur — create my listing. You get the
server_tokenin the panel. -
Download the ZIP pack
Sign in, pick your server in the right panel → Ready-to-use ZIP. The token is injected automatically.
-
Install on the server
Unzip into
oxide/plugins/— theserver_tokenis already in the ZIP. -
Test the claim
Vote on the listing with the reward checkbox + your Steam ID (64-bit). The script polls
/api/v1/votes/pendingthen/votes/claim-steam(~15 s) — whenclaimed = 1, give the reward once. -
Configure monthly tiers
Edit tiers in the pack (YAML / Lua / JSON). The plugin reads
/api/v1/votes/player(votes_month) for progressive rewards.
Full server guide: Create a Rust server · API docs
Vote → reward flow
- The player votes on the Rust listing with the reward checkbox + their in-game name (Steam recommended).
- Your script polls
/votes/pendingthen claims (every ~15 s). claimed = 1→ give the reward once for that vote.- Monthly tiers use
/api/v1/votes/player(votes_month).
Install — Rust
Native pack — unzip into oxide/plugins/. The server_token is already written in the ZIP config.
Monthly tiers (example)
Editable in the pack (YAML / Lua / JSON per game). Placeholders: {player} {votes_month} {votes_total}.
-
7+
Palier 7
inventory.giveto {player} scrap 250 -
15+
Palier 15
inventory.giveto {player} supply.signal 1 -
30+
Palier 30
inventory.giveto {player} scrap 1000
Endpoints
GET /api/v1/votes/pending?server_token=…
GET /api/v1/votes/claim?server_token=…&identity=…
GET /api/v1/votes/player?server_token=…&playername=…
GET /api/v1/votes/check?server_token=…&playername=…
GET /api/v1/votes/top?server_token=…&period=month&limit=10
GET /api/v1/server?server_token=…