Jump to content

aimacak

Member
  • Posts

    1,761
  • Joined

  • Last visited

  • Days Won

    11

Everything posted by aimacak

  1. aimacak

    Events do not end

    @Kleementin Hello again, I'm sorry if the previous message looks strange, I had to process a lot of tickets. Are you currently using the plugin? There are a lot of changes in version 1.2.2, if youll have any difficulties using it, please let me know.
  2. aimacak

    Change NPC type?

    @Zilch Hello again, at the moment in the SkillTree configuration there is an option to configure the XP output by NPC names, right?
  3. aimacak

    Need some help

    Hello, I'm sorry for the long answer, BetterNpc_old is just a backup of the files for you that you had when you started the update, the same files were created for the NpcSpawn and BetterNpc configurations. For Military Tunnel and Missile Silo, you just need to copy the list of coordinates for each preset from the default data files to your files.
  4. Hello "Time during which a player cannot start an event of any level after completing an event of any level [sec.]"
  5. aimacak

    need help?

    Hello, so you missed something with the fresh installation, either the BetterNpc files or the presets for NpcSpawn that come with BetterNpc. This hook is needed for these settings in CargoShip.json: "Respawn NPCs when the cargo ship docks at the harbor? [true/false]": true, "Respawn NPCs when new crates spawn? [true/false]": false, I tested it on Carbon and everything is fine, so I think this is a consequence of errors when loading the plugin.
  6. aimacak

    Loot Tables

    Hello, I'm sorry for the long answer, most likely yes, you need table type 0, as you said. The second question is, what exactly are you interested in? In the latest update, a rare problem should be completely fixed when both cargo ships sail into the port, when the event starts, the plugin tries to find a free port, if it finds it, it starts on it, if it does not find it, it outputs a message to the console stating that there are no free ports.
  7. @DarthKhrûm Hello again, there are many updates in 1.2.2, including the command has become much simpler
  8. aimacak

    Boss Monster

    You are welcome, so I always ask for more specifics, your video gave a lot of insight into what you were trying to say. You can also send a video about "stun-lock" or other situations that you will learn about, I will try to check this, but also do not forget that the possibilities of plug-ins are not unlimited, so sometimes you have to get rid of something only by some kind of configuration, sacrifice something.. As I said before, I hope in the future, when Facepunch is fully completed by new NavMesh, many unpleasant moments will resolve themselves.
  9. aimacak

    Boss Monster

    @hid333 Hello again, have you checked the behavior after the release of NpcSpawn 3.3.8? (now 3.4.0)
  10. @tsuyoshi_ito Hello again, fixed in 3.4.0 version, check it please.
  11. aimacak

    Corpses despawning

    @Rusty Hook Hello again, after a while I reread this ticket and got confused Do you want to remove animal corpses or not?
  12. aimacak

    Huh?

    We all know this, KpucTaJI probably had some reasons for dragging this out.
  13. Hello, thank you for such a detailed report, I passed the information to KpucTaJI, if any information appears, I will let you know.
  14. aimacak

    Old wolf prefab detected

    Everything is working as intended; the message indicates that Gen2 Animals are currently under development. Until KpucTaJI finishes this work, bears appear instead of wolves and a message is displayed in the console. It’s not an error message—it’s information for administrators. It’s a shame that many people didn’t realize this
  15. aimacak

    Npc Spawn

    Hello, most likely this preset is specified in one of the custom files that were attached to the custom map, you can contact the custom map developer with this. Also you can rename these presets one by one via server console command (PresetRename OldPresetName NewPresetName: PresetRename Ремонтник-70c43b Repairman-70c43b The command will rename both the preset files themselves to data/NpcSpawn/Preset/ and in all BetterNpc files.
  16. aimacak

    Old wolf prefab detected

    Hello, this message contains all the necessary information for the server administrator, after your request Gen2 Animals will not get faster, thank you
  17. aimacak

    NullReferenceException

    I'm sorry, but I really don't understand what you're asking me to do. This ticket refers to NpcSpawn, but this is not the most important thing, I did not find the error that you indicated in the first message in the log files that you sent me. You also didn't specify anything, so I don't understand anything. You don't have to ask me or beg me to do anything like that, just tell me more about your problem if you think it's related to plugins. If you're asking me to figure out why your server is lagging, then I'm unlikely to help you with this, because I provide support for KpucTaJI plugins. It is more convenient to discuss such cases in discord, because there is a high probability that we will communicate in real time. Thank you.
  18. aimacak

    NullReferenceException

    Add me in discord please, i think for us will be very difficult understand each other
  19. aimacak

    NullReferenceException

    There’s no need to pay I took a quick look at your files but couldn't find any mention of the error you originally described; could you tell me which file it's in? Perhaps you sent the wrong files? Also, you can provide some of the information yourself—it doesn't necessarily have to come from the logs. You can also add me on Discord if that works for you: @shrpndfcsd
  20. aimacak

    Merchant/Collector

    Hello, what moment of the event are you talking about? When the debt collector arrives, they simply stand for the specified time from the configuration: "The time the debt collector stays inside the supermarket [sec.]": 300,
  21. aimacak

    NullReferenceException

    Hello, can you provide some additional information? Which plugin does this happen in? Screenshots, videos, plugin configuration, whatever.. And can you send the full error code from the server logs file?
  22. aimacak

    they can't be killed

    Thanks, yeah, i found it. Replace please this method in *.cs this is a good fix, at least until the fix from KpucTaJI. The thing was, when security killed Scientist, a wave of new security appeared, and it became attached to Scientist, but it no longer exists. In this fix, if the Scientsit no longer exist, they will be attached to the Pilot. private IEnumerator DestroySnowmobile(SnowmobileData data) { yield return CoroutineEx.waitForSeconds(1f); if (data.Driver.IsExists()) { data.Driver.EnsureDismounted(); data.Driver.Kill(); } ScientistNPC driver = SpawnSnowmobileNpc(data.Snowmobile.transform.position, false, false); _ins.NpcSpawn.Call("SetParent", driver, Scientist.IsExists() ? Scientist.transform : Pilot.transform, Vector3.zero, 1f); Scientists.Add(driver); if (data.Passenger.IsExists()) { data.Passenger.EnsureDismounted(); data.Passenger.Kill(); } ScientistNPC passenger = SpawnSnowmobileNpc(data.Snowmobile.transform.position, false, false); _ins.NpcSpawn.Call("SetParent", passenger, Scientist.IsExists() ? Scientist.transform : Pilot.transform, Vector3.zero, 1f); Scientists.Add(passenger); if (_ins.ActivePveMode) _ins.PveMode.Call("EventAddScientists", _ins.Name, new HashSet<ulong> { driver.net.ID.Value, passenger.net.ID.Value }); yield return CoroutineEx.waitForSeconds(1f); if (data.Snowmobile.IsExists()) { EntityFuelSystem fuelSystem = data.Snowmobile.GetFuelSystem() as EntityFuelSystem; fuelSystem.GetFuelContainer().inventory.ClearItemsContainer(); data.Snowmobile.Kill(); } Snowmobiles.Remove(data); }
  23. @SpookyBoo12 Hello again, we've added this to the roadmap, I can't say anything about the timing of the addition.

About Us

Codefling is the largest marketplace for plugins, maps, tools, and more, making it easy for customers to discover new content and for creators to monetize their work.

Downloads
3m
Total downloads
Customers
12k
Customers served
Files Sold
170.1k
Total sales
Payments
3.7m
Processed total
×
×
  • 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.