Dancing NPC (Legacy Thread)

Works perfectly, getting some console spam when using the DLC dances though:

Code:
Failed to call hook 'CanUseGesture' on plugin 'Dance v1.2.0' (NullReferenceException: Object reference not set to an instance of an object)
  at Oxide.Plugins.Dance.CanUseGesture (BasePlayer player, GestureConfig gesture) [0x00018] in <b368ab73978c4917ac89d6f34d39a787>:0
  at Oxide.Plugins.Dance.DirectCallHook (System.String name, System.Object& ret, System.Object[] args) [0x00082] in <b368ab73978c4917ac89d6f34d39a787>:0
  at Oxide.Plugins.CSharpPlugin.InvokeMethod (Oxide.Core.Plugins.HookMethod method, System.Object[] args) [0x00079] in <795304323ac74a298b8ed190a1dfa739>:0
  at Oxide.Core.Plugins.CSPlugin.OnCallHook (System.String name, System.Object[] args) [0x000de] in <beb2b64691c64e2b95b99491bd85442c>:0
  at Oxide.Core.Plugins.Plugin.CallHook (System.String hook, System.Object[] args) [0x00060] in <beb2b64691c64e2b95b99491bd85442c>:0
(21:52:02) | User tried to check DLC license but not authed (9085195)
 
Works perfectly, getting some console spam when using the DLC dances though:

Code:
Failed to call hook 'CanUseGesture' on plugin 'Dance v1.2.0' (NullReferenceException: Object reference not set to an instance of an object)
  at Oxide.Plugins.Dance.CanUseGesture (BasePlayer player, GestureConfig gesture) [0x00018] in <b368ab73978c4917ac89d6f34d39a787>:0
  at Oxide.Plugins.Dance.DirectCallHook (System.String name, System.Object& ret, System.Object[] args) [0x00082] in <b368ab73978c4917ac89d6f34d39a787>:0
  at Oxide.Plugins.CSharpPlugin.InvokeMethod (Oxide.Core.Plugins.HookMethod method, System.Object[] args) [0x00079] in <795304323ac74a298b8ed190a1dfa739>:0
  at Oxide.Core.Plugins.CSPlugin.OnCallHook (System.String name, System.Object[] args) [0x000de] in <beb2b64691c64e2b95b99491bd85442c>:0
  at Oxide.Core.Plugins.Plugin.CallHook (System.String hook, System.Object[] args) [0x00060] in <beb2b64691c64e2b95b99491bd85442c>:0
(21:52:02) | User tried to check DLC license but not authed (9085195)

That error is from a different plugin tho...
 
Causes issues with the Dance Plugin. Cool idea though.

I'm trying to figure out how it's conflicting with the Dance plugin, the Dance plugin runs on the player, while this one spawns an npc. The problem is that both plugins use the same command name, so just go to the config and change the command name
 
Is it possible to add the ability for the player to specify a kit (pulled from k1lly0u's Rust Kits plugin) that the spawned NPC will be wearing? For example:

/dance [gesture] [kit]
/dance raiseroof discosuit
 
Getting console messages when doing RaiseRoof, CabbagePatch or Twist:
Code:
User tried to check DLC license but not authed (6790721)
Thanks for the option to add kits :D I was using inventory viewer to drag stuff onto them but this is much easier
 
Back
Top
This plugin uses Oxide's permission system. Grant or revoke permissions using oxide.grant and oxide.revoke. You can assign them to individual players or groups using their Steam id or group name.
Chat commands start with a /, while console commands can be entered directly in the F1 console or server console. Use find <keyword> in console to search for available commands related to the plugin.
Settings are stored in the config file found under the config/ directory. You can edit this file manually, then reload the plugin to apply your changes.
Persistent data is saved in the data/ directory. This includes things like saved settings, usage stats, or player progress depending on the plugin. Deleting a data file will reset stored progress or customizations.
Language files are located in the lang/ folder. To translate messages, copy the en.json file into your target language folder (e.g. fr, de) and edit the values. Reload the plugin after changes to apply new messages.
This section lists public methods exposed by the plugin for use in other plugins. You can call these via the CallHook method. Make sure the plugin is loaded before calling its API to avoid null reference errors.
These are custom hooks that other plugins can listen for. Simply define a method with the same name and expected parameters in your plugin to handle the event. Hooks are triggered at key moments and are useful for extending or reacting to plugin behavior.
These hooks are injected into the game's code using Harmony. They let the plugin run code at key points in the game's internal logic. You can return values to block or modify behavior. Use with caution — these are powerful and can affect core mechanics.
Cart