Jump to content

Yaki

Creator
  • Posts

    178
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Yaki

  1. Yaki

    nre after starting event

    i want to have betternpcs on oil rig while the hcoilrigevent is active. if i set this to false, "Disable BetterNpc plugin npc's for the duration of the event?": false, i wont be able to have my npcs on oil rig while the event is active. if its a setting in the config, the plugin should not throw any errors regardless if it is true or false.
  2. Yaki

    nre after starting event

    i cant have betternpcs on oil rig and the event running at the same time?
  3. Yaki

    nre after starting event

    i do have betternpcs spawning on oilrig and have this set in your config "Disable BetterNpc plugin npc's for the duration of the event?": false,
  4. Yaki

    nre after starting event

    i am using betternpcs yes
  5. Yaki

    nre after starting event

    shortly after i run hcoestart from console. doesnt seem to happen every time, but happened a few times yesterday when i was setting up the plugin.
  6. Yaki

    nre after starting event

    Exception while calling NextTick callback (NullReferenceException: Object reference not set to an instance of an object) at Oxide.Plugins.HCOilrigEvent+<>c__DisplayClass137_0.<NpcsSpawn>b__0 () [0x0004e] in <8d3ce228dc0043a6837fbdc14ff07955>:0 at Oxide.Core.OxideMod.OnFrame (System.Single delta) [0x00051] in <112d89ea5d3348c8b949af0ab1a866d2>:0 Exception while calling NextTick callback (NullReferenceException: Object reference not set to an instance of an object) at Oxide.Plugins.HCOilrigEvent+<>c__DisplayClass137_0.<NpcsSpawn>b__0 () [0x0004e] in <8d3ce228dc0043a6837fbdc14ff07955>:0 at Oxide.Core.OxideMod.OnFrame (System.Single delta) [0x00051] in <112d89ea5d3348c8b949af0ab1a866d2>:0 Exception while calling NextTick callback (NullReferenceException: Object reference not set to an instance of an object) at Oxide.Plugins.HCOilrigEvent+<>c__DisplayClass137_0.<NpcsSpawn>b__0 () [0x0004e] in <8d3ce228dc0043a6837fbdc14ff07955>:0 at Oxide.Core.OxideMod.OnFrame (System.Single delta) [0x00051] in <112d89ea5d3348c8b949af0ab1a866d2>:0 Exception while calling NextTick callback (NullReferenceException: Object reference not set to an instance of an object) at Oxide.Plugins.HCOilrigEvent+<>c__DisplayClass137_0.<NpcsSpawn>b__0 () [0x0004e] in <8d3ce228dc0043a6837fbdc14ff07955>:0 at Oxide.Core.OxideMod.OnFrame (System.Single delta) [0x00051] in <112d89ea5d3348c8b949af0ab1a866d2>:0 Exception while calling NextTick callback (NullReferenceException: Object reference not set to an instance of an object) at Oxide.Plugins.HCOilrigEvent+<>c__DisplayClass137_0.<NpcsSpawn>b__0 () [0x0004e] in <8d3ce228dc0043a6837fbdc14ff07955>:0 at Oxide.Core.OxideMod.OnFrame (System.Single delta) [0x00051] in <112d89ea5d3348c8b949af0ab1a866d2>:0 Exception while calling NextTick callback (NullReferenceException: Object reference not set to an instance of an object) at Oxide.Plugins.HCOilrigEvent+<>c__DisplayClass137_0.<NpcsSpawn>b__0 () [0x0004e] in <8d3ce228dc0043a6837fbdc14ff07955>:0 at Oxide.Core.OxideMod.OnFrame (System.Single delta) [0x00051] in <112d89ea5d3348c8b949af0ab1a866d2>:0 Exception while calling NextTick callback (NullReferenceException: Object reference not set to an instance of an object) at Oxide.Plugins.HCOilrigEvent+<>c__DisplayClass137_0.<NpcsSpawn>b__0 () [0x0004e] in <8d3ce228dc0043a6837fbdc14ff07955>:0 at Oxide.Core.OxideMod.OnFrame (System.Single delta) [0x00051] in <112d89ea5d3348c8b949af0ab1a866d2>:0 Exception while calling NextTick callback (NullReferenceException: Object reference not set to an instance of an object) at Oxide.Plugins.HCOilrigEvent+<>c__DisplayClass137_0.<NpcsSpawn>b__0 () [0x0004e] in <8d3ce228dc0043a6837fbdc14ff07955>:0 at Oxide.Core.OxideMod.OnFrame (System.Single delta) [0x00051] in <112d89ea5d3348c8b949af0ab1a866d2>:0
  7. I installed this plugin on multiple of my servers today and had two issues. 1) players were kicked when building 2) players were kicked when interacting with doors have you heard of this before or know what the issue could be? im thinking its a conflict with another plugin as it didnt happen on my test server with limited plugins.. but it happens on all of my live servers
  8. Yaki

    API for drone death

    you rock! thank you!
  9. Yaki

    API for drone death

    could you please add an api hook for when a drone is destroyed?
  10. heres the fix for anyone interested starting on line 677 change private bool CheckTCAuth(ulong ownerid, BasePlayer player) { var tc = player.GetBuildingPrivilege(); foreach (var p in tc.authorizedPlayers) { if (p.userid == player.userID) { return true; } } return false; } to this private bool CheckTCAuth(ulong ownerid, BasePlayer player) { var tc = player.GetBuildingPrivilege(); foreach (var p in tc.authorizedPlayers) { if (p == player.userID) { return true; } } return false; }
  11. same error for me as well 119 OwnCasinoPremium - Failed to compile: 'ulong' does not contain a definition for 'userid' and no accessible extension method 'userid' accepting a first argument of type 'ulong' could be found (are you missing a using directive or an assembly reference?) | Line: 682, Pos: 23
  12. Yaki

    Black Market item

    Changed Status from Pending to Not a Bug Changed Fixed In to 1.7.0
  13. Yaki

    Black Market item

    did you try that? are you still having issues?
  14. Yaki

    Black Market item

    is the item in your belt (hotbar)?
  15. how many prefabs or entities are on this map?
  16. i might have a fix that doesnt require the SmoothRestarter plugin. if you want to try it i can send it to you @Anaconda
  17. Changed Status from Pending to Not a Bug Changed Fixed In to 1.7.0
  18. yeah doesnt make sense to me either. let me know if you figure anything out
  19. Yaki

    error spamming in console

    i just tried both. cannot place other items. and no error when moving scrap from terminal slot to terminal slot. i wonder if it happens when theres 2 big wheels next to each other as ive noticed the time remaining until next spin countdown acting weird like its fighting the time for the other wheel on what to display
  20. let me know what you find out i am curious
  21. Yaki

    error spamming in console

    ive only allowed scrap. here is my config { "Allow Owner To bet on Own Casino?": false, "Enable HardMode mode?": 45, "Use buildin custom bet item": true, "Bet Item WhiteList": [ "scrap" ], "Punish Exploiters with MLRS?": true, "Anounce to Server on Wheel Win?": false, "Allow Custom Items to be Recycled?": true, "Skin-Specific Yield Items": { "wheel": [ { "ShortName": "wood", "MinAmount": 10, "MaxAmount": 20 }, { "ShortName": "metal.fragments", "MinAmount": 15, "MaxAmount": 30 }, { "ShortName": "gears", "MinAmount": 1, "MaxAmount": 1 } ], "blackjack": [ { "ShortName": "wood", "MinAmount": 10, "MaxAmount": 20 }, { "ShortName": "tarp", "MinAmount": 1, "MaxAmount": 1 } ], "terminal1": [ { "ShortName": "scrap", "MinAmount": 10, "MaxAmount": 20 }, { "ShortName": "metal.fragments", "MinAmount": 15, "MaxAmount": 30 } ], "terminal2": [ { "ShortName": "scrap", "MinAmount": 10, "MaxAmount": 20 }, { "ShortName": "metal.fragments", "MinAmount": 15, "MaxAmount": 30 } ], "slots": [ { "ShortName": "scrap", "MinAmount": 10, "MaxAmount": 20 }, { "ShortName": "metal.fragments", "MinAmount": 15, "MaxAmount": 30 } ], "chips": [ { "ShortName": "wood", "MinAmount": 10, "MaxAmount": 20 }, { "ShortName": "tarp", "MinAmount": 1, "MaxAmount": 1 } ], "chips4": [ { "ShortName": "wood", "MinAmount": 10, "MaxAmount": 20 }, { "ShortName": "tarp", "MinAmount": 1, "MaxAmount": 1 } ], "chips3": [ { "ShortName": "wood", "MinAmount": 10, "MaxAmount": 20 }, { "ShortName": "tarp", "MinAmount": 1, "MaxAmount": 1 } ], "chips2": [ { "ShortName": "wood", "MinAmount": 10, "MaxAmount": 20 }, { "ShortName": "tarp", "MinAmount": 1, "MaxAmount": 1 } ], "box": [ { "ShortName": "wood", "MinAmount": 10, "MaxAmount": 20 }, { "ShortName": "metal.fragments", "MinAmount": 10, "MaxAmount": 15 } ] } } { "Allow Owner To bet on Own Casino?": false, "Enable HardMode mode?": 45, "Use buildin custom bet item": true, "Bet Item WhiteList": [ "scrap" ], "Punish Exploiters with MLRS?": true, "Anounce to Server on Wheel Win?": false, "Allow Custom Items to be Recycled?": true, "Skin-Specific Yield Items": { "wheel": [ { "ShortName": "wood", "MinAmount": 10, "MaxAmount": 20 }, { "ShortName": "metal.fragments", "MinAmount": 15, "MaxAmount": 30 }, { "ShortName": "gears", "MinAmount": 1, "MaxAmount": 1 } ], "blackjack": [ { "ShortName": "wood", "MinAmount": 10, "MaxAmount": 20 }, { "ShortName": "tarp", "MinAmount": 1, "MaxAmount": 1 } ], "terminal1": [ { "ShortName": "scrap", "MinAmount": 10, "MaxAmount": 20 }, { "ShortName": "metal.fragments", "MinAmount": 15, "MaxAmount": 30 } ], "terminal2": [ { "ShortName": "scrap", "MinAmount": 10, "MaxAmount": 20 }, { "ShortName": "metal.fragments", "MinAmount": 15, "MaxAmount": 30 } ], "slots": [ { "ShortName": "scrap", "MinAmount": 10, "MaxAmount": 20 }, { "ShortName": "metal.fragments", "MinAmount": 15, "MaxAmount": 30 } ], "chips": [ { "ShortName": "wood", "MinAmount": 10, "MaxAmount": 20 }, { "ShortName": "tarp", "MinAmount": 1, "MaxAmount": 1 } ], "chips4": [ { "ShortName": "wood", "MinAmount": 10, "MaxAmount": 20 }, { "ShortName": "tarp", "MinAmount": 1, "MaxAmount": 1 } ], "chips3": [ { "ShortName": "wood", "MinAmount": 10, "MaxAmount": 20 }, { "ShortName": "tarp", "MinAmount": 1, "MaxAmount": 1 } ], "chips2": [ { "ShortName": "wood", "MinAmount": 10, "MaxAmount": 20 }, { "ShortName": "tarp", "MinAmount": 1, "MaxAmount": 1 } ], "box": [ { "ShortName": "wood", "MinAmount": 10, "MaxAmount": 20 }, { "ShortName": "metal.fragments", "MinAmount": 10, "MaxAmount": 15 } ] } }
  22. at this point, im starting to think its how the server saves data as i am unable to replicate this and it doesnt affect everyone (doesnt happen on any of my 4 servers). what host do you use? do you use any plugins that shut down or restart the server for you? i also know it can happen on both carbon and oxide so ive ruled that out. out of curiosity, which one do you use?
  23. will you be adding it since you liked the message? if not please let me know so i can find another solution.
  24. Yaki

    error spamming in console

    im pretty sure it comes from any of the casino items, not just items from this plugin. I also use a plugin called place anything that allows me to give casino items to players. i see the error rather frequently because several players own casino items. just not sure what causes it yet but ill try to get more info on it.
  25. i can switch it - players and my server have given mixed responses on what to do
2.1m

Downloads

Total number of downloads.

10k

Customers

Total customers served.

145.8k

Files Sold

Total number of files sold.

3.1m

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.