Basic Admin Essentials Plugin Help

Everything’s great! I was searching through Dev Forums and was wondering are there any copy paste logs that work with BAE 2.0?

1 Like

Thank you so much for your help with forking the module. But I do have a question, do you know how to make the full set message command?

As said before, using a plugin to make the setmessage command is not possible.

@sunnyrainqs You could use :GetPropertyChangedSignal() on their chat bar textbox, and then compare the length of the old text to the new text after they typed. If the difference isn’t 1, they’re copying and pasting. Then, if that’s detected, you could insert it into a table and then use that table for a list with your custom command.

@Pieces2010 Could you clarify what you mean by “setmessage”?

What I mean by setmessage is a message that will stay on everybody’s screen until a new hint is replaced. I know what I meant by setmessage is not fully self-explanatory.

I would have to do a bit of research into how BA handles it on the client for hints at the top of the screen. I believe it has a time limit based on how many characters are in the string for the text part. Not the title. I’ll look into it.

1 Like

Also, @Pieces2010 @sunnyrainqs, please keep in mind that people regularly manage to find new security issues with BA, and then the creator has to update the module. Make sure you stay on top of any new bug fixes or updates that come out so you can replace your module accordingly.

1 Like

What are the Security issues with BA?

I’m not saying there are any currently, but exploiters always manage to find a way to get around security already put in place, so it’s best to keep your modules up to date whenever the creator updates it.

1 Like

I think it’s the other way around, FurryFish made BA a very long time ago and he changed up BA a bit for Frappe.

TheFurryFish did made BAE. It is unknown if it was made only for Frappe first but I do think so. After Furry left their team in 2019, they got a new developer and he just made some new plugins for Frappe and that’s all.

Fun fact, they use Furry’s original Menu GUI in their V5, lol.

4 Likes

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