Basic Admin Essentials Plugin Help

Idk how this topic blew up like this, but when I use the script someone posted here about sms popping up for single players when a command is executed it doesn’t work. You can only use FireAllClients event for it.

2 Likes

I might be late on all this but, this plugin isn’t working. Do you mind telling the working plugin? :slight_smile:

2 Likes

I mean like, you should probably just set the limit to like 10 or something because fast typers can easily be put into the copy and paste logs

1 Like

No matter how fast they’re typing, if they’re not copying and pasting the change in length will never be greater or less than than 1. It’s not possible to type multiple characters at once without copying and pasting.

I know this was posted a long time ago, but I still found this very useful! I will be sure to ask here for any help.

I am trying to make a warn command with BA. My code is:

local Plugin = function(...)
	local Data = {...} 

	local remoteEvent = Data[1][1]
	local pluginName = "warn"
	local pluginPrefix = ":" 
	local pluginRank = 2 
	local pluginDesc = "Warn users."

	local pluginFunction = function(Args)
		local Player = Args[2]
		remoteEvent:FireClient(Player, 'Notif','System,','You have been warned!')
	end
	pluginDesc = pluginName .. " " .. pluginDesc

	return pluginName, pluginFunction, pluginRank, pluginPrefix, {pluginName, pluginDesc}
end

return Plugin 

Error:
image

I’m pretty new to BA plugins so I may look like a noob! Apologies in advance.

Make a new post, not comment. This post is dead.

I made one. Basic Admin | Plugin Help

Is it possible to make is so you can use /e with basic admin essentials 2.0

Just do /c system in chat and then all messages you send will be sent to the “system” and other players cannot see it. It’s basically like the whisper system, you just press backspace a few times in your chat to go out of that mode.

I know but I would like it so people could use /e

What’s wrong with using /c system or the command bar (') that comes with BAE?

Nothing is wrong with it I just want people to be able to use /e

It most likely won’t work, you would have to do some modifications the the module.

Like what? I have tried many things but they haven’t worked.

I suggest making a new thread as this one is old and unused.

2 Likes

You can try to use the Main Module

why does this thread not have a solution after a year, can someone explain to me what’s the issue? im pretty experienced with basic admin

the original person already got their solution, its just that they won’t mark solution so the other players can get some help

I’m not sure if you ever found the solution to this, but if you didn’t, I could help you.