-
Posts
5,927 -
Joined
-
Last visited
-
Days Won
199
Content Type
Profiles
Warranty Claims
Downloads
Forums
Store
Services
Downloads Plus Support
DOWNLOADS EXTRA
Everything posted by nivex
-
- 634 comments
-
- #rust
- #rust plugin
- (and 6 more)
-
@Covfefewhat is that from? it would need to use my hook OnPlayerExitedRaidableBase and check if they're dead, then use the BaseName variable for the discord messages void OnPlayerExitedRaidableBase(BasePlayer player, Vector3 Location, bool AllowPVP, int mode, string ID, float spawnTime, float despawnTime, float loadTime, ulong ownerid, string BaseName)
-
- 634 comments
-
- 1
-
-
- #rust
- #rust plugin
- (and 6 more)
-
that was very entertaining. well done
-
- 634 comments
-
- #rust
- #rust plugin
- (and 6 more)
-
@bobbybaker82 if (position == Vector3.zero) { return null; } Vector3.zero is 0,0,0 and this plugin does not spawn npcs there. thats where the server sends entities to be destroyed. so you have another plugin interfering. as for code locks, those will be destroyed in next update during server shutdown
-
- 634 comments
-
- 1
-
-
- #rust
- #rust plugin
- (and 6 more)
-
sorry, but I have no plans to add anymore difficulties. there's no point for me to keep adding more difficulties, as it will continuously be requested, and some people don't use more than 3. so the only solution is to make it where the user can specify their own difficulties, however few or however many they want. but that would require a huge portion of the code be rewritten which i simply don't have the time for atm
-
i've included time periods in the next update. i'll consider days of the week options in a later update @KingSizeKevin "Automatic Conversions Disabled Between These Times": [ { "Enabled": false, "Start Time": "23:59", "End Time": "11:59" }, { "Enabled": false, "Start Time": "11:59", "End Time": "23:59" } ],
- 634 comments
-
- 2
-
-
-
- #rust
- #rust plugin
- (and 6 more)
-
- 634 comments
-
- #rust
- #rust plugin
- (and 6 more)
-
the hooks provide much more than that. you can find them by searching CallHook in the .cs. i will add the basename to each though! private object[] hookObjects { get { return new object[] { Location, (int)Options.Mode, AllowPVP, ID, spawnTime, despawnTime, loadTime, ownerId, GetOwner(), GetRaiders(), GetIntruders(), Entities, BaseName }; } }