[1.11 - 1.14.4] ★ ChatCore ★ [► ALL IN ONE CHAT MANAGEMENT PLUGIN ◄]

Script [1.11 - 1.14.4] ★ ChatCore ★ [► ALL IN ONE CHAT MANAGEMENT PLUGIN ◄] 3.2.0

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

UPDATE 3.2.0 IS HERE! MEDIUM SIZED UPDATE!
PLEASE DON'T CLAIM THIS SKRIPT AS YOUR OWN. ITS MY BEST WORK!

Config has been reset for updating purposes. Please redo it!
-------------------------------------------------------------------------------

Big thanks to jackYodil, Hyperbyte, hazzlewood and BasicL in the Spigot reviews section for helping me bug fix.

Go to discussion tab in Skunity as well and leave some comments and ill respond to each one.

BrettplayMC | Sorry about ripping the page from Maximvdw. I have changed this, I did not mean any disrespect
Baefell | I am aware of this but to be fair im not sure how to fix this. I am working on it for the next update :emoji_slight_smile:
ShaneBee | Apology to ShaneBee as well, will try to be a better developer from now and maintain my projects.

Yes this 100% works on 1.13.x and 1.14.x
Any suggestions or bugs let me know :emoji_slight_smile:

Changelog:

Fix | Fixed Experimental Anti Ad ( Still in testing phase )
Fix | Actually added the prefix variable to the start of some messages! ( DUH )
Misc | The new permission node is FrostChat.<perm> instead of ChatCore.<perm>
Add | Added an OnLoadMessage function and in config
Misc | Converted {@ReportDelayInt} into {@ReportDelayNew}
Fix | Removed the Domain Count - Cause its broken smh
Misc | Removed Anti Hacksuation - Pointless
Misc | Rechecked all of the words to reduce lag, Make sure theres no copies. ( E.g "F*** off" is removed because "F***" is there already
NEW | Now default to using the Experimental Anti Advertisment module.

Please submit some code and give us feedback. YOU WILL BE CREDITED
UPDATE 3.1.0 IS HERE! MEDIUM SIZED UPDATE!
PLEASE DON'T CLAIM THIS SKRIPT AS YOUR OWN. ITS MY BEST WORK!
Config has been reset for updating purposes. Please redo it!
-------------------------------------------------------------------------------
Fixed | Fixed and Added some stuff to the Experimental Anti Advertisment Module ( Which is still in testing phase )
Misc | Completely re-branded the Skript back to what it used to be ( FrostChat )
Misc | Actually added the {@Prefix} config option to the start of some messages ( DUH )
Edit | Changed the permission nodes from ChatCore.<perm> to FrostChat.<perm>
Addon | Added an "OnLoadMessage" to the configuration file. Lets you know if the Skript needs updating or not + more info ( Sorta pointless I know )
Addon | Added a new config option "CurseAlertStaff" which alerts staff members whenever a player curses / swears.
Removal | Removed the stupidly configured {@DomainCount} variable on the /fc listdomains command which did not work.
Edit | Converted the not working {@ReportDelayInt} to {@ReportDelayNew}
3.0.0 is FINALLY HERE!!!!!
Added | Experimental Anti Advertisment Module
Added | NEW MODULE | Command Protection v1
Added | New fresh config at the start of the Skript!
Added | Report command so you can report players!
Added | NEW MODULE | Anti Hacksuation v2
Update | Updated Update Checker -< Lol thats a sentence.
Added | /cc disable and /cc enable For Admins
Fixed | Lots of Bugs
  • Like
Reactions: AlvianMinecraft
Misc | Fixed incorrect version number
Addon | Added Documentation at the beginning of the Skript
Addon | Added a Discord Support Server - https://discord.gg/Xh58kcY
Misc | Factorized and Divided Code into Chapters
Fix | Minor bug fixes
Misc | Organised some of the code
Addon | Disabled the Auto Updater completley as it was very buggy.
If you had the auto updater update or Version 2.0.7.x i reccomend you delete the ChatCore file and replace it with this one!
Fix | Fixed some errors with the skript.
Fix | Another fix to the Auto Updater, sorry for the constant updates however it is in BETA so expect more. If you wish you can revert back to the last stable version which is 2.0.6 until the next stable update comes out. ( Should take a few days )
Fix | Made a fix to the code for the auto updater, this would have been in a different update but it is quite important.


Update 2.0.7

code_language.skript:
on join:
    set {_Version} to line 3 from url "https://pastebin.com/FSjxR6jg"
    if {_Version} is not {@Version}:
        broadcast "&cYou are using an outdated version of ChatCore, please go to the spigot page and update to the latest version!"



Update 2.0.7.1 ( Patch )


code_language.skript:
on join:
    set {_Version} to line 3 from url "https://pastebin.com/raw/FSjxR6jg"
    if {_Version} is not {@Version}:
        broadcast "&cYou are using an outdated version of ChatCore, please go to the spigot page and update to the latest version!"
Addon | Added Auto Updater, now warns you if the Skript needs to be updated. You can also check by typing /chatcore:updater ( Aliases will be coming next update! )
Fix
| Cleaned up the code by editing the clear chat command.

( Before Version 2.0.7 Update )
code_language.skript:
    Version: V 2.0.6
    Warning: &7Clearing Entities In
command /clearchat:
  permission: chatcore.clearchat
  trigger:
    broadcast "&7"
    loop 150 times:
      broadcast ""
      broadcast ""
    broadcast "&4Chat has been cleared by an administrator"
    stop

( After Version 2.0.7 Update )
code_language.skript:
if arg 1 is "clearchat":
             broadcast "&7"
                loop 150 times:
                  broadcast ""
                   broadcast ""
                broadcast "&4Chat has been cleared by &c%player%&7!"
                stop