-
Posts
2,564 -
Joined
-
Last visited
-
Days Won
37
Content Type
Profiles
Warranty Claims
Downloads
Forums
Store
Services
Downloads Plus Support
DOWNLOADS EXTRA
Everything posted by David
-
Hey, I highly recommend you contacting @Flammable (discord Flammable#0001). He's been building servers for people quite some time already, he is familiar with most of plugins out there. You can also check out his fiverr gig https://www.fiverr.com/share/XBDpYG has over 100 reviews.
-
-
Cooldowns for commands works in latest version. Don't want to make people change their configs for this change. You can always create your own console command which includes all your other commands. Paste this into any plugin. //mycustomcommand $player.id [ConsoleCommand("mycustomcommand")] private void mycustomcommand_1(ConsoleSystem.Arg arg) { //args var args = arg.Args; if (args.Length != 1) return; //prevent player usage var player = arg?.Player(); if (player != null) return; //find target var target = BasePlayer.FindByID(Convert.ToUInt64(args[0])); if (target == null) { Puts("player not found"); return; } //rcon commands to execute Server.Command($"audio.message send {target.userID} register"); Server.Command($"radstorm start"); Server.Command($"notify.player {target.displayName} 0 Purchased a Radstorm"); }
-
in case someone is scrolling through forum threads and looking for similar plugin.
-
Hey, sure go ahead. You can upload it into "Customizations" section and I will list it at plugin description Feature to extend overlay effects will come later on. Things like this are possible and its not hard to code them but what I have to be careful about is complexity and difficulty of configuration. Customer support eats about 2-3 hours of my time every day so I really have to think twice what features I'm going to put in. Also this feature is something what can exists outside of my plugin as well, so you can always commission other devs too.