Jump to content

S0TR

Member
  • Posts

    47
  • Joined

  • Last visited

About S0TR

  • Birthday January 21

Recent Profile Visitors

1,993 profile views

S0TR's Achievements

Contributor

Contributor (5/15)

  • Collaborator
  • Reacting Well
  • One Month Later
  • First Post
  • Week One Done

Recent Badges

16

Reputation

  1. S0TR

    Raidable Bases

    @aimacak He said he would look into possibly making them persist after restarts. A multitude of factors could have been the reason for the player I mentioned not know a restart was coming; I wasn't saying anything against the plugin, the said player, or anything else. The player prepped and built a raid base in front of the Raidable, and for whatever reason did not know a restart was coming (maybe he built the raid base hours prior? I do not know for sure) then after restart the Raidable spawned elsewhere. Again, was not a big deal at all, I was simply inquiring about if they could respawn at the same locations or not should they not be raided yet.
  2. S0TR

    Raidable Bases

    Hey nivex, I suppose I might be overlooking something but wanted to reach out to confirm. I am hoping to get the base locations to persist after server restarts. What seems to be happening is the current bases on the map prior to restart do not return to their previous locations post restart; the plugin spawns the bases at new locations. Is there is an option I am overlooking to get base locations to persist after server restarts? This led to a situation where a player of mine was preparing to perform a raid, yet my server was also about to restart. He set himself up in front of the Raidable ready for when the server came back online, and after it did come back up, the base he was about to raid was not in front of him anymore; it was spawned at a different location. Not a huge deal, but it was brought to my attention the effort he went through to put up a raid base for the Raidable only to have it be for naught when the server restarted !
  3. S0TR

    Better Npc

    To make NPCs more "aggressive" and/or stronger, go into your data/BetterNpc files and modify how your Npcs function. For example, you would modify these lines inside the data/BetterNpc/ "Enabled? [true/false]": true, "Minimum numbers - Day": 25, "Maximum numbers - Day": 25, "Minimum numbers - Night": 25, "Maximum numbers - Night": 25, "NPCs setting": { "Names": [ "Pollar Bear Man" ], "Health": 130.0, "Roam Range": 50.0, "Chase Range": 30.0, "Attack Range Multiplier": 1.0, "Sense Range": 35.0, "Target Memory Duration [sec.]": 10.0, "Scale damage": 0.8, "Aim Cone Scale": 1.2, "Detect the target only in the NPC's viewing vision cone? [true/false]": true, "Vision Cone": 135.0, "Speed": 6.5, "Minimum time of appearance after death (not used for Events) [sec.]": 1200.0, "Maximum time of appearance after death (not used for Events) [sec.]": 1800.0, "Disable radio effects? [true/false]": true, "Is this a stationary NPC? [true/false]": false, "Remove a corpse after death? (it is recommended to use the true value to improve performance) [true/false]": true, "Wear items": [ { "ShortName": "coffeecan.helmet", "SkinID (0 - default)": 2503956851 }, { "ShortName": "hoodie", "SkinID (0 - default)": 2730818336 }, { "ShortName": "pants", "SkinID (0 - default)": 2730813975 }, { "ShortName": "shoes.boots", "SkinID (0 - default)": 2530900232 }, { "ShortName": "burlap.gloves", "SkinID (0 - default)": 2454377972 } ], "Belt items": [ { "ShortName": "smg.mp5", "Amount": 1, "SkinID (0 - default)": 0, "Mods": [ "weapon.mod.holosight", "weapon.mod.flashlight" ], "Ammo": "" }, { "ShortName": "syringe.medical", "Amount": 1, "SkinID (0 - default)": 0, "Mods": [], "Ammo": "" } ], Increase these values to have faster, stronger, and more alert Npcs "Health": 130.0, "Roam Range": 50.0, "Chase Range": 30.0, "Attack Range Multiplier": 1.0, "Sense Range": 35.0, "Target Memory Duration [sec.]": 10.0, "Scale damage": 0.8, "Aim Cone Scale": 1.2, "Detect the target only in the NPC's viewing vision cone? [true/false]": true, "Vision Cone": 135.0, "Speed": 6.5, Increase their "Health" to be harder to kill "Roam Range" so they can walk around further "Chase Range" so they can follow your players further "Attack Range Multiple" makes them hit harder at distance "Sense Range" gives them the ability to sense and attack your players from father away (probably the option you're looking for in terms of aggression) "Target Memory" allows them to remember and stay aggressive to a certain player for longer "Scale Damage" increases their overall damage "Aim Cone" determines the spread of their shots (smaller cone = more accurate) "Detect The Target Only In The NPCs Viewing Cone" determines if you want players to sneak around NPCs or if the NPC senses and attacks them right away "Vision Cone" is the NPC sight "Speed" is how fast they move in general. Change these lines to give your NPCs better armor, weapons and other goodies such as F1 grenades and more "Wear items": [ { "ShortName": "coffeecan.helmet", "SkinID (0 - default)": 2503956851 }, { "ShortName": "hoodie", "SkinID (0 - default)": 2730818336 }, { "ShortName": "pants", "SkinID (0 - default)": 2730813975 }, { "ShortName": "shoes.boots", "SkinID (0 - default)": 2530900232 }, { "ShortName": "burlap.gloves", "SkinID (0 - default)": 2454377972 } ], "Belt items": [ { "ShortName": "smg.mp5", "Amount": 1, "SkinID (0 - default)": 0, "Mods": [ "weapon.mod.holosight", "weapon.mod.flashlight" ], "Ammo": "" }, { "ShortName": "syringe.medical", "Amount": 1, "SkinID (0 - default)": 0, "Mods": [], "Ammo": "" } ],
  4. S0TR

    AI Translation (PRO)

    Looks like you might need to go into your config file and make sure you have the correct API key (and other various ChatGPT options) set. If those are set correctly, go into your OpenAI account and make sure your API key wasn't changed or set as inactive. That's where I would start debugging given the error messages your provided.
  5. S0TR

    Convoy Reforged

    Looks like you need to go into your NpcSpawn config file and change some values. That error is showing that NpcSpawn has something (such as if Npcs can damage each other etc) set to false while Convoy is set to true, and since NpcSpawn controls Convoy it is overriding the function causing your conflict. I could be wrong, but I would start there for the debug process
  6. S0TR

    Better Npc

    If you're talking about this plugin -> codefling.com/npcspawn - Yes, this is necessary. Other NPC spawning plugins do not work with BetterNpc, you must have NpcSpawn
  7. S0TR

    Better Npc

    Yes, there is a folder inside /data/BetterNpc called "Custom". I could not tell how to exactly configure a custom monument, but it is possible for sure.
  8. S0TR

    Better Npc

    Yes, inside the /data/BetterNpc folder you can set the number of NPCs you want any and all monuments, including Oil Rigs, Cargo Ship, Bradley/Heli crashes, monuments that normally don't have NPCs, and more. You can either remove the default NPCs and only have yours or leave the default and include yours with them. Regarding your question about randomly spawning NPCs, there are options in the /data/BetterNpc folder for Biomes and Road spawns, each with their own types (Arctic, Desert, Wide Roads, Dirt Roads etc). With these options, you set the number of NPCs you want, and they spawn randomly throughout the world on those Biomes/Roads so your players will encounter them at random times, at random locations. You'll have to go inside the NpcSpawn plugin specifically, not BetterNpc, to make these (and any plugin that NpcSpawn controls) attack other types of NPCs. A mouthful, yes, but for example when I set inside the /config/NpcSpawn file for them to attack other NPCs, my BetterNpcs attack my Convoy NPCs and vice versa; it's quite fun to hear chaos and gunfights go down between NPCs By far a great investment for me, I would highly recommend if someone is creating a PvE, or a mix of PvP/PvE, server
  9. S0TR

    AI Translation (PRO)

    Hey, sorry about the delay response! Holidays! I can certainly give you the line of code I added to get the messages to log into your console. I recommend DMing me directly so we can communicate more effectively. Speak soon
  10. S0TR

    Quest System

    I am highly contemplating getting this plugin but am on the fence. Being able to spawn different NPCs that give different quests, by means of BotRespawn or HumanNPC, would set me over to get this in a heartbeat. I'd want to set NPCs throughout my world, either in random locations I set or in building I build, and have them each with different quests or just a single one. Have the in game map show quest markers, and allow one of the quest to be killing certain NPCs or bosses from other plugins (like BetterNPC and the likes). I am essentially trying to build a full RPG world, complete with SkillTree, Quest System, TruePvE, Raidable Bases, BetterNPCs roaming the maps, no Tech Tree, Event plugins (Convoy, Train, PilotEject) everywhere, etc etc. A real Skyrim/Fallout RPG experience with an incredibly detailed storyline and set of main/side quests to give my players 30 days of gameplay before a Force Wipe. This plugin seems to be a MUST have for me, it's just missing some key components I think my worlds really need!
  11. S0TR

    AI Translation (PRO)

    It's bug free, does not need updated, and future proof at the moment. It works and works well. Was a good investment for me!
  12. S0TR

    Raidable Bases

    You got it, I'll re-enable it one of my two servers and let you know how it performs
  13. S0TR

    AI Translation (PRO)

    Interested in a way we are able to still allow chats to log into the console when using this plugin. Everything works flawlessly, but when it's active all in-game chats no longer show in my console. Would I need to create my own Fork for it and send to you to use in an update or can you implement the functionality yourself? Never mind, it was a simple line of code I added to the main .cs file and now chats log to console It became more than just a simple line of code. I have added the option to select a default language code for your server console in the config (ie. server admins speak English, so the default lang would be set to "en") and when anyone types in game chat, not only does the plugin function as expected in translating the messages to and from players communicating, but the messages are also now logged into the console only in the default language set in the config. I will be ironing out some lines of code and then offering this Fork to the Dev in hopes they will update their plugin with my improvements UPDATE: I finished my Fork of this plugin. Adding implementation of Console Logs for Chats, both Global and Team; both translated to the language set in the config and eliminated any redundant logging. Also added a check for the AI to skip translations for players who's default language is the one a message was sent as. For example, if someone types in English, any players who's default language is English will not have the chat translated for them; the chat will be sent as-is. This avoids situations when someone is using slang terms and the AI attempts to translate it, completely changing what was said and losing the context of the message. This also helps remove any unnecessary translations for "LOL" or similar text lingo. At the same time, all this will improve performance of the plugin, given it does not need to translate certain languages. I will be attempted to gift this Fork to the Dev so he can use it as a whole, or take chunks of my code, and push an update for the plugin ON A SIDE NOTE: The AI sometimes responds in the server console something along the lines of "LOL = Laugh out loud", or "<3 = heart", and at one point a player on my server sent in chat "?" and the AI responded in the console saying "Sure, send me a message and I will translate it for you". We want to avoid those situations because believe that also throws off the translation for certain players. Replacing the default prompt in the Config with this one below avoids just that "Prompt": "Translate the following message into $lang. If the message consists only of symbols (like ?, !!!) or emotes (such as :), :P), pass it through without translation. When symbols or emotes appear within a longer message, retain their placement as per the target language conventions. Under no circumstances should you refer to the fact that you are an AI, explain any limitations, or say that something could not be translated. Only return the translated message:\r\n\r\n$text"
  14. S0TR

    Airfield Event

    I don't know how hard it would be.. but do you think we can we get language files at some point for all your events? Airfield, LaunchSiteHelipad and CargoPlaneCrash? I know you already have the event start up/end messages inside the main .cs file of the plugin already, but separating them into a Lang file can allow me to translate them into different languages for my diverse playerbase! Currently, the German and Spanish players I have do not understand when there is a box ready at launch site, or when Airfield starts. Sometimes they are late to the event or miss it entirely unless they are watching the map. My players love these events, I just would like the ability to translate them so it's fair for all languages and having Lang files would make that easy for me!
1.5m

Downloads

Total number of downloads.

7.2k

Customers

Total customers served.

107.4k

Files Sold

Total number of files sold.

2.2m

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.