Jump to content

ZEODE

Creator Pro
  • Posts

    1,878
  • Joined

  • Last visited

  • Days Won

    17

Everything posted by ZEODE

  1. ZEODE

    tank spawn bug

    I will see if there is anything else that can be done. I could easily add an option that would cause the tank to destroy any object that it collides with. This would solve this issue. I will try and add this to the next update. I am also working on improving the path finding and AI of the tank.
  2. ZEODE

    tank spawn bug

    You can prevent people calling them near these objects by enabling the strict proximity check in the config: "Strict Proximity Check (Checks for objects close to signal, prevents APC landing on objects)": true, "Strict Proximity Check Radius": 25.0, This prevents players throwing the signal near objects within the radius you set, however, once the plane is called, players could still places these objects after to try and trap it. There is not a lot I can do about that, besides despawning the Bradley if it lands within these structures?
  3. After looking into this more, I am noticing that the XPWeaponData.json file is being wiped on plugin load. I added simple debug code to the plugin: try { Puts($"DEBUG: Loading WeaponData..."); _weaponData = _WeaponData.ReadObject<WeaponData>(); _weaponCache = _weaponData.WeaponRecords; Puts($"DEBUG: Loading WeaponData Done!"); } catch { Puts($"DEBUG: Error, creating new WeaponData"); _weaponData = new WeaponData(); } The console output: XPerience was compiled successfully in 2570ms Unloaded plugin XPerience v1.7.4 by MACHIN3 [XPerience] DEBUG: Loading WeaponData... [XPerience] DEBUG: Error, creating new WeaponData [XPerience] Checking Config for invalid settings.. [XPerience] Config Check Complete For some reason the plugin is failing to load existing WeaponData, therefore it is catching the error and creating a new data. Then, when someone reloads their weapon with an already modified primaryMagazine.capacity, it saves this as the defaultammo amount in the data file, then each time calculates off this incorrect and increasing defaultammo value: if (!_weaponCache.ContainsKey(projectile.net.ID)) { int defaultammo = projectile.primaryMagazine.capacity; As we can see from your code, if the weapon is not in the WeaponData, then it adds it and initially uses the primaryMagazine.capacity as the defaultammo amount. This would be fine, but because the weapon is already modified, it creates this problem which is compounded each time the server restarts or plugin is reloaded. Do you have any ideas why the WeaponData is failing to load? Thanks.
  4. Hi, the weaponry stat is currently bugged. It boosts mag size correctly the first time someone uses it. However, after each server restart or reload of plugin, the maxammo setting is multiplied again each time the plugin loads. I tried swapping the hook and it had the same result. Please see the video below: https://files.markiii-rust.co.uk/monthly/xp_maxammo_bug.mp4
  5. ZEODE

    What does this mean

    Changed Status from Pending to Closed
  6. ZEODE

    What does this mean

    Hey, thanks for the report! Whoops! I left it in there when I was testing some other stuff. It can be ignored and will be removed on the next update
  7. ZEODE

    Failed to call hook CanStackItem

    Changed Status from Pending to Closed Changed Fixed In to 1.0.31
  8. ZEODE

    Failed to call hook CanStackItem

    Hi, thanks for the report. Can you let me know when and how often this is happening please? Do you know which items you are trying to stack when you get this error?
  9. Changed Status from Pending to Closed Changed Fixed In to 1.0.23
  10. ZEODE

    Wrong Plugin Version Description

    Changed Status from Pending to Closed
  11. ZEODE

    Wrong Plugin Version Description

    Ooops, ty
  12. Ваша конфигурация выглядит хорошо, нужные вам настройки установлены правилЬно. Кажется, у вас естЬ еще один плагин, который управляет разблокировкой ящиков для других игроков? "Lock looting crates to owner": true, "Unlock looting crates to others after time in seconds (0 = Never)": 0, Это хорошо, так что должен бытЬ другой плагин, разблокирующий ящики.
  13. Привет, если игрок не атакует вертолет в течение определенного времени или слишком долго прячется от вертолета, он отключится по умолчанию в Rust. Существуют и другие параметры конфигурации, которые также могут повлиятЬ на это, пожалуйста, опубликуйте свой файл конфигурации, чтобы я мог вам помочЬ.
  14. ZEODE

    Latest Update Broken

    Changed Status from Pending to Closed
  15. Is that the exact message you get in chat? Because that is not what my plugin will say in chat if you are not owner. Do you have a screen shot?
  16. ZEODE

    Latest Update Broken

    Did you find anything? Are you still having this isue?
  17. ZEODE

    Spam in Console

    Locked crates is doable yeah, nobody else has asked for them and I haven't even thought about adding them either, but I think that would make a good addition. I will add that to the next update. Supply Signal Alerts is a very old plugin, but very simple so not much can go wrong with it in the 5 years since it was updated. I wrote this plugin to be compatible with Inbound, which a lot of people use. But if you want to carry on using SS Alerts, you could just open SupplySignalAlerts.cs in an editor and change this: if (!(entity is SupplySignal)) to: if (!(entity is SupplySignal) || entity.skinID != 0) That should make it only announce for normal Supply Signals.
  18. ZEODE

    Spam in Console

    Changed Status from Pending to Not a Bug
  19. ZEODE

    Spam in Console

    Hi, thanks for your purchase. Unfortunately that plugin is bound to conflict with this plugin as there is no control over what Helicopters it applies to. Also, my plugin uses its own custom targeting method. I don't recommend using both plugins together.
  20. ZEODE

    Heli Signals

    I'm confused as to why it will be blocking damage to the patrol heli. Are you talking about Wipe Protection by FastBurst? If so, it is written to only act on building blocks. What steps have you taken to make sure it is that plugin blocking the damage?
  21. I don't think I was being condescending at all. I've not heard from anyone that there has been an issue with Loot Defender, unless like I said, my memory has failed me. LootDefender looks for the OwnerID of the Bradley to decide whether to block damage or not, likewise with the gibs and crates for looting etc. My plugin assigns the calling players OwnerID to all these entities, so it shouldn't cause an error like this. If the team are unable to damage or loot, then the Clan/Team options in the config are not enabled. When you say "it said not owner of this and wouldnt let even the owners of the event loot crates or mine the debris.", do you mean my plugin, or Loot Defender gave these messages?
  22. I know a lot of servers who use this with LootDefender without any issues, including mine. I can't remember it ever not being compatible, but my memory is terrible Anyway, yes its compatible.
  23. ZEODE

    Heli Signals

    This is all configurable, I have added the default config to the plugin page so you can look at all the options :)
  24. ZEODE

    Heli Signals

    Hi, yes there is an adjustable cooldown, or different cooldown by permission. You can also limit the total number of active helis
  25. ZEODE

    custom loot

    Changed Status from Pending to Not a Bug
2m

Downloads

Total number of downloads.

9.4k

Customers

Total customers served.

137.2k

Files Sold

Total number of files sold.

2.9m

Payments Processed

Total payments processed.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.