This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> at dev.aura.bungeechat.message.PlaceHolderUtil.getFullFormatMessage(PlaceHolderUtil.java:78) | |
at dev.aura.bungeechat.message.MessagesService.preProcessMessage(MessagesService.java:251) | |
at dev.aura.bungeechat.message.MessagesService.preProcessMessage(MessagesService.java:226) | |
at dev.aura.bungeechat.message.MessagesService.preProcessMessage(MessagesService.java:216) | |
at dev.aura.bungeechat.message.MessagesService.sendLocalMessage(MessagesService.java:122) | |
at dev.aura.bungeechat.message.MessagesService.sendLocalMessage(MessagesService.java:115) | |
at dev.aura.bungeechat.listener.LocalChatListener.onPlayerChat(LocalChatListener.java:35) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
02:18:41 [WARNING] Error dispatching event ChatEvent(super=TargetedEvent(sender=Rainbow_Dash1342, receiver=net.md_5.bungee.ServerConnection@33256640), cancelled=true, message=aksdhalshdlashjdas) to listener dev.aura.bungeechat.listener.LocalChatListener@19fe4644 | |
java.lang.NoSuchMethodError: net.alpenblock.bungeeperms.PermissionsManager.getUser(Ljava/util/UUID;)Lnet/alpenblock/bungeeperms/User; | |
at dev.aura.bungeechat.hook.BungeePermsHook.getUser(BungeePermsHook.java:42) | |
at dev.aura.bungeechat.hook.BungeePermsHook.getPrefix(BungeePermsHook.java:22) | |
at dev.aura.bungeechat.api.hook.HookManager.getPrefix(HookManager.java:39) | |
at dev.aura.bungeechat.api.hook.HookManager.getFullname(HookManager.java:62) | |
at dev.aura.bungeechat.message.PlaceHolders.lambda$registerPlaceholders$9(PlaceHolders.java:38) | |
at dev.aura.bungeechat.api.placeholder.PlaceHolder.apply(PlaceHolder.java:52) | |
at dev.aura.bungeechat.api.placeholder.PlaceHolderManager.processMessage(PlaceHolderManager.java:24) | |
at dev.aura.bungeechat.message.Place |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4:24:22 [WARNING] [BungeeTabListPlus] Failed to load default.yml | |
Cannot create property=size for JavaBean=codecrafter47.bungeetablistplus.config.DynamicSizeConfig@53ed09e8 | |
in 'reader', line 16, column 1: | |
showTo: "all" | |
^ | |
Unable to find property 'size' on class: codecrafter47.bungeetablistplus.config.DynamicSizeConfig | |
in 'reader', line 121, column 7: | |
size: 60 # 60 slots -> 3 columns, 20 rows | |
^ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is the default configuration file of BungeeTabListPlus. | |
# | |
# Since the configuration of the plugin is quite complex you | |
# might want to have a look at the wiki from time to time. | |
# | |
# Wiki: https://github.com/CodeCrafter47/BungeeTabListPlus/wiki | |
# Placeholders: https://github.com/CodeCrafter47/BungeeTabListPlus/wiki/Placeholders | |
# Examples: https://github.com/CodeCrafter47/BungeeTabListPlus/wiki/Examples | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hook.Add("PlayerSay", "Dereinzigartige", function( ply, text ) | |
if text == "Hallo" then | |
print("Hello") | |
end | |
end) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GlobalVar = "Global Variable, avaiable in every file and script" | |
local locVar = "Local variable, just avaiable in this file" | |
function test() | |
local funcVar = "Variable thats just avaiable inside our function" | |
for i=0, 1, 1 do | |
local loopVar = "Variable thats just avaiable inside our loop" | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env php | |
<?php | |
/* * | |
* Database Row format update script | |
* | |
* Description: This script only serves the purpose to update all tables inside a specified database to the ROW_FORMAT=DYNAMIC | |
* | |
* @author Aperture Development <[email protected]> | |
* @version 0.0.1 | |
* @license by-sa 4.0 |