-
Posts
365 -
Joined
Content Type
Profiles
Warranty Claims
Downloads
Forums
Store
Support
DOWNLOADS EXTRA
Services
Everything posted by MON@H
-
Changed Status from Pending to Cant Reproduce
-
My answer remains the same: I can't reproduce the problem you described. I suspect you have another plugin causing it. Until you provide me with more detailed information so I can reproduce the issue, I can't help you. How can I "fix what isn't broken"?
-
Changed Status from Pending to Not a Bug
-
I can't (and shouldn't) control what entities other plugins are spawning. Limit Entities plugin is using hooks: CanBuild - to prevent player from placing an entity OnEntitySpawned / OnEntityKill - to track spawned/destroyed entities. Tracking entities relies on OwnerID, so if this field is unset (OwnerID == 0) when entity is spawned (entity.spawn()) it will be ignored. My guess is that's what happens now. If you want these entities to be tracked, ask author to set entity.OwnerID = player.userID before calling entity.spawn(). This will make them trackable by Limit Entities. However preventing players from spawning entities (to respect the limits) is a bit more complicated, the "easiest way" atm is to call LimitEntities.Call("CanBuild") or you may ask author to reach me if he need some specific api call, I can add it.
-
Call IsBasementEntity when each entity spawns, instead of changing the owner field after the entity spawns? - Optimization? Never heard of it. I mean, I can implement this check, it will only affect those who have this plugin installed, but I suggest going down the path I suggested.
-
The easiest way to make Limit Entities to ignore entity spawned by a custom plugin is to spawn that entity without OwnerID set (e.g. OwnerID = 0) and set it to userid after (NextTick for example) entity was spawned. This way OnEntitySpawned hook (which Limit Entities uses to track spawned entities) will ignore this entity. If that's what you want
-
Changed Status from Pending to Closed
-
https://codefling.com/files/support/23297-any-chance-you-could/
-
Since I don't use Abounded Bases, I can't tell for sure. I will ask @nivex if he have some thoughts about this, but when I fixed reported errors in API (which AB calls), I tested it and it was accurate. If you really want to investigate, try to set "Log Level (Debug, Info, Warning, Error, Off)": "Debug" and do dome stuff like claim the raid, placing TC etc. I need exact scenario, so I could reproduce it on my server, then I will be able to fix it.
-
What I'm trying to say is that I can't reproduce it, so until then I don't know how to fix it. I need more details about how exactly you placing the TS over the limit, what exactly are you doing?
-
Changed Status from Pending to Cant Reproduce
-
I don't see any errors in the code logic and can't reproduce the problem. Please provide more information so I can reproduce the problem and fix it.
-
- 6 comments
-
- #items
- #admin tool
-
(and 3 more)
Tagged with:
-
Changed Status from Pending to Not a Bug
-
Limit Entities has nothing to do with errors you posted.
-
Changed Status from Pending to Cant Reproduce
-
-
Firstly, the plugin in question did not provide a public API to determine its activity in any way. Secondly, it is not the task of this plugin to exclude/influence the activity of other plugins.
-
Changed Status from Pending to Not a Bug
-
@snapple I try not to complicate things unnecessarily. Notifications about the limit of a specific object are quite clear, and messages about the general limit are secondary. If you have a complex permission system with many limits, I think it is more logical to use a separate plugin to inform the player, like info/menu, etc.
-
Changed Fixed In from 2.3.1 to 2.3.2
-
This is because prefabs, that shouldn't be null are null. I can add checks into plugin it will not produce error, but it will not work, since prefabs are null...
-
While NRE is fixed, there is still an issue with some prefabs can be broken after this wipe/ update. You will get something like [Limit Entities] You have 11 untracked prefabs in your config file! To get a list of all supported prefabs use console command limitentities.list assets/content/props/strobe light/strobelight.prefab assets/prefabs/deployable/hitch & trough/hitchtrough.deployed.prefab assets/prefabs/deployable/search light/searchlight.deployed.prefab assets/prefabs/deployable/windmill/electric.windmill.small.prefab assets/prefabs/deployable/campfire/campfire.prefab assets/prefabs/deployable/ceiling light/ceilinglight.deployed.prefab assets/prefabs/deployable/furnace.large/furnace.large.prefab assets/prefabs/deployable/furnace/furnace.prefab assets/prefabs/deployable/oil refinery/refinery_small_deployed.prefab assets/prefabs/deployable/playerioents/electricfurnace/electricfurnace.deployed.prefab assets/prefabs/npc/sam_site_turret/sam_site_turret_deployed.prefab This is not related to the plugin. I'm not sure what the problem is exactly, as I see it on one server and not on another. I need more time to investigate further.
-
Changed Status from Work in Progress to Fixed Changed Fixed In to 2.3.1
