GithubHelp home page GithubHelp logo

custom commands don't work about core HOT 7 CLOSED

nanoblox avatar nanoblox commented on July 24, 2024
custom commands don't work

from core.

Comments (7)

1ForeverHD avatar 1ForeverHD commented on July 24, 2024

Custom commands appear to be working fine with the latest loader, can you provide more details?

image

image

from core.

DarthMDev avatar DarthMDev commented on July 24, 2024

How do I get the latest loader ? I inserted the latest model of hd admin and still have issues . It says invalid command when trying to use

from core.

DarthMDev avatar DarthMDev commented on July 24, 2024

this is an example of one of my commands:

		Name = "setwave";
		Aliases	= {'waveset'};
		Prefixes = {settings.Prefix};
		Rank = 3;
		RankLock = false;
		Loopable = false;
		Tags = {'debug','abusive'};
		Description = "Used to set the wave value to a number";
		Contributors = {};
		--
		Args = {'Number'};
		Function = function(speaker, args)
			game.Workspace.Wave.Value = tonumber(args[1])

		end;
		--
	};

from core.

1ForeverHD avatar 1ForeverHD commented on July 24, 2024

This appears to work fine:

image

Are your command tables structured correctly?

Here's what I'm doing:

-- << RETRIEVE FRAMEWORK >>
local main = _G.HDAdminMain
local settings = main.settings



-- << COMMANDS >>
local module = {
	
	-----------------------------------
	{
	Name = "setwave";
	Aliases	= {'waveset'};
	Prefixes = {settings.Prefix};
	Rank = 3;
	RankLock = false;
	Loopable = false;
	Tags = {'debug','abusive'};
	Description = "Used to set the wave value to a number";
	Contributors = {};
	--
	Args = {'Number'};
	Function = function(speaker, args)
		game.Workspace.Wave.Value = tonumber(args[1])

	end;
	--
	};
	
	
	
	
	-----------------------------------
	
};



return module

from core.

DarthMDev avatar DarthMDev commented on July 24, 2024

yeah thats basically how my script looks except I have more commands than that but I don't want to leak my game stuff xD

from core.

DarthMDev avatar DarthMDev commented on July 24, 2024

Ok heres something interesting when i hit play the HD Admin is renamed to hdadminworkspacefolder right? well that's empty

from core.

1ForeverHD avatar 1ForeverHD commented on July 24, 2024

If you need help writing custom commands feel free to hop on over to #hd-admin in our community: https://hd.community

I'll close this issue for the time being as we're currently using this github for only major core bugs in v2.

from core.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.