Jump to content

JustANoob

Member
  • Posts

    248
  • Joined

  • Last visited

Everything posted by JustANoob

  1. Loaded plugin UpdaterBetterNpc v1.1.1 by KpucTaJl [175ms] Failed to call internal hook 'OnServerInitialized' on plugin 'UpdaterBetterNpc v1.1.1' [352240293] (Cannot create a file when that file already exists.) at void System.IO.FileSystem.MoveDirectory(string sourceFullPath, string destFullPath) at void System.IO.Directory.Move(string sourceDirName, string destDirName) at void Oxide.Plugins.UpdaterBetterNpc.ReadAndRenameConfigOldNpcSpawn() in /home/container/carbon/plugins/UpdaterBetterNpc.cs:line 1047 at void Oxide.Plugins.UpdaterBetterNpc.OnServerInitialized() in /home/container/carbon/plugins/UpdaterBetterNpc.cs:line 1418 at object Oxide.Plugins.UpdaterBetterNpc.InternalCallHook(uint hook, object[] args) in UpdaterBetterNpc.cs/Internal:line 189 Unloaded plugin NpcSpawn v3.1.9 by KpucTaJl
  2. I've tried to get the plugin to work and it's broken and I need help fixing it or I think I'll have to remove it also from my server if I can't get it to work. What is the solution to getting the NPC's to spawn again?
  3. [GasStationEvent] GasStationEvent has begun Failed to call internal hook 'DestroyController' on plugin 'BetterNpc v2.1.5' [1320420410] (Object reference not set to an instance of an object) at void Oxide.Plugins.BetterNpc.DestroyController(string name, Vector3 position) in /home/container/carbon/plugins/BetterNpc.cs:line 2787 at object Oxide.Plugins.BetterNpc.InternalCallHook(uint hook, object[] args) in BetterNpc.cs/Internal:line 291
  4. My admin and I followed the update guide with BetterNpc.cs and also followed the update guide for NpcSpawns.cs. Nothing working now... I really need help bad! Please and thank you!
  5. I think it's loading now, but showing the wrong update
  6. Loaded plugin Kill Records v1.3.900 by MACHIN3 [992ms]
  7. I have carbon not oxide... does that mater?
  8. still broken Unloaded plugin Kill Records v1.3.900 by MACHIN3 Failed compiling 'KillRecords.cs': 1. The type or namespace name 'MySqlConnector' could not be found (are you missing a using directive or an assembly reference?) [CS0246] (KillRecords 7 line 10)
  9. When players are in the menu of the quest giver and they press the ESC key it kicks them out of the server.
  10. JustANoob

    Getting this in console

    it happened when the new plugin loaded
  11. JustANoob

    Getting this in console

    I don't know what this means...
  12. Happy Thanksgiving and Merry Christmas!
  13. JustANoob

    Show double names in list

    doesn't update held item
  14. JustANoob

    Show double names in list

    Show double names in list
  15. Thank You!
  16. Not opening "All Groups" button.
  17. JustANoob

    Getting this in console

    I'll send config file
  18. JustANoob

    Getting this in console

    Failed to call internal hook 'OnItemAction' on plugin 'Genie v1.0.6' [3403522973] (Object reference not set to an instance of an object) at object Oxide.Plugins.Genie.OnItemAction(Item item, string action, BasePlayer player) in /home/container/carbon/plugins/Genie.cs:line 764 at object Oxide.Plugins.Genie.InternalCallHook(uint hook, object[] args) in Genie.cs/Internal:line 141 Failed to call internal hook 'OnItemAction' on plugin 'TreasureMaps v2.0.4' [3403522973] (Object reference not set to an instance of an object) at object Oxide.Plugins.TreasureMaps.OnItemAction(Item item, string action, BasePlayer player)+(MapConfiguration c) => { } [0] in /home/container/carbon/plugins/TreasureMaps.cs:line 1253 at MapConfiguration System.Collections.Generic.List<Oxide.Plugins.TreasureMaps+MapConfiguration>.Find(Predicate<MapConfiguration> match) at object Oxide.Plugins.TreasureMaps.OnItemAction(Item item, string action, BasePlayer player) in /home/container/carbon/plugins/TreasureMaps.cs:line 1253 at object Oxide.Plugins.TreasureMaps.InternalCallHook(uint hook, object[] args) in TreasureMaps.cs/Internal:line 506
  19. JustANoob

    Getting this in console

    Failed to call internal hook 'OnItemAction' on plugin 'Genie v1.0.6' [3403522973] (Object reference not set to an instance of an object) at object Oxide.Plugins.Genie.OnItemAction(Item item, string action, BasePlayer player) in /home/container/carbon/plugins/Genie.cs:line 764 at object Oxide.Plugins.Genie.InternalCallHook(uint hook, object[] args) in Genie.cs/Internal:line 141 Failed to call internal hook 'OnItemAction' on plugin 'TreasureMaps v2.0.4' [3403522973] (Object reference not set to an instance of an object) at object Oxide.Plugins.TreasureMaps.OnItemAction(Item item, string action, BasePlayer player)+(MapConfiguration c) => { } [0] in /home/container/carbon/plugins/TreasureMaps.cs:line 1253 at MapConfiguration System.Collections.Generic.List<Oxide.Plugins.TreasureMaps+MapConfiguration>.Find(Predicate<MapConfiguration> match) at object Oxide.Plugins.TreasureMaps.OnItemAction(Item item, string action, BasePlayer player) in /home/container/carbon/plugins/TreasureMaps.cs:line 1253 at object Oxide.Plugins.TreasureMaps.InternalCallHook(uint hook, object[] args) in TreasureMaps.cs/Internal:line 506
  20. JustANoob

    Error popped up.

    I hope this helps you. Try this in the CS file: if (DependenciesLoaded) { Directory.CreateDirectory($"{Interface.Oxide.DataDirectory}/{Name}/images/"); foreach (var gesture in Gestures.ALL) { var path = config.Images[gesture.ID]; if (!path.ToLower().StartsWith("http") && !path.ToLower().StartsWith("https")) { // local path //path = $"{Interface.Oxide.DataDirectory}/{path}"; path = "file://" + Interface.Oxide.DataDirectory + Path.DirectorySeparatorChar + path; } ImageLibrary.Call<bool>("AddImage", path, $"gta2.{gesture.ID}", 0UL); } } I think this is the other part that I fixed: public static readonly GestureInfo Clap = new GestureInfo { ID = "Gesture.Clap", //Icon = "https://imgur.com/RWp140k.png" Icon = "GestureToActivate/images/clap.png" }; public static readonly GestureInfo Wave = new GestureInfo { ID = "Gesture.Wave", Icon = "GestureToActivate/images/wave.png" }; public static readonly GestureInfo Victory = new GestureInfo { ID = "Gesture.Victory", Icon = "GestureToActivate/images/victory.png" }; public static readonly GestureInfo ThumbsUp = new GestureInfo { ID = "Gesture.ThumbsUp", Icon = "GestureToActivate/images/thumbsup.png" }; public static readonly GestureInfo ThumbsDown = new GestureInfo { ID = "Gesture.ThumbsDown", Icon = "GestureToActivate/images/thumbsdown.png" }; public static readonly GestureInfo Shrug = new GestureInfo { ID = "Gesture.Shrug", Icon = "GestureToActivate/images/shrug.png" }; public static readonly GestureInfo Point = new GestureInfo { ID = "Gesture.Point", Icon = "GestureToActivate/images/point.png" }; public static readonly GestureInfo Ok = new GestureInfo { ID = "Gesture.Ok", Icon = "GestureToActivate/images/ok.png" }; public static readonly GestureInfo Hurry = new GestureInfo { ID = "Gesture.Hurry", Icon = "GestureToActivate/images/hurry.png" }; public static readonly GestureInfo Friendly = new GestureInfo { ID = "Gesture.Friendly", Icon = "GestureToActivate/images/surrender.png" }; } public class GestureInfo { public string ID; public string Icon; } This is what my config looks like: "Gesture Images": { "Gesture.Clap": "GestureToActivate/images/clap.png", "Gesture.Friendly": "GestureToActivate/images/surrender.png", "Gesture.Hurry": "GestureToActivate/images/hurry.png", "Gesture.Ok": "GestureToActivate/images/ok.png", "Gesture.Point": "GestureToActivate/images/point.png", "Gesture.Shrug": "GestureToActivate/images/shrug.png", "Gesture.ThumbsDown": "GestureToActivate/images/thumbsdown.png", "Gesture.ThumbsUp": "GestureToActivate/images/thumbsup.png", "Gesture.Victory": "GestureToActivate/images/victory.png", "Gesture.Wave": "GestureToActivate/images/wave.png" },
  21. ok thanks!
  22. I know you might have meant for the UpdateChecker to do something like this, but... It's finding other plugins sources with the same name and posting them as the the same plugin source name and thinks it has an update. I already updated a plugin with the same name and lost all the config data, because it over wrote the file and I had to find my backup to fix it. From now on I'm going to have to check the source and see if it's what I need. Thank you for looking into this! https://github.com/DocValerian/rust-plugins/blob/main/x_UnpolishedPlugins/ScavengerHunt.cs https://codefling.com/plugins/scavenger-hunt-event
  23. JustANoob

    Error popped up.

    This comes up on RandomRaids.cs at object Oxide.Plugins.BetterNpcNames.InternalCallHook(uint hook, object[] args) in BetterNpcNames.cs/Internal:line 127</size> (16:33:13) <size=16>Failed to call internal hook 'OnEntitySpawned' on plugin 'BetterNpcNames v1.2.0' [2949838417] (Object reference not set to an instance of an object) at void Oxide.Plugins.BetterNpcNames.UpdateName(NPCPlayer npc) in /home/container/carbon/plugins/BetterNpcNames.cs:line 429 at void Oxide.Plugins.BetterNpcNames.OnEntitySpawned(BaseEntity entity) in /home/container/carbon/plugins/BetterNpcNames.cs:line 270 at object Oxide.Plugins.BetterNpcNames.InternalCallHook(uint hook, object[] args) in BetterNpcNames.cs/Internal:line 127</size> (16:33:14) <size=16>Failed to call internal hook 'OnEntitySpawned' on plugin 'BetterNpcNames v1.2.0' [2949838417] (Object reference not set to an instance of an object) at void Oxide.Plugins.BetterNpcNames.UpdateName(NPCPlayer npc) in /home/container/carbon/plugins/BetterNpcNames.cs:line 429 at void Oxide.Plugins.BetterNpcNames.OnEntitySpawned(BaseEntity entity) in /home/container/carbon/plugins/BetterNpcNames.cs:line 270 at object Oxide.Plugins.BetterNpcNames.InternalCallHook(uint hook, object[] args) in BetterNpcNames.cs/Internal:line 127</size> (16:33:15) <size=16>Failed to call internal hook 'OnEntitySpawned' on plugin 'BetterNpcNames v1.2.0' [2949838417] (Object reference not set to an instance of an object) at void Oxide.Plugins.BetterNpcNames.UpdateName(NPCPlayer npc) in /home/container/carbon/plugins/BetterNpcNames.cs:line 429 at void Oxide.Plugins.BetterNpcNames.OnEntitySpawned(BaseEntity entity) in /home/container/carbon/plugins/BetterNpcNames.cs:line 270 at object Oxide.Plugins.BetterNpcNames.InternalCallHook(uint hook, object[] args) in BetterNpcNames.cs/Internal:line 127</size> (16:33:16) <size=16>Failed to call internal hook 'OnEntitySpawned' on plugin 'BetterNpcNames v1.2.0' [2949838417] (Object reference not set to an instance of an object) at void Oxide.Plugins.BetterNpcNames.UpdateName(NPCPlayer npc) in /home/container/carbon/plugins/BetterNpcNames.cs:line 429 at void Oxide.Plugins.BetterNpcNames.OnEntitySpawned(BaseEntity entity) in /home/container/carbon/plugins/BetterNpcNames.cs:line 270 at object Oxide.Plugins.BetterNpcNames.InternalCallHook(uint hook, object[] args) in BetterNpcNames.cs/Internal:line 127</size> (16:33:17) <size=16>Failed to call internal hook 'OnEntitySpawned' on plugin 'BetterNpcNames v1.2.0' [2949838417] (Object reference not set to an instance of an object) at void Oxide.Plugins.BetterNpcNames.UpdateName(NPCPlayer npc) in /home/container/carbon/plugins/BetterNpcNames.cs:line 429 at void Oxide.Plugins.BetterNpcNames.OnEntitySpawned(BaseEntity entity) in /home/container/carbon/plugins/BetterNpcNames.cs:line 270 at object Oxide.Plugins.BetterNpcNames.InternalCallHook(uint hook, object[] args) in BetterNpcNames.cs/Internal:line 127</size> (16:33:19) <size=16>Failed to call internal hook 'OnEntitySpawned' on plugin 'BetterNpcNames v1.2.0' [2949838417] (Object reference not set to an instance of an object) at void Oxide.Plugins.BetterNpcNames.UpdateName(NPCPlayer npc) in /home/container/carbon/plugins/BetterNpcNames.cs:line 429 at void Oxide.Plugins.BetterNpcNames.OnEntitySpawned(BaseEntity entity) in /home/container/carbon/plugins/BetterNpcNames.cs:line 270 at object Oxide.Plugins.BetterNpcNames.InternalCallHook(uint hook, object[] args) in BetterNpcNames.cs/Internal:line 127</size> (16:33:20) <size=16>Failed to call internal hook 'OnEntitySpawned' on plugin 'BetterNpcNames v1.2.0' [2949838417] (Object reference not set to an instance of an object) at void Oxide.Plugins.BetterNpcNames.UpdateName(NPCPlayer npc) in /home/container/carbon/plugins/BetterNpcNames.cs:line 429 at void Oxide.Plugins.BetterNpcNames.OnEntitySpawned(BaseEntity entity) in /home/container/carbon/plugins/BetterNpcNames.cs:line 270 at object Oxide.Plugins.BetterNpcNames.InternalCallHook(uint hook, object[] args) in BetterNpcNames.cs/Internal:line 127</size> (16:33:21) <size=16>Failed to call internal hook 'OnEntitySpawned' on plugin 'BetterNpcNames v1.2.0' [2949838417] (Object reference not set to an instance of an object) at void Oxide.Plugins.BetterNpcNames.UpdateName(NPCPlayer npc) in /home/container/carbon/plugins/BetterNpcNames.cs:line 429 at void Oxide.Plugins.BetterNpcNames.OnEntitySpawned(BaseEntity entity) in /home/container/carbon/plugins/BetterNpcNames.cs:line 270 at object Oxide.Plugins.BetterNpcNames.InternalCallHook(uint hook, object[] args) in BetterNpcNames.cs/Internal:line 127</size> (16:33:22) <size=16>Failed to call internal hook 'OnEntitySpawned' on plugin 'BetterNpcNames v1.2.0' [2949838417] (Object reference not set to an instance of an object) at void Oxide.Plugins.BetterNpcNames.UpdateName(NPCPlayer npc) in /home/container/carbon/plugins/BetterNpcNames.cs:line 429 at void Oxide.Plugins.BetterNpcNames.OnEntitySpawned(BaseEntity entity) in /home/container/carbon/plugins/BetterNpcNames.cs:line 270 at object Oxide.Plugins.BetterNpcNames.InternalCallHook(uint hook, object[] args) in BetterNpcNames.cs/Internal:line 127</size> (16:33:23) <size=16>Failed to call internal hook 'OnEntitySpawned' on plugin 'BetterNpcNames v1.2.0' [2949838417] (Object reference not set to an instance of an object) at void Oxide.Plugins.BetterNpcNames.UpdateName(NPCPlayer npc) in /home/container/carbon/plugins/BetterNpcNames.cs:line 429 at void Oxide.Plugins.BetterNpcNames.OnEntitySpawned(BaseEntity entity) in /home/container/carbon/plugins/BetterNpcNames.cs:line 270 at object Oxide.Plugins.BetterNpcNames.InternalCallHook(uint hook, object[] args) in BetterNpcNames.cs/Internal:line 127</size> (16:33:24) <size=16>Failed to call internal hook 'OnEntitySpawned' on plugin 'BetterNpcNames v1.2.0' [2949838417] (Object reference not set to an instance of an object) at void Oxide.Plugins.BetterNpcNames.UpdateName(NPCPlayer npc) in /home/container/carbon/plugins/BetterNpcNames.cs:line 429 at void Oxide.Plugins.BetterNpcNames.OnEntitySpawned(BaseEntity entity) in /home/container/carbon/plugins/BetterNpcNames.cs:line 270 at object Oxide.Plugins.BetterNpcNames.InternalCallHook(uint hook, object[] args) in BetterNpcNames.cs/Internal:line 127</size> (16:33:26) <size=16>Failed to call internal hook 'OnEntitySpawned' on plugin 'BetterNpcNames v1.2.0' [2949838417] (Object reference not set to an instance of an object) at void Oxide.Plugins.BetterNpcNames.UpdateName(NPCPlayer npc) in /home/container/carbon/plugins/BetterNpcNames.cs:line 429 at void Oxide.Plugins.BetterNpcNames.OnEntitySpawned(BaseEntity entity) in /home/container/carbon/plugins/BetterNpcNames.cs:line 270 at object Oxide.Plugins.BetterNpcNames.InternalCallHook(uint hook, object[] args) in BetterNpcNames.cs/Internal:line 127</size> (16:33:27) <size=16>Failed to call internal hook 'OnEntitySpawned' on plugin 'BetterNpcNames v1.2.0' [2949838417] (Object reference not set to an instance of an object) at void Oxide.Plugins.BetterNpcNames.UpdateName(NPCPlayer npc) in /home/container/carbon/plugins/BetterNpcNames.cs:line 429 at void Oxide.Plugins.BetterNpcNames.OnEntitySpawned(BaseEntity entity) in /home/container/carbon/plugins/BetterNpcNames.cs:line 270 at object Oxide.Plugins.BetterNpcNames.InternalCallHook(uint hook, object[] args) in BetterNpcNames.cs/Internal:line 127</size> (16:33:28) <size=16>Failed to call internal hook 'OnEntitySpawned' on plugin 'BetterNpcNames v1.2.0' [2949838417] (Object reference not set to an instance of an object) at void Oxide.Plugins.BetterNpcNames.UpdateName(NPCPlayer npc) in /home/container/carbon/plugins/BetterNpcNames.cs:line 429 at void Oxide.Plugins.BetterNpcNames.OnEntitySpawned(BaseEntity entity) in /home/container/carbon/plugins/BetterNpcNames.cs:line 270 at object Oxide.Plugins.BetterNpcNames.InternalCallHook(uint hook, object[] args) in BetterNpcNames.cs/Internal:line 127</size>
2.2m

Downloads

Total number of downloads.

10.4k

Customers

Total customers served.

150.1k

Files Sold

Total number of files sold.

3.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.