Jump to content

aimacak

Member
  • Posts

    1,783
  • Joined

  • Last visited

  • Days Won

    11

Everything posted by aimacak

  1. Hello, I apologize for the delayed response This is the second time we’ve been impressed by your approach to creating appeals, thank you I’ve asked KpucTaJI to take a look
  2. aimacak

    Hello

    Its because in Looting of crates value for economic was null, i dont know how you get it, but you can change null to {}, or setting up economic for crates. its your: "Economy setting (total values will be added up and rewarded at the end of the event)": { "Which economy plugins do you want to use? (Economics, Server Rewards, IQEconomic)": [], "The minimum value that a player must collect to get points for the economy": 0.0, "Looting of crates": null, "Killing an NPC": 0.0, "Opening the first door": 0.0, "Opening the second door": 0.0, "List of commands that are executed in the console at the end of the event ({steamid} - the player who collected the highest number of points)": null }, default: "Economy setting (total values will be added up and rewarded at the end of the event)": { "Which economy plugins do you want to use? (Economics, Server Rewards, IQEconomic)": [ "Economics", "Server Rewards", "IQEconomic" ], "The minimum value that a player must collect to get points for the economy": 0.0, "Looting of crates": { "crate_normal": 0.3, "crate_normal_2": 0.2, "crate_normal_2_food": 0.1, "crate_normal_2_medical": 0.1 }, "Killing an NPC": 0.3, "Opening the first door": 0.4, "Opening the second door": 0.4, "List of commands that are executed in the console at the end of the event ({steamid} - the player who collected the highest number of points)": [] }, you can make this for disable: "Economy setting (total values will be added up and rewarded at the end of the event)": { "Which economy plugins do you want to use? (Economics, Server Rewards, IQEconomic)": [ "Economics", "Server Rewards", "IQEconomic" ], "The minimum value that a player must collect to get points for the economy": 0.0, "Looting of crates": {}, "Killing an NPC": 0.3, "Opening the first door": 0.4, "Opening the second door": 0.4, "List of commands that are executed in the console at the end of the event ({steamid} - the player who collected the highest number of points)": [] },
  3. aimacak

    Hello

    Hello, send your config please
  4. aimacak

    Npcs not roaming arround

    I’ve checked your files, everything is working. Did everything get fixed without the sleep mode? Let me repeat once again: the sleep mode cannot affect their movement if you’re within the range where this mode is disabled. But if you’re in stealth within that range, the NPC won’t wake up from the sleep mode.
  5. aimacak

    Boss Monster

    Hello, thank you for trying to help, we are aware of this problem, please do not mislead other users, this will not fix the problem, because to use Gen2 animals, which include Wolf2, KpucTaJI first needs to update AnimalSpawn, which KpucTaJI does as much as possible. I apologize. Indeed, what you can do is either change “Wolf” to “Bear” in the data files of the Wolf plugin, or change the line you specified — not to “wolf2” but to “bear”. This way, you won’t have to edit the configuration, and when you update the plugins to support Gen2 animals, you won’t have to edit it again. string prefab = radiusActions.AnimalAbility.Type == "Wolf" ? "assets/rust.ai/agents/bear/bear.prefab" : radiusActions.AnimalAbility.Type == "Bear" ? "assets/rust.ai/agents/bear/bear.prefab" : "assets/rust.ai/agents/bear/polarbear.prefab";
  6. aimacak

    Npcs not roaming arround

    Can you send one or couple of spawn point from BetterNpc and presets from NpcSpawn, which are using in it?
  7. Thanks. As far as we can tell from the logs, you don't have the NpcSpawn plugin installed; there was actually an update for it, so please check that.
  8. Hello, can you show server logs after try to load plugin?
  9. Hello, this error simply means that for some reason, it was not possible to check the plugin version for its relevance on the KpucTaJI web server. This could be a problem on the server side, not necessarily on your side. This cannot affect the unload of the plugin in any way. Please send all messages that appear when attempting to load the plugin.
  10. aimacak

    Npcs not roaming arround

    Hello, theyre has sleep mode enable? and you sure that you checked it not in Vanish or Rust invis? You dont using new nav mesh (beta)?
  11. @MrLiquid Can you check the server logs to see if there were any errors after compiling BossMonster or 10 seconds after that, when the Bosses spawned? Or reload BossMonster and check it again please.
  12. aimacak

    Wolves

    Hello, according to my information, KpucTaJI periodically works on developing new animals, but it’s probably not that simple — after all, he can’t just add one Gen2 animal
  13. Hello, I have passed the information on to KpucTaJI, thanks.
  14. aimacak

    Dynamic PVP

    Changed Status from Pending to Closed
  15. aimacak

    Dynamic PVP

    @dustyhansen Hello again, Dynamic PvP dev already added it in last version, you can using SkinID from my previous message https://umod.org/community/dynamic-pvp/58653-harborevent-support?page=1#post-3
  16. aimacak

    Boss Monster

    If you use the PveMode plugin by KpucTaJI, in its configuration you can change the time after which the damage calculation from players against NPCs (Bosses too) will reset, or you can use the LootDefender plugin on uMod; it has several parameters for Boss Monster. These nuances are in the roadmap; when KpucTaJI updates BossMonster, I think this and other functionality will be added to the BossMonster plugin itself.
  17. Open /data/DefendableBases/Base/*.json and double check that you dont have locations in default monuments: { "Name (not edited)": "A", "List of monument locations": [], "Radius of the base zone (not edited)": 50.0, "Health points for The General": 1000.0, "List of rooms": [ { ...
  18. aimacak

    Boss Monster

    When a corpse is removed, Rust automatically creates a bag with loot from it; the plugin has no effect on this. Double‑check the configured loot again, or make a backup and upload the default presets of Bosses to the server and check the loot on them.
  19. aimacak

    Boss Monster

    Hmm, loot from Boss or from players? how can a boss skill delete the bag after the boss itself has died?
  20. aimacak

    Dynamic PVP

    Hello, I apologize. You can fix this for yourself in the DynamicPVP plugin in this way. You can also suggest these fixes to the plugin developer; there’s no point in doing this in HarborEvent. A new line should be specified for void HandleCargoState(CargoShip cargoShip, bool state): if (cargoShip.skinID == 81182151852251420) return; The updated code should look like this once you've added the new line: private void HandleCargoState(CargoShip cargoShip, bool state) { if (!cargoShip || null == cargoShip.net) { return; } if (cargoShip.skinID == 81182151852251420) return; ... }
  21. aimacak

    console reload

    Changed Status from Pending to Feature Request
  22. aimacak

    console reload

    @Papi Rusty Hello, I apologize for the situation in the ticket. We have added this to the roadmap; unfortunately, I can’t promise anything regarding the timing of its addition.
  23. aimacak

    Loot Tables

    Changed Status from Pending to Closed
  24. aimacak

    Lions Tigers and bears

    Hello again, I’ve discussed this with KpucTaJI several times. It seems there’s no way to get rid of the error, since the sound mentioned in the error has been removed from the game and is now played automatically when Nexus is moored. Perhaps the error will fix itself in the upcoming updates, as it seems FacePunch still wants to add it to the game.
  25. aimacak

    Discord message localisation

    Changed Status from Pending to Feature Request

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.7k
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.