Jump to content

Soller

Creator
  • Posts

    157
  • Joined

  • Last visited

Everything posted by Soller

  1. I have already discussed this bug with him, I think he also understands that this problem is almost elusive.
  2. This would be a good option if the coordinates of the problematic NPC were precisely known. But this problem is very fickle, and it can take many weeks to find the source of the problem. And most likely the problem is not in any particular NPC, but simply for some reason one of the NPC sometimes spawns incorrectly.
  3. No, that's not the reason. The reason turned out to be BetterNpc, and it's not permanent. Restarting the plugin solves the problem. And I don't have enough knowledge to create a plugin that will kill non-existent invisible deer. Object remover, for example, does not see these deer. I'd rather write a plugin that will restart BetterNpc every time this annoying message appears in the console.
  4. I've visited 0.0 again now, and judging by the sounds there is at least one deer there. But it's impossible to kill him, he's invisible.
  5. I never use custom Maps. Plugins that NPCs can create: BetterNpc, Convoy, ArmoredTrain. But I also had this problem when I didn't have these plugins. This is generally a very common problem. I played with GPT a bit, added some parameters to it, and it turned out to be a simple plugin for searching for entities outside of NavMesh. It seems to work, it gives some coordinates of the NPC and animals outside the NavMesh, but when I teleport to these coordinates there is nothing there. But maybe these entities immediately disappeared or fell under the map. I'll check again when there's non-stop spam messages. There is nothing at 0 0.
  6. Failed to create agent because it is not close enough to the NavMesh Failed to create agent because it is not close enough to the NavMesh Failed to create agent because it is not close enough to the NavMesh Failed to create agent because it is not close enough to the NavMesh I understand that this has been a hackneyed topic for a long time, and no one knows exactly what the reason is and how to get rid of it. I know that many people advise not to touch anything if it works fine. In fact, this does not interfere with the operation of the server, but it periodically makes the server log file simply huge. I am tormented by one question, has no one created a tool for finding the source of these messages after so many years of this problem? Or is there already such a tool, but no one knows about it? Even the game developers can't answer how to find the source of these messages.
  7. Soller

    Raidable Bases

    English is not my native language, which is probably why I don't notice everything.)
  8. Soller

    Raidable Bases

    There is one more point. After the update, many players began to complain that they were not allowed into the raid base, which no one had raided yet. He writes that it is necessary to end the raid at another point, and indicates a square in which there is no raid base, and the player did not start the raid there.
  9. Soller

    Raidable Bases

    It's just that some parameters indicate that these are seconds, and there are integers, for example 3600. And in "Maintained Events" there is a comma number, and it is not written that these are seconds, so I got confused.)
  10. Soller

    Raidable Bases

    It's been a long time since I've set up this plugin, or any plug-ins in general, and everything works that way. Remind the dummy, is this parameter in minutes or seconds? "Time To Wait Between Spawns"
  11. Soller

    Abandoned Bases

    On my server, the minimum number of foundations is set to 1 in the settings, so that even the smallest houses can be cleaned. I also have the option enabled for the base made raidable by the player to be PVP. I have repeatedly noticed that some players use this to kill another player. They put the capboard tool on the foundation when the player is nearby, and activate the raid. And I thought it would be nice if there were different minimum requirements for the number of foundations and walls for different types of events. Can this be implemented in one of the following updates?
  12. Soller

    Raidable Bases

    Ty, for some reason I didn't think of that myself.
  13. Soller

    Raidable Bases

    I have an idea for my server, but it looks like there are no such settings in the plugin, or I can't figure out how to do it. I will try to explain in as much detail as possible so that there are no misunderstandings. All levels of difficulty are used on my server. Easy, Medium, and Hard will spawn automatically. And Expert and Nightmare can only be bought. All bases on my server are in PVE mode only. I want to add one base of the Nigthmare level to the automatic spawn, so that with automatic spawn it was PVP, and with the purchase it remained PVE, and all other bases remained PVE. Is there no such feature in the plugin right now, or can I not find it?
  14. It doesn't work. Apparently this is not possible, or I just do not know how to do it.
  15. I'm trying to create a plug-in with a flashlight effect so that the light turns on in front of the player in the same way he would hold a flashlight on, but nothing works. My experiments led me to a fireball, which I can create on command. [ChatCommand("spawnfire")] private void SpawnFire(BasePlayer player, string command, string[] args) { Vector3 basePosition = player.transform.position + player.eyes.HeadForward() * 2f; float groundHeight = TerrainMeta.HeightMap.GetHeight(basePosition); Vector3 position = new Vector3(basePosition.x, groundHeight + 1.0f, basePosition.z); var fireball = GameManager.server.CreateEntity("assets/bundled/prefabs/fireball.prefab", position) as FireBall; if (fireball != null) { fireball.Spawn(); timer.Once(20f, () => { if (fireball != null && !fireball.IsDestroyed) fireball.Kill(); }); player.ChatMessage($"Fireball generated: {position}"); } else { player.ChatMessage("Error: failed to create fireball."); } } But apart from fireballs, nothing works. I've already tried about a hundred prefabs. Is there a glow effect prefab that can do this, or is it impossible at all?
  16. Soller

    No Bag Cooldown

    Need fix after update. Failed to compile: Cannot implicitly convert type 'PooledList<SleepingBag>' to 'SleepingBag[]' | Line: 33, Pos: 26
  17. Soller

    BetterTC

    The plugin works very very very slowly. It processes one block per second. Is it possible to make the plugin improve and repair all the blocks at the same time?
  18. Soller

    Plugin interference

    Changed Status from Pending to Closed Changed Fixed In to 1.0.1
  19. Soller

    Plugin interference

    It looks like a message from the Faux Amdin plugin. This has nothing to do with the map itself.
  20. Soller

    Monument Owner

    I have removed Debug("CanLootEntity") from the plugin code, and the spam has stopped.
  21. Soller

    Monument Owner

    After update 1.7.2 spam: [MonumentOwner] CanLootEntity [MonumentOwner] CanLootEntity [MonumentOwner] CanLootEntity [MonumentOwner] CanLootEntity [MonumentOwner] CanLootEntity [MonumentOwner] CanLootEntity [MonumentOwner] CanLootEntity
  22. Soller

    Monument Owner

    I often see this error in the console. What is the reason for this? Failed to call hook 'OnPlayerDeath' on plugin 'MonumentOwner v1.7.0' (NullReferenceException: ) at (wrapper managed-to-native) UnityEngine.Component.get_transform(UnityEngine.Component) at Oxide.Plugins.MonumentOwner+Controller.OnExitPlayer (BasePlayer player) [0x000af] in <22d350d2b1dc407ba7b8761c4d770aea>:0 at Oxide.Plugins.MonumentOwner.OnPlayerDeath (BasePlayer player, HitInfo info) [0x0002e] in <22d350d2b1dc407ba7b8761c4d770aea>:0 at Oxide.Plugins.MonumentOwner.DirectCallHook (System.String name, System.Object& ret, System.Object[] args) [0x0062f] in <22d350d2b1dc407ba7b8761c4d770aea>:0 at Oxide.Plugins.CSharpPlugin.InvokeMethod (Oxide.Core.Plugins.HookMethod method, System.Object[] args) [0x00079] in <42f9bedc659b4f4786eb778d3cd58968>:0 at Oxide.Core.Plugins.CSPlugin.OnCallHook (System.String name, System.Object[] args) [0x000de] in <8cb2d664f1574f2b96d53f1c1869d96a>:0 at Oxide.Core.Plugins.Plugin.CallHook (System.String hook, System.Object[] args) [0x00060] in <8cb2d664f1574f2b96d53f1c1869d96a>:0
  23. Soller

    Limit Entities

    In the previous plugin, I had a plants limit on the plants, which significantly reduced the load on the server. But there's one bug that the developer can't fix, so I decided to switch to your plugin.
  24. Soller

    Limit Entities

    Need update for new prefabs. [Limit Entities] You have 1 untracked prefabs in your config file! To get a list of all supported prefabs use console command limitentities.list assets/prefabs/plants/rose/rose.entity.prefab I had some players who broke the server with a huge number of seeds, it needs to be limited.
  25. Soller

    SimplePVE

    In my opinion, it looks much better this way, and it doesn't interfere with anything. It doesn't bother your eyes. "PVE/PVP Icon UI Settings": { "Anchor Min": "0.5 0", "Anchor Max": "0.5 0", "Offset Min": "-198.999 0", "Offset Max": "181 16" } For PVEUI: Image = { Color = "0.3 0.8 0.1 0.3", FadeIn = 1f } For PVPUI: Image = { Color = "0.8 0.2 0.2 0.6", FadeIn = 1f }
2.1m

Downloads

Total number of downloads.

9.7k

Customers

Total customers served.

140.8k

Files Sold

Total number of files sold.

3m

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.