Jump to content

papi

Creator
  • Posts

    316
  • Joined

  • Last visited

Everything posted by papi

  1. papi

    Space

    My map keeps filling up with space shuttles even though i set this to 1. They don't decay or get cleaned up.
  2. papi

    Virtual Quarries

    Is there a way I can tie the permission of this plugin to a vehicle? I want to create an automining vehicle that comes with virtual quarries thanks for any ideas in advance
  3. papi

    Biplane

    Thank you for the custom spawn point my map doesnt have a airfield. Could you please add a biplane seller to this aswell? "Add a seller to a monument? [true/false]": true, "Seller's preset": "seller_default", "The seller's location on the monument": { "Position": "(34.6, 0.3, 22.6)", "Rotation": "90" }, "The place of the plane's spawn after purchase": { "Position": "(50.5, 0.3, 15.0)", "Rotation": "180" } } },
  4. papi

    Xperience Ranks

    all sorted thanks
  5. Disable the Flame Turret in config to stop the Unity errors "Modify all FlameTurrets (true/false)": false,
  6. Server Exception: FlameTurret.BudgetedUpdate (Filename: C:\buildslave\unity\build\Runtime/Export/Debug/Debug.bindings.h Line: 35) NullReferenceException at (wrapper managed-to-native) UnityEngine.Component.GetComponentFastPath(UnityEngine.Component,System.Type,intptr) at UnityEngine.Component.GetComponent[T] () [0x00021] in <745c4d442eef4e08b35b5975d62d89d1>:0 at (wrapper dynamic-method) FlameTurret.CheckTrigger_Patch0(object) at FlameTurret.ServerThink () [0x00057] in <c4171536ddd34a55a3a9736c22d565be>:0 at FlameTurret+UpdateFlameTurretWorkQueue.RunJob (FlameTurret entity) [0x0000a] in <c4171536ddd34a55a3a9736c22d565be>:0 at ObjectWorkQueue`1[T].RunQueue (System.Double maximumMilliseconds) [0x00084] in <1a1866e622074a0388ef6216acf04130>:0 at ServerMgr.Update () [0x00118] in <c4171536ddd34a55a3a9736c22d565be>:0 UnityEngine.DebugLogHandler:Internal_LogException(Exception, Object) UnityEngine.DebugLogHandler:LogException(Exception, Object) UnityEngine.Logger:LogException(Exception, Object) UnityEngine.Debug:LogException(Exception, Object) ServerMgr:Update() (Filename: <745c4d442eef4e08b35b5975d62d89d1> Line: 0)
  7. papi

    Xperience Ranks

    I can't find the value that determines what rank a player has. All players show as Newbie indefinitely but I want to see them acquiring ranks for their efforts
  8. papi

    Drug Business

    No it doesn't function using scrap but you can edit the code to remove the slashes in the code that does this. replace this: /*var itemScrap = player.inventory.FindItemID("scrap"); if (itemScrap != null && itemScrap.amount >= costInt) { itemScrap.UseItem(costInt); success = true; }*/ break; with this for scrap to work var itemScrap = player.inventory.FindItemID("scrap"); if (itemScrap != null && itemScrap.amount >= costInt) { itemScrap.UseItem(costInt); success = true; } break;
  9. Players get a blank screen and can't exit the plugin
  10. papi

    Shop UI

    Yes, do a replace "eco" to "scrap" etc
  11. papi

    No images show

    yes of course. 2.1.4 shows only one image. reloaded Image Library and Hud and i can now see them all. many thanks,
  12. papi

    NullReferenceException

    Sorted, thank you
  13. papi

    No images show

    Same issue here. Cannot get any of the images to display even with a clean install.
  14. papi

    NullReferenceException

    Sorry I am getting NullReferenceException: Object reference not set to an instance of an object at Oxide.Plugins.FurnaceLevels+FurnaceUpgrades.SmeltItems () [0x001eb] in <d878904bfb9e4689b42894fe29f7c50f>:0 at Oxide.Plugins.FurnaceLevels+FurnaceUpgrades.Cook () [0x00014] in <d878904bfb9e4689b42894fe29f7c50f>:0 at InvokeHandlerBase`1[T].DoTick () [0x000be] in <259fcebfe12d4fe1a9e9cedd9876fac8>:0 at InvokeHandlerBase`1[T].LateUpdate () [0x0000c] in <259fcebfe12d4fe1a9e9cedd9876fac8>:0 (Filename: <d878904bfb9e4689b42894fe29f7c50f> Line: 0)
  15. papi

    Meteor explosion lagging sever

    ok thank you
  16. papi

    Meteor explosion lagging sever

    Meteor MLRS effect starts spamming explosions on the impact site NullReferenceException: Object reference not set to an instance of an object at AlwaysHotSpot.OreResourceEntity_OnAttacked.Prefix (HitInfo info, OreResourceEntity __instance) [0x0002c] in <bf62c7e4d5794b34979a1414360367bc>:0 at (wrapper dynamic-method) OreResourceEntity.OnAttacked_Patch1(object,HitInfo) at DamageUtil.RadiusDamage (BaseEntity attackingPlayer, BaseEntity weaponPrefab, UnityEngine.Vector3 pos, System.Single minradius, System.Single radius, System.Collections.Generic.List`1[T] damage, System.Int32 layers, System.Boolean useLineOfSight) [0x00140] in <bd55da73323340f6bdbb8f35571e6ed4>:0 at TimedExplosive.Explode (UnityEngine.Vector3 explosionFxPos) [0x00251] in <bd55da73323340f6bdbb8f35571e6ed4>:0 at TimedExplosive.Explode () [0x00007] in <bd55da73323340f6bdbb8f35571e6ed4>:0 at TimedExplosive.ProjectileImpact (UnityEngine.RaycastHit info, UnityEngine.Vector3 rayOrigin) [0x00000] in <bd55da73323340f6bdbb8f35571e6ed4>:0 at ServerProjectile.DoMovement () [0x001a8] in <bd55da73323340f6bdbb8f35571e6ed4>:0 at ServerProjectile.FixedUpdate () [0x0001b] in <bd55da73323340f6bdbb8f35571e6ed4>:0 (Filename: <bf62c7e4d5794b34979a1414360367bc> Line: 0)
  17. papi

    Using Scraps does not work

    In your code you have commented out the transaction to remove the scrap from the players inventory? Has nobody else noticed this and can you please fix. /*var itemScrap = player.inventory.FindItemID("scrap"); if (itemScrap != null && itemScrap.amount >= costInt) { itemScrap.UseItem(costInt); success = true; }*/
  18. papi

    Using Scraps not working for me

    Fixed it myself one month later. Have you actually tested this code??? In your code you have commented out the transaction to remove the scrap from the players inventory? Has nobody else noticed this? /*var itemScrap = player.inventory.FindItemID("scrap"); if (itemScrap != null && itemScrap.amount >= costInt) { itemScrap.UseItem(costInt); success = true; }*/
  19. papi

    Using Scraps not working for me

    Changing value to $1 even though balance at top of screen displays Scrap in inventory correctly process cannot proceed. The Plugin is also dependent on Economics even if you aren't using it. This isn't shown in the Plugin Description. Could not load plugin 'Disabled\Economics' (no plugin found with that file name)
  20. papi

    Using Scraps not working for me

    Changed value of seeds to $0 which proceeded to the buy screen, drone arrives and then crashes with error Failed to run a 1.00 timer in 'DrugBusiness v0.35.0' (OverflowException: Value was either too large or too small for an Int32.) at System.Convert.ToInt32 (System.Double value) [0x00084] in <fb001e01371b4adca20013e0ac763896>:0 at Oxide.Plugins.DrugBusiness+<BeginDelivery>c__AnonStorey10.<>m__0 () [0x0004e] in <a0d7a881af43423c8900a233dc87c174>:0 at Oxide.Core.Libraries.Timer+TimerInstance.FireCallback () [0x00018] in <bae5f1223fce49c493b01571c99dce02>:0
  21. papi

    Using Scraps not working for me

    Plugin won't take Scraps
  22. papi

    Using Scraps not working for me

    { "Basic Settings": { "Hours From The Dealers Will Be Available": 20.0, "Hours Till The Dealers Will Be Available": 24.0, "Loading Screen Update Rate (Seconds) [Don't make it too small]": 0.035, "Loading Screen Anchor Shifting [Left - Right]": 0.001 }, "VPN Settings": { "Item Info": { "Display Name": "VPN Flash Drive", "Skin ID": 2645299478, "Require In Belt": true, "Spawn Command": "db.vpn" } }, "Drug Settings": { "Use (Economics / Server Rewards / Scraps)": "Scraps", "Currency Symbol": "$", "Marijuana Seeds": { "Cost per seed": 40.0 }, "Peruvian Coca Seeds": { "Cost per seed": 40.0 } }, "Drone Settings": { "Drone Spawn Distance (Default: 210)": 210, "Drone Spawn Height (Default: 78)": 78, "Drone Delivery Height (Default: 40)": 40 }, "Crafting Settings": { "Cocaine Leaves Required": 5, "Cocaine Powder Required": 10, "Cannabis Required": 5, "Marijuana Required": 10 }, "Dealer Settings": { "Maximum Dealers at a time (will pick random from the data)": 3, "Dealer Name": "Dealer", "Announce when the dealer arrive/leave": true, "Default Outfit": [ { "Item": "tshirt", "Skin": 838212999 }, { "Item": "pants", "Skin": 866948432 }, { "Item": "hat.beenie", "Skin": 814355387 }, { "Item": "shoes.boots", "Skin": 1889769313 }, { "Item": "mask.bandana", "Skin": 2312147084 } ], "Weed Brick": { "Bricks Sell Quantity": 1, "Time Taken For Single Trade (Seconds)": 30, "Brick Selling Price": 520 }, "Cocaine Brick": { "Bricks Sell Quantity": 1, "Time Taken For Single Trade (Seconds)": 30, "Brick Selling Price": 560 } } }
  23. papi

    Server Hud

    Locate the url in the plugin cs file and remove link only
  24. papi

    Drug Business

    support is terrible so i am giving it a 1 stars. The plugin is very professional looking and could be mistaken for a real black market on the Internet. Players can now make money doing something ingame that's fun and entertaining. The plugin is broken for using scrap instead of economics. Tickets backed up since July with no responses from Developer. Stopped working for me after the Rust update.
  25. papi

    Using Scraps not working for me

    Don't worry about it i switched to economics anyway.
1.7m

Downloads

Total number of downloads.

7.8k

Customers

Total customers served.

118k

Files Sold

Total number of files sold.

2.4m

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.