-
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
-
2.4.9 released to fix scheduled events not spawning there are some reimplemented features as well. nothing really needs edited in the profiles unless you want to change the amount of npcs that spawn. i don't recommend adding more npcs as that will only serve to degrade server performance accuracy settings should be ideal for all servers
-
@Delltus @Baron Von Finchus Accuracy per weapon implemented in next update "Weapon Accuracy (0 - 100)": { "AK47": 15.0, "Bolt Rifle": 15.0, "Compound Bow": 15.0, "Crossbow": 15.0, "Double Barrel Shotgun": 15.0, "Eoka": 15.0, "L96": 15.0, "LR300": 15.0, "M249": 15.0, "M39": 15.0, "M92": 15.0, "MP5": 15.0, "Nailgun": 15.0, "Pump Shotgun": 15.0, "Python": 15.0, "Revolver": 15.0, "Semi Auto Pistol": 15.0, "Semi Auto Rifle": 15.0, "Spas12": 15.0, "Speargun": 15.0, "SMG": 15.0, "Snowball Gun": 15.0, "Thompson": 15.0, "Waterpipe Shotgun": 15.0 },
-
If you own multiple tier packages... they are now unique and you can update Tier 1 or Tier 2 package to 1.0.6 Tier 3 package is unchanged Download the respective tier(s) and copy the new base files from the data/copypaste/ folder in the zip archive into your oxide/data/copypaste/ folder For TIER 1 use the console commands: rb.config add "Easy Bases" raideasy11 raideasy12 rb.config add "Medium Bases" raidmed11 raidmed12 rb.config add "Hard Bases" raidhard11 raidhard12 rb.config add "Expert Bases" raidexpert11 raidexpert12 rb.config add "Nightmare Bases" raidnightmare11 raidnightmare12 For TIER 2 use the console commands: rb.config add "Easy Bases" raideasy13 raideasy14 raideasy15 raideasy16 raideasy17 rb.config add "Medium Bases" raidmed13 raidmed14 raidmed15 raidmed16 raidmed17 rb.config add "Hard Bases" raidhard13 raidhard14 raidhard15 raidhard16 raidhard17 rb.config add "Expert Bases" raidexpert13 raidexpert14 raidexpert15 raidexpert16 raidexpert17 rb.config add "Nightmare Bases" raidnightmare13 raidnightmare14 raidnightmare15 raidnightmare16 raidnightmare17
-
If you own multiple tier packages... they are now unique and you can update Tier 1 or Tier 2 package to 1.0.6 Tier 3 package is unchanged Download the respective tier(s) and copy the new base files from the data/copypaste/ folder in the zip archive into your oxide/data/copypaste/ folder For TIER 1 use the console commands: rb.config add "Easy Bases" raideasy11 raideasy12 rb.config add "Medium Bases" raidmed11 raidmed12 rb.config add "Hard Bases" raidhard11 raidhard12 rb.config add "Expert Bases" raidexpert11 raidexpert12 rb.config add "Nightmare Bases" raidnightmare11 raidnightmare12 For TIER 2 use the console commands: rb.config add "Easy Bases" raideasy13 raideasy14 raideasy15 raideasy16 raideasy17 rb.config add "Medium Bases" raidmed13 raidmed14 raidmed15 raidmed16 raidmed17 rb.config add "Hard Bases" raidhard13 raidhard14 raidhard15 raidhard16 raidhard17 rb.config add "Expert Bases" raidexpert13 raidexpert14 raidexpert15 raidexpert16 raidexpert17 rb.config add "Nightmare Bases" raidnightmare13 raidnightmare14 raidnightmare15 raidnightmare16 raidnightmare17
-
If you own multiple tier packages... they are now unique and you can update Tier 1 or Tier 2 package to 1.0.6 Tier 3 package is unchanged Download the respective tier(s) and copy the new base files from the data/copypaste/ folder in the zip archive into your oxide/data/copypaste/ folder For TIER 1 use the console commands: rb.config add "Easy Bases" raideasy11 raideasy12 rb.config add "Medium Bases" raidmed11 raidmed12 rb.config add "Hard Bases" raidhard11 raidhard12 rb.config add "Expert Bases" raidexpert11 raidexpert12 rb.config add "Nightmare Bases" raidnightmare11 raidnightmare12 For TIER 2 use the console commands: rb.config add "Easy Bases" raideasy13 raideasy14 raideasy15 raideasy16 raideasy17 rb.config add "Medium Bases" raidmed13 raidmed14 raidmed15 raidmed16 raidmed17 rb.config add "Hard Bases" raidhard13 raidhard14 raidhard15 raidhard16 raidhard17 rb.config add "Expert Bases" raidexpert13 raidexpert14 raidexpert15 raidexpert16 raidexpert17 rb.config add "Nightmare Bases" raidnightmare13 raidnightmare14 raidnightmare15 raidnightmare16 raidnightmare17
-
- 634 comments
-
- #rust
- #rust plugin
- (and 6 more)
-
despawn issue during server restarts is fixed in the next update! woo! private void OnServerShutdown() { IsUnloading = true; SaveData(); RaidableBase.Unload(Raids.ToList(), true); Scheduled.StopCoroutine(); Maintained.StopCoroutine(); SpawnManager.StopCoroutine(); GridController.StopCoroutine(); DestroyAll(); } SaveData(); was missing from this method. RIP. so sorry that I overlooked this!
-
just found the bug that's causing some servers to not spawn any bases. this is a unity bug and has been reported to Facepunch. i've also implemented a workaround for it in the next update. private static bool IsSafeZone(Vector3 a) { for (int i = 0; i < TriggerSafeZone.allSafeZones.Count; i++) { var triggerSafeZone = TriggerSafeZone.allSafeZones[i]; try { if (InRange2D(triggerSafeZone.transform.position, a, triggerSafeZone.triggerCollider.GetRadius(triggerSafeZone.transform.localScale) + config.Settings.Management.MonumentDistance)) { return true; } } catch { return true; } } return false; } here is the workaround if any want to use it. just replace the existing code block for the IsSafeZone method with this code. or if that sounds too difficult for you then rename the existing IsSafeZone method to anything else such as IsSafeZoneBROKEN, and put this workaround code above that
-
@thepiercedweirdoheya sorry about this issue. I have not been able to reproduce it but I will figure it out. good suggestion but I already do this by recording all entity unique identifiers to find and kill them after a restart. I will try to reproduce during a restart. good info ty and let me know of any other details regardless of how important you think they are.
-
@Andres Siilbekwhat update? and you can simply copy the copypaste folders contents to your server from any update, as you would any other base just note that an update to one tier does not mean it is necessary for the other tiers. lower tiers do not have as many bases so changes may not be needed to tier 1 or 2. same applies with the free version vs the paid version. they're different versions. just because one requires an update does not mean the other will
-
@tyneariaaye change the anchors in the config under UI => Buyable UI @BEEF SUPREMEhi, no, bases do not persist. there are plans to make this optional as it has been requested dozens of times but no eta on this unfortunately. it's fairly complicated and I have high priority issues to deal with first. someone did contribute towards this so that will help when I get to it @mrdecoder @Rubiks-Q-Bert @chuck norristhis can only be caused by an error. can one of you provide me with it? it would likely be in the server logs and not in your oxide logs @spencer clearyive responded to your support thread @CHUCK DIXX no, it would need to be highly customized to do this. likely better suited in its own plugin. i will note this for later as ive thought about creating it a few times now sorry to everyone for the late replies. I was recovering from a serious medical issue