Supported Games
SimpleLogo
Display a custom logo on player screens with support for animated slideshows.
Features
- Display custom logos from image URLs
- Create GIF-like animations by rotating through multiple images
- Fully customizable position and appearance
- Permission-based visibility control
- Player toggle command to show/hide the logo
- Saves player preferences across server restarts
Dependencies
Required:
- ImageLibrary - Must be installed for this plugin to work
Installation
- Install ImageLibrary plugin
- Place
SimpleLogo.csin youroxide/pluginsfolder - Plugin will generate a default configuration file on first load
Configuration
The plugin creates a configuration file at oxide/config/SimpleLogo.json:
{
"UI": {
"BackgroundMainColor": "0 0 0 0",
"BackgroundMainURL": [
"http://i.imgur.com/KVmbhyB.png"
],
"GUIAnchorMax": "0.15 0.1",
"GUIAnchorMin": "0.01 0.02",
"IntervalBetweenImage": 30
}
}
Configuration Options
| Option | Type | Default | Description ||--------|------|---------|-------------|| BackgroundMainColor | String (RGBA) | "0 0 0 0" | Background color in RGBA format (0-1 range). "0 0 0 0" = transparent || BackgroundMainURL | Array | ["http://..."] | List of image URLs. Multiple URLs create a slideshow effect || GUIAnchorMin | String | "0.01 0.02" | Bottom-left anchor point (X Y coordinates, 0-1 range) || GUIAnchorMax | String | "0.15 0.1" | Top-right anchor point (X Y coordinates, 0-1 range) || IntervalBetweenImage | Integer | 30 | Seconds between image transitions (only applies with multiple images) |
Position Examples
Bottom Left (default):
"GUIAnchorMin": "0.01 0.02",
"GUIAnchorMax": "0.15 0.1"
Top Right:
"GUIAnchorMin": "0.85 0.90",
"GUIAnchorMax": "0.99 0.98"
Center:
"GUIAnchorMin": "0.45 0.45",
"GUIAnchorMax": "0.55 0.55"
Creating a Slideshow
To create an animated effect, add multiple image URLs:
"BackgroundMainURL": [
"https://i.imgur.com/image1.png",
"https://i.imgur.com/image2.png",
"https://i.imgur.com/image3.png"
],
"IntervalBetweenImage": 5
This will rotate through the images every 5 seconds.
Permissions
simplelogo.display
Default: Not granted
oxide.grant group default simplelogo.display
Players need this permission to see the logo. Players without this permission won't see anything.
simplelogo.nodisplay
Default: Not granted
oxide.grant user PlayerName simplelogo.nodisplay
Overrides the display permission. Use this to hide the logo from specific players (e.g., streamers who don't want it in recordings).
Note:simplelogo.nodisplay takes priority over simplelogo.display
Commands
/sl
Permission: None required
Description: Toggle logo visibility for yourself
/sl
Your preference is saved and persists across server restarts.
Example output:
Logo hidden
Logo displayed
Image Requirements
- Format: PNG, JPG, or any format supported by ImageLibrary
- Hosting: Images must be hosted on a publicly accessible URL
- Recommended size: 256x256 pixels or smaller for best performance
- Transparency: PNG format recommended for logos with transparency
Troubleshooting
Logo not appearing?
- Check ImageLibrary is installed:
oxide.plugins
You should see ImageLibrary in the list.
- Check permissions:
oxide.show user YourName simplelogo.display
Check if you toggled it off:Type
/slto toggle visibility.Check console for errors:Look for messages like:
"ImageLibrary isn't loaded !""No url registered !""Empty URL at index X"
Images not loading?
- Verify URLs are accessible (test in browser)
- Check ImageLibrary console for download errors
- Wait a few seconds after server start for images to cache
Slideshow not working?
- Ensure you have multiple URLs in
BackgroundMainURL - Check
IntervalBetweenImageis set to a positive number - Reload the plugin:
oxide.reload SimpleLogo
Developer Notes
Data Storage
Player preferences are stored in oxide/data/SimpleLogo.json:
{
"76561198012345678": true,
"76561198087654321": false
}
true= logo hiddenfalse= logo displayed
Hooks Used
OnServerInitialized()- Initialize pluginOnPlayerConnected()- Show logo to connecting playersUnload()- Cleanup and save data
Support
For issues or suggestions, please visit the plugin support thread.
The original author may request that this plugin be removed and there is a risk that the plugin may be unavailable in the future.
Note that the current maintainer may not have permission to assign a license to the plugin if they are not the original author, so explicit permission would need to be obtained from the original author in order for the plugin to remain openly available and guarantee that it will be around for all to enjoy going forward.

