Jump to content

Jbird

Creator
  • Posts

    2,199
  • Joined

  • Days Won

    17

Everything posted by Jbird

  1. Jbird

    flares

    You said that we did not tell how to get flares, and I said that there is a paragraph that explains how to get them. I was responding to your claim and I did not say that you did not read the description. Then as you just said there is also the command. We can and will do some more testing in this regard as well as asking the developer if he'd like to add those Steam Skin IDs anywhere more accessible like perhaps the description. We have had a little bit of feedback of people getting the location error, generally we have an idea of what might be happening and I don't think it has anything to do with roads or monuments, those would be more of an issue for building the base to begin with. I think if anything it may be regarding terrain or placement of the build. Will look more into this and the more detail we can get about locations and bases that are getting this error the better we can find solutions. Do you have TruePVE or any similar plugins that dictate damage on the server? Regarding the turrets that sounds like what might be stopping it but unfortunately need more information there as well. Thank you for the feedback, and we appreciate any extra detail you can offer as well. Otherwise we will be continuing to look into it from our end as well.
  2. Jbird

    flares

    Actually the description has a paragraph that explains how to get flares in detail. Give yourself a flare by using your SteamID, and it needs to be one of the SkinIDs from the plugin. If you can give more feedback on it not working when given otherwise with detail then we can look into it further. Was the player throwing the flare on their own base? I would need quite a few more details to troubleshoot that issue but perhaps the one throwing the flare wasn't the owner, or when you copied and pasted it if you were still the one throwing it then perhaps it worked because you became the owner when you 'moved' the base. But otherwise if those instances are not the case just give as much detail as you can and we can sort it out.
  3. Jbird

    Water Patrol

    Currently that isn't an option but I'll bring it up with the developer as a suggestion. My recommendation would just be to have a low amount of patrols or the amount of NPCs in each patrol to make them less troublesome. In my opinion having them set as neutral unless attacked somewhat defeats the purpose of having them, still I will bring it up as perhaps others might like that idea for various reasons as well. Do you have any video of this happening? Are you saying that they are able to do this without the NPCs fighting back or that this is a tactic being used to fight them? There just isn't much context here to know if you're saying that this is an issue or more details on it in general but let us know a bit more to go on.
  4. Jbird

    Defendable Homes

    Will look into this, it somewhat defeats the purpose and the difficulty of building a base and defending it, if you can simply copy and paste bases for it. However many people do use copy paste in many different ways so it is likely we will find at least one solution to this issue if we find that there is one. The reason that it is any kind of an issue is in regards to ownership or something to do with the build, as copy and paste depending on the way things are being pasted, will not always give ownership to the person pasting it, especially when it is used through another plugin for example, or bases that would not normally be able to be built might also be used. The plugin does verify a few things about the base before allowing the event to launch. Thank you for the feedback and suggestion.
  5. Jbird

    Request: Disable /remove

    Drop a ticket if you would in Mad Mappers Discord and we can see what we could do.
  6. Jbird

    Request: Disable /remove

    @Covfefe I think otherwise he is saying, and I'm pretty sure he is right, that you can set this up to allow friends and teammates to do this without allowing it outside of teammates. Basically anyone can edit anything depending on how it's set up.
  7. Jbird

    Request: Disable /remove

  8. Jbird

    Better Npc

    UPDATE NpcSpawn has been updated in anticipation of an upcoming plugin, as well as to allow this option moving forward a bit more easily. The previous message can be ignored, simply update NpcSpawn and change the new option added to the config file to allow targeting custom NPC. Have fun with it! And keep your eyes out for a new plugin coming soon!
  9. Jbird

    Better Npc

    For anyone looking to allow NPCs to attack each other, including plugins that don't really get support otherwise. WARNING: This will use up more of your servers performance Depending on the amount of NPCs you are running between plugins this can cause a noticeable difference, keep that in mind. I am including the direction to change it for yourself as well as a copy of the current file so that it can be used currently. Keep in mind when the plugin updates you will want to take note of these changes and make the changes again. There are 3 changes to be made in the NpcSpawn cs file. Step 1 Change this if (!target.IsPlayer() || target.Health() <= 0f) return false; To this if (target == null || target.Health() <= 0f) return false; Step 2 Remove these lines if (IsCustomScientist(attacker)) { if ((entity as BasePlayer).IsPlayer() || entity.OwnerID.IsSteamId() || entity.skinID == 15446541672) return null; else return true; } Step 3 Change this BasePlayer attackerBP = attacker as BasePlayer; if (attackerBP.IsPlayer()) { if (victimNpc.CurrentTarget == null && victimNpc.CanTargetBasePlayer(attackerBP)) victimNpc.CurrentTarget = attackerBP; return null; } To this BasePlayer attackerBP = attacker as BasePlayer; if (attackerBP != null) { if (victimNpc.CurrentTarget == null && victimNpc.CanTargetBasePlayer(attackerBP)) victimNpc.CurrentTarget = attackerBP; return null; } NpcSpawn.cs Remember that this is the current version of the plugin and once updated will be come outdated and will need the changes above made again. If someone comes here in the future just come to the Mad Mapper Discord though it's easiest to just sort it out there and make any changes at that time. We have a channel for patches just for instances like this.
  10. Jbird

    Better Npc

    Do you have all of the specific quotes? This feels really instigating and unnecessary. First of all the developer likely did not say that, if anyone it was probably me since I do nearly all support for the English speaking community that uses KpucTaJl's plugins. I am not the developer. And depending on the context there are some things that another developer should address to be honest. I know there have been times I have suggested this and I am not flawless, but I usually have a decent idea of what I'm talking about when I speak. So perhaps if all of the names above are going to be dropped why don't any of those people have a conversation with each other instead of you making a public claim about it yourself? The developer and I are actively walking a customer through changing this in the Mad Mapper Discord ticket system. We are aware that NpcSpawn is the reason that it acts the way it does in this context. NpcSpawn has been specifically written to ignore other NPC and only be on the lookout for players. I will not go to look at the name of that person or call them out publicly because that's fucking ridiculous in this context to be honest, but it was literally just within 24-48 hours tops that we were working through this and the developer was able to quickly have them attack back. Progress has already been made and I think the final step was just going to be to allow damage in one particular direction. So to make a callout video was a really unnecessary waste of time when you could instead just ask about it and we could offer a resolution. KpucTaJl has no intention to add this functionality for all NPCs because the most of us in the community do not need NPCs to attack each other and use additional server resources, the players should be the ones killing the NPCs for most of us but as customers and as people in the community, one has but to ask for help and I've rarely known the Mad Mapper team say they won't or can't do something. Perhaps it is for immersion or perhaps it's just a reason to stir shit up. But either way, I will share in this conversation, the final collection of steps (so far only 2) that will allow this to happen as desired. Thank you for the information and I'm sorry you feel the need to present it the way you do, but regardless of what anyone else is saying, this can easily be quoted, there is a button below this message. Please use it if you're going to quote me and do so accurately, as well as other people in the community. If you have any other questions about BetterNpc this would be a great place for those though.
  11. Jbird

    cargo spawning incorrectly

    This is a glitch either thrown by something to do with procedurally generated maps from what we can tell, or otherwise from the plugin that adds recyclers to monuments including Cargo Ship. If you by chance use that plugin I recommend coming to the Mad Mapper Discord @tacman1981 and we could help get that sorted for you. We have a channel for patching interactions like this with plugins that we know of.
  12. Jbird

    Loot Table

    You need to customize the two following locations. oxide/data/DefendableBases/Config This folder will have the config files and in them is the loot table for the Laptop and the Crates oxide/config/DefendableBases.json Has the list of images for additional loot for the Laptop The Mad Mapper discord has a lot of resources in regards to support. I've created a text document to help with customizing DefendableBases loot tables especially the Laptop. I hope that helps @Azraelkekw keep me informed of your progress. You are welcome to open a ticket if you end up joining the Discord.
  13. Jbird

    Better Npc

    Will discuss the idea with the developer. I get your explanation now but I think there are still easier ways to do this. Example, you use this plugin to reload any plugins in the order you want them to load. Give a short timer in between and load them in the order that works for this situation. It's free so it seems worth trying to me.
  14. Jbird

    Better Npc

    Yes there is actually a plugin on this site that will restart plugins after the server has booted. Search for that it is very simple to use for this and works as intended.
  15. Jbird

    Better Npc

    Glad we could get that sorted out! Thank you for the feedback. Both custom or standard either works!
  16. Jbird

    question

    The maps listed are just maps that come with custom locations for the bases. These will spawn on any map that has at least 1 or more of the default monuments such as Launch and Airfield as a spawn point.
  17. Jbird

    Request: Disable /remove

    Interesting, nice catch! Will get with K to see about sorting that out. Thanks for the heads up.
  18. Jbird

    not able to edit config

    That would be a server or host issue if so. There's nothing plugin side that could cause that, at least not that I've ever seen, experienced, or heard of. If you find any more information on this let me know but I'd get with your host to find out why you can't access simple config files.
  19. There is a different kind of fix, the one you suggested is not really the best way to do this but we have added fixes for this. There is an update for the plugin but also if you are in the Mad Mapper Discord we have posted instructions on how to patch the BradleyTiers plugin file in the patched plugins channel.
  20. Jbird

    Water Patrol

    Currently they are set at random no custom location or path, but you can configure the amount and such.
  21. This likely needs to be done again with any plugins using Bradley. I will discuss with Adem and KpucTaJl and get back with you soon.
  22. Jbird

    invisible mode

    You currently have all abilities turned off. "Radius (to disable all abilities, set the value to 0)": 0.0,
  23. I have not seen anything about using Bradley skin IDs yet to be honest so that would be new to me. Have you already spoken to that developer about this and asked them or their community if anyone has workarounds for this? I believe there are some but I don't recall what they might be it's been awhile since I've been a part of that conversation to be fair. But others in that community might have already sorted this out of others have both plugins.
  24. Jbird

    Team Info

    Got this in RCON. Exception while calling NextTick callback (KeyNotFoundException: The given key was not present in the dictionary.) at System.Collections.Generic.Dictionary`2[TKey,TValue].get_Item (TKey key) [0x0001e] in <fb001e01371b4adca20013e0ac763896>:0 at Oxide.Plugins.TeamInfo.GetImage (System.String url) [0x00000] in <35afef74c0b947edbefc6a1524d0cd16>:0 at Oxide.Plugins.TeamInfo.ShowUIMain (RelationshipManager+PlayerTeam team) [0x00394] in <35afef74c0b947edbefc6a1524d0cd16>:0 at Oxide.Plugins.TeamInfo+<OnTeamCreate>c__AnonStorey8.<>m__0 () [0x00060] in <35afef74c0b947edbefc6a1524d0cd16>:0 at Oxide.Core.OxideMod.OnFrame (System.Single delta) [0x00051] in <bae5f1223fce49c493b01571c99dce02>:0 Also getting this in F1 console nonstop. AddUI: Unknown Parent for "UI_TeamInfo.pos": UI_TeamInfo.bg No UI at the moment as a result of one or both.
  25. Jbird

    Boss Monster

    Just because it costs money, there is work to be done on your end. Can I get some context as to what you are trying to do, what you are struggling with, some details? How can I make this easier for you with no context at all? I am not the developer I provide support. 1) There are 2 commands listed in the Description panel. Read it again slowly. /WorldPOS - displays the player’s position on the map /SavePOS "Boss Name" - saves a new position to the configuration file for the boss with the name - "Boss Name", relative to the nearest monument 2) There is a ReadMe file, and most other questions should be answered in the config itself as you go through it. The plugin even now generates a default custom config for ease of use. 3) Let us know what you are having problems with otherwise.
2m

Downloads

Total number of downloads.

9.6k

Customers

Total customers served.

139.1k

Files Sold

Total number of files sold.

2.9m

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.