BDRP_CustomChatCommands

BDRP_CustomChatCommands

  • This script is completely primitive
  • It is very easy to work with it and add new commands
  • The script contains command / discord but you can easy create next command

#BDRP_Client.lua create next commands

  • For example you need command /web or teamspeak3 no problem:

1,You copy the original and paste it one line lower

RegisterCommand(“discord”, function () TriggerEvent(“chatMessage”, “^8 [The name of your server]” … " ^6 Discord: ^7 ^_Yours discord adress") end) --/discord

RegisterCommand(“web”, function () TriggerEvent(“chatMessage”, “^8 [The name of your server]” … " ^6 WEB: ^7 ^_Yours Yours website") end) --/web

Now you have two commands in a chat /discord and /web.

In a TriggerEvent we can find this ^8 or this ^_ this is colors font. Colors you can find here: Chat Formatting // Colors, Bold, Underline

Download: GitHub - B-rum-o/BDRP_CustomChatCommands

Too simple, 50 lines more like a tutorial but not even that since it uses deprecated events.