-
Posts
288 -
Joined
-
Last visited
Content Type
Profiles
Downloads
Forums
Store
Support
DOWNLOADS EXTRA
Services
Everything posted by Vergbergler
-
Is it possible to have an option to automatically place the PNPC's gathered/mined materials directly into my player's inventory?
-
When PersonalNPC is loaded on my server and my /pnpc command is typed to spawn my NPC the console is continuously spammed with: [FileSystem] Not Found: assets/content/ui/ui.background.tile.psd (UnityEngine.Material)
-
Is there an option to stop my PNPC from drowning while underwater?
-
Agreed. It would be nice to remove the "Shop" tab and have the UI only open to the Stock Market or Transfer.
-
- 8 comments
-
- 8 comments
-
- 8 comments
-
Version 1.1.1
46 downloads
Instant Scuba Diver instantly equips full scuba gear when swimming, then puts back on your original armor when you go back to walking. Scuba gear does not need to be in inventory, just instantly equips when needed. Makes going in and out of the water a breeze and effortless. Great for diving, emergency jumps out of a boat, or quick escapes! Your out-of-water armor is safely stored in memory until you get back out of the water. Used scuba gear is deleted from attire slots and inventory. FAQs: Q) What happens to my armor if I die underwater? A) Your armor is returned to your body just as you die. Return to your body to get it back. Q) Can players save the scuba gear for profit? A) No matter where the player moves the scuba gear (inventory, backpack, recycler, boxes, or TC) it will be deleted automatically. Q) I have a plugin that allows players to recycle anywhere. How can I stop them from recycling the scuba gear? A) Even if players can open a virtual recycler, the items will be deleted instantly before they can recycle it. Configuration: This plugin does not contain a configuration file! Permissions: InstantScubaDiver.diving_fins - Allows any player to equip diving fins automatically InstantScubaDiver.diving_mask - Allows any player to equip diving mask automatically InstantScubaDiver.diving_suit - Allows any player to equip diving suit automatically InstantScubaDiver.diving_tank - Allows any player to equip diving tank automatically InstantScubaDiver.use - Allows any player to use the plugin Chat Commands: This plugin does not have chat commands! Console Commands: This plugin does not have console commands!$5.99- 8 comments
- 1 review
-
- 1
-
-
There is a location on the map south of Outpost at O7 that is void of all buildings and have giant holes in the ground. [See images]. The train tracks are broken keeping trains from being able to make a full loop around the map. Please fix. Thank you.
-
Fantastic, thank you for the update! It works great.
-
1) Spawn with Jet unless the user is spawning on a bag. 2) Variable launch strength & duration. 3) Option to turn off rocket for launching -or- make the rocket despawn instead of exploding on hit. Love the plugin! My players have having loads of fun flying around!
-
-
"Bag cooldown time": 10.0, should be labeled "Extra_pockets cooldown time": 10.0,
-
Apologies, this is incorrect. The command it working fine. Please close.
-
The command "pnpc farm metal" is not working. The commands: "pnpc farm wood" "pnpc farm stone" "pnpc farm sulfur" ARE working.
-
Item = any item in your inventory that looks like a small image Entity = any item in the world outside your inventory Since Items are not in the world and their stack sizes mean nothing when dropped: No, it doesn't matter how big the stack size is of an item. If you drop it with permissions, DropStopper will save the item from falling through the ground.
-
Changed Status from Pending to Closed Changed Fixed In to 0.1.8
-
If you have any issues with the update, please open a new ticket! Enjoy!
-
I gotcha. I've been very busy irl. I haven't forgotten about you. I'll get this up ASAP.
-
Questions: 1) How to do you want to sell? What are they spending? RP, Scrap? 2) Can they purchase this anytime?
-
I don't know Spanish. I used Google Translate: "Hello good!!! I am very happy with your plugin, but can I ask you to add a timer like AdminRadar? I wanted to give vips temporary permissions for a price, but they stay indefinitely until the plugin is reloaded or /atcm is cleared, which it isn't. I would appreciate it very much.' I'll start working on this ASAP. I have a few other plugins that need attention first. Thank you for the suggestion!
-
I have a plugin here on Codefling called AdminTCMarkers. I noticed that Raidable Bases building blocks do not contain ownerIDs. This can easily be used to detect them VS other bases on the map. Here's an example: private bool IsRaidableBase(BuildingPrivlidge privlidge) // BuildingPrivlidge is just a ToolCupboard entity { BuildingManager.Building TCBuilding = privlidge.GetBuilding(); if (TCBuilding != null) { if (TCBuilding.buildingBlocks.Count > 0) { // Blocks of Raidable Bases do not have OwnerIDs if (TCBuilding.buildingBlocks[0].OwnerID == 0) { return true; } } } return false; } Hope this helps! -Cheers!
-
Changed Status from Pending to Not a Bug
-
/pnpc pickup all Doesn't pickup hemp, berries, pumpkins, mushrooms, & corn. Only picks up wood, metal, stone, sulfur. Question: Say there are 1000 pickup items in the area. How many would the PNPC pickup before returning to owner?
-
Could we get a single chat/console command to perform multiple PNPC actions? For example, if I my PNPC is currently mining X (whatever), and I want it to cut down trees I would need to call the following commands: "pnpc auto-farm none" <- Clears the list of requests "pnpc auto-farm wood" <- Adds wood to the list of requests "pnpc auto-farm disable" <- Stops the PNPCs current action "pnpc auto-farm enable" <- Starts the new list of requests (in this case, cut down trees) Instead, could we get one command that simply tells the bot to stop doing anything it's doing, and do another action? Example commands: "pnpc farm wood" (Stops what it is doing. Then would both pickup wood collectables AND cut wood) "pnpc farm stone" (Stops what it is doing. Then would both pickup stone collectables AND mine stone) "pnpc farm sulfur" (Stops what it is doing. Then would both pickup sulfur collectables AND mine sulfur) "pnpc farm hemp" (Stops what it is doing. Then would pickup hemp collectables) ... "pnpc farm everything" (Would pickup all collectables AND mine/cut resources) "pnpc loot everything" (Would open boxes, break barrels, loot bodies, etc) Thank you!