-
Posts
2,335 -
Joined
-
Last visited
-
Days Won
9
Content Type
Profiles
Warranty Claims
Downloads
Forums
Store
Services
Downloads Plus Support
DOWNLOADS EXTRA
Everything posted by IIIaKa
-
By @Koshara private bool IsOnTournament(ulong userid) { return ArenaTournament != null && ArenaTournament.Call<bool>("IsOnTournament", userid); }
-
I would also recommend using the overloaded OnEntitySpawned(Bike bike) and OnEntityKill(Bike bike) hooks so that only bikes will be processed by your hook. In OnServerInitialized, add a check in a foreach loop like this: foreach (var entity in BaseNetworkable.serverEntities) { if (entity is Bike bike) OnEntitySpawned(bike); } I'm not trying to be picky, just offering friendly advice
- 14 comments
-
- 2
-
-
- #motorbike
- #attachment
-
(and 4 more)
Tagged with:
-
@Torken Hello, cool plugin. However, you should add an option to disable console logs as there's too much spam. And pookie and boxes can be picked up with a hammer. I also noticed that in the Init method, you're unsubscribing and resubscribing to hooks, which is illogical. By default, you are subscribed to all the hooks you have. Therefore, in Init, you need to unsubscribe from OnEntitySpawned, OnEntityKill and then subscribe back to them at the end of the OnServerInitialized method. Also, you should remove the line: Subscribe(nameof(OnServerInitialized));
- 14 comments
-
- 1
-
-
- #motorbike
- #attachment
-
(and 4 more)
Tagged with:
-
If the issue persists, feel free to report it in this thread.
-
Changed Status from Work in Progress to Not a Bug
-
@Ac3 In your settings, in the section "The list of items(short name) available for the composter. Leave empty to use vanilla" an empty string "" is specified. There should either be a list of allowed items or the list should be left empty. Here is how it should be: But I will also add a check for valid names in the next update.
-
Hi. This plugin only provides a tool for displaying bars. When and how to display them is determined by other plugins. If you know the C# programming language, you can write your own plugin that works with the AdvancedStatus API and the API of the plugin that provides temporary VIP groups.
-
- 76 comments
-
- 2
-
-
-
- #rust
- #industrial
- (and 25 more)
-
Changed Status from Pending to Work in Progress
-
Hi, could you provide your config file?
-
- 18 comments
-
- #rust
- #banditcamp
- (and 22 more)
-
- 18 comments
-
- #rust
- #banditcamp
- (and 22 more)
-
- 120 comments
-
- 1
-
-
- #rust
- #real
-
(and 56 more)
Tagged with:
- #rust
- #real
- #pve
- #pvp
- #solo
- #build
- #friendly
- #raid
- #npc
- #monument
- #monuments
- #loot
- #looting
- #farm
- #newbie
- #custom
- #bar
- #ui
- #cui
- #panel
- #vehicle
- #claim
- #limit
- #limits
- #sleeping
- #bag
- #sleeping bag
- #bed
- #shelter
- #permission
- #permissions
- #vip
- #economy
- #economics
- #rad
- #town
- #radtown
- #queue
- #bypass
- #vehicles
- #raidable
- #base
- #bases
- #raidablebases
- #raider
- #raiders
- #humannpc
- #event
- #events
- #copy
- #paste
- #copypaste
- #plugin
- #plugins
- #umod
- #oxide
- #carbon
- #iiiaka
-
If the issue persists, feel free to report it in this thread.
-
Changed Status from Work in Progress to Not a Bug
-
In those versions, it served as a placeholder to fill that space. After adding scrolling, I replaced the button with text indicating how many items are displayed on the page. This was done because scrolling was a new feature, and few people knew about it. For example, on the personal page, you may notice that the text indicates 10 items are displayed, even though only 5 are visible. If you used this button, I can consider introducing an option to choose between text or a button.
- 18 comments
-
- #rust
- #banditcamp
- (and 22 more)
-
If the issue persists, feel free to report it in this thread.
-
Changed Status from Work in Progress to Closed Changed Fixed In to 0.1.5
-
@IanHendry80 Hello, the issue was with AdvancedStatus. Please re-download both plugins, the problem should be resolved.
-
Changed Status from Pending to Work in Progress
-
By @IanHendry80
-
@Ahmed Alkaabi You need to fill the range from 0 to 1. In your version, there is no color for the range from 0 to 0.00111 and from 0.00222 to 1.
-
- 18 comments
-
- #rust
- #banditcamp
- (and 22 more)
-
Unfortunately, colors can only be linked to percentages. For example, 500 units of fuel is approximately ~0.00222%. You need to create this range and assign it the desired color. For example, a range from 0% to 0.1(10%) in your case would be from 0 to 22500 units of fuel.