Plugin Request Punishment Points

Discussion in 'Plugin Help/Development/Requests' started by Blue222222, May 18, 2015.

Thread Status:
Not open for further replies.
  1. Offline

    Blue222222

    Plugin category: Admin Tools

    Suggested name: Punishment Points (Sorry, this isn't really my thing)

    What I want: I need a plugin that you can add punishment points with a command, and there is a preset (set in the config) list of possible punishments that staff members can choose from. After a player receives a certain amount of points, a command will be run. If the player continues to offend more, they will reach the next set amount of punishment points, and another command will be run. I also need punishment points made previously to expire eventually, 1 month perhaps.
    EG:
    If a staff member sees a player hacking, they do /punish PLAYERNAME Hacking and it will add the amount of point set in the config for hacking, let's say 3 for this case. They then are caught again swearing, and the staff member runs /warn PLAYERNAME Swearing and it adds 1 punishment point, which was set in the config. Since the player now has 4 points, and I set in the config to run a tempban command in the config if the player has 4 points, they player will be tempbanned.

    I have seen plugins that kind of already do this, but they do not have configurable settings. They also do not support multiple warning point punishment levels (4,8 etc.) or have punishment points that expire. Sorry if what I'm asking for is impossible, I don't really know anything about plugin development.

    Ideas for commands:
    /punish <player> <offence> - To give players the amount of punishment points relevant to the offence they made.

    /addpunish <player> <amount> - Manually add punishment points.

    /delpunish <player> <amount> - Manually remove punishment points.


    Ideas for permissions:
    punishpoints.punish - Access to /punish
    punishpoints.punish.<punishment name> - Per-Punishment permissions, if that's possible
    punishpoints.punish.* - Access to all punishments
    punishpoints.admin - All the admin commands and stuff (eg. /punishpoints reload)

    When I'd like it by: I don't really have a set date for this, and I understand that this plugin is quite an ambitious project (at least I think it is), so it might take some time. But if you do accept this, I would appreciate if you did inform me about how long you expected it to take.

    Thanks, and sorry if this is too complicated and/or impossible. It just would be very useful for me to keep punishments organised on my server and to stop staff from giving the incorrect punishments. Also, if a plugin meeting my needs already exists, please link it in the comments. I couldn't find any.
     
  2. Offline

    meguy26

    @Blue222222
    Got a day off wednesday, I'll look into it then.
     
  3. Offline

    Blue222222

    Thanks!
     
  4. Offline

    Blue222222

    BUMP. Anyone Else?
     
  5. Offline

    meguy26

    @Blue222222
    No need to bump... I am working on it, currently commands are partially setup and data files generate properly, it should be done in approx. 1 week, unless something unexepected comes up.
     
  6. Offline

    Blue222222

    Oops, sorry.
    Looking forward to seeing it :)
     
  7. Offline

    meguy26

    @Blue222222
    Ive got a first version ready, its mostly tested. I am a little worried about the point expiring function, it should work
    but I am unsure. The config is not a normal YAML file, but it should be easy enough to understand. It does require my own library, but I will include that in the download.

    Download:

    https://www.dropbox.com/s/zst4q3va886b4v1/Points.zip?dl=1

    Commands:

    do /poi help ingame/inconsole for help. Do /poi help <command> for specific help.


    Permissions:

    punishmentpoints.command - Gives access to the /poi command.

    punishmentpoints.warn.* - Gives access to all possible warn offenses.

    punishmentpoints.warn.<offense> - Gives access to a specific warn offense, should be all lower case.

    punishmentpoints.manualinc - Gives access to the /poi manualinc command.

    punishmentpoints.manualdec - Gives access to the /poi manualdec command.

    punishmentpoints.addreason - Gives access to the /poi addreason command.

    punishmentpoints.addpunish - Gives access to the /poi addreason command


    If you have any problems, just tag me in this thread!

    Side note:
    It uses Java 7, if you have an older version, it will not work, I can compile it backwards into Java 6, but it would be easier if you had Java 7.

    :)
     
  8. Offline

    Blue222222

    @meguy26
    The plugin itself works just fine. I created a punishment with 12 points, and after I warned myself, the server issued a ban command. My issue though is that the Punishment points folder is empty and the MipaYrarbil folder's config.yml is empty. Is the config saved somewhere else possibly?
    http://imgur.com/Z3CQTwB,3wcBUpX
     
    Last edited: May 22, 2015
  9. Offline

    meguy26

    @Blue222222
    Its empty? Odd... are there any errors?
    MipaYrarbil is just a library, it has no config.
    My directory looks like this:
    PunishFolder.PNG
    It is possible that the plugin does not have write permissions, but I doubt it, that usually does not happen. What does it say at the end of the console? right after "Enabling PunishmentPoints v1.0"
    Another possibility is that the FTP is only looking for YAML files, but that does not make sense either.

    What hosting service are you using? And what version of java do they run?

    I pasted the default config below, if you look at line 36 it does indeed ban you at 12 points ;)
    Code:
    /#/Dictates how long it takes for points to be removed, it is measured by days, so 1 is one day.
    PointsDelay=1
    
    /#/Dictates the amount of points that are removed every PointDelay, 'ALL' removes all points from the player.
    PointsAmount=5
    
    /#/The message to send to a player when they are warned, {warn} is replaced with the offense, {points} is replaced with the point value of the offense and {totalpoints} is replaced with the total points of the player.
    Message=You were warned for {warn} and gained {points} points, you now have a total of {totalpoints} points.
    
    
    
    @Section:Offenses
    /##/This section is were possible offenses are stored, to manually add an offense, put the offense, then an equals sign, and then the point value, for example 'existing=1' would give the player 1 point whenever they were warned for existing. All warnings should be lowercase.
    
    
    hacking=10
    
    spamming=2
    
    advertising=5
    
    griefing=5
    
    
    
    @Section:Punishments
    /##/This section is where punishments are stored, to manually add punishment put the number of points, and an equals sign, and then the command, without a slash, for example '2=tell {player} stahp' would send the player a message when they reach two points.
    
    
    4=tell {player} Stop breaking the rules!
    
    8=kick {player} Stop breaking the rules!
    
    12=ban {player} You kept breaking the rules... Appeal to be unbanned at www.example.com
    
     
    Last edited: May 22, 2015
  10. Offline

    Blue222222

    @meguy26
    In the startup it says the following. It appears to have loaded fine:

    Code:
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: [PunishmentPoints] Finished enabling!
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: [PunishmentPoints] Loaded data files!
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: [PunishmentPoints] All data files have already been generated! Loading...
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: [PunishmentPoints] Enabling PunishmentPoints v1.0
    Here is the full startup log if it helps find the issue. I am using BeastNode hosts and they are using Java 8. I will try later today to see if all the files generate on a private server. Is there any way I could manually add the config? I am also using Spigot 1.8, made using BuildTools, in case it is incompatible.

    Code:
    22.05 14:44:06 [Server] INFO [14:44:06 INFO]: [Buycraft] Loaded 3 package(s) into the cache.
    22.05 14:44:05 [Server] INFO [14:44:05 INFO]: GroupManager - INFO - Bukkit Permissions Updated!
    22.05 14:44:05 [Server] INFO [14:44:05 INFO]: [Buycraft] Plugin is now ready to be used.
    22.05 14:44:05 [Server] INFO [14:44:05 INFO]: [Buycraft] Authenticated with the specified Secret key.
    22.05 14:44:05 [Server] INFO [14:44:05 INFO]: [NoCheatPlus] Post-enable finished.
    22.05 14:44:05 [Server] INFO [14:44:05 INFO]: [NoCheatPlus] Post-enable running...
    22.05 14:44:05 [Server] INFO [14:44:05 INFO]: RCON running on 198.143.150.53:27971
    22.05 14:44:05 [Server] INFO [14:44:05 INFO]: Starting remote control listener
    22.05 14:44:05 [Server] INFO [14:44:05 INFO]: Query running on 198.143.150.53:25875
    22.05 14:44:05 [Server] INFO [14:44:05 INFO]: Starting GS4 status listener
    22.05 14:44:05 [Server] INFO [14:44:05 INFO]: Done (5.497s)! For help, type "help" or "?"
    22.05 14:44:05 [Server] INFO [14:44:05 INFO]: Server permissions file permissions.yml is empty, ignoring it
    22.05 14:44:05 [Server] INFO [14:44:05 INFO]: [EssentialsChat] Enabling EssentialsChat vTeamCity
    22.05 14:44:05 [Server] INFO [14:44:05 INFO]: [EssentialsSpawn] Enabling EssentialsSpawn vTeamCity
    22.05 14:44:05 [Server] INFO [14:44:05 INFO]: [EssentialsProtect] Enabling EssentialsProtect vTeamCity
    22.05 14:44:05 [Server] INFO [14:44:05 INFO]: Essentials: Using GroupManager based permissions.
    22.05 14:44:05 [Server] INFO [14:44:05 INFO]: Using locale en_US
    22.05 14:44:05 [Server] INFO [14:44:05 INFO]: Using locale en_US
    22.05 14:44:05 [Server] INFO [14:44:05 INFO]: 1.8.3-R0.1-SNAPSHOT
    22.05 14:44:05 [Server] INFO [14:44:05 INFO]: git-Spigot-870264a-0a645a2 (MC: 1.8.3)
    22.05 14:44:05 [Server] INFO [14:44:05 INFO]: Bukkit version format changed. Version not checked.
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: [Essentials] Enabling Essentials vTeamCity
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: [WorldGuard] Loading region data...
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: [WorldGuard] Loaded configuration for world 'pvp'
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: [WorldGuard] (pvp) Fire spread is UNRESTRICTED.
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: [WorldGuard] (pvp) Lava fire is blocked.
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: [WorldGuard] (pvp) Lighters are PERMITTED.
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: [WorldGuard] (pvp) TNT ignition is PERMITTED.
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: [WorldGuard] (world_the_end) Lava fire is blocked.
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: [WorldGuard] (world_nether) Lava fire is blocked.
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: [WorldGuard] Loaded configuration for world 'world'
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: [WorldGuard] (world) Lava fire is blocked.
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: [WorldGuard] (world) Lighters are PERMITTED.
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: [ClearLag] No updates found!
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: [WorldGuard] Enabling WorldGuard v6.0.0-SNAPSHOT.1592-
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: [Multiverse-Core] 4 - World(s) loaded.
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: Preparing start region for level 3 (Seed: 9057399250643112553)
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: Item Merge Radius: 2.5
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: Item Despawn Rate: 6000
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: Max TNT Explosions: 100
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: Max Entity Collisions: 8
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: Sending up to 10 chunks per packet
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: Structure Info Saving: true
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: Random Lighting Updates: false
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: Wheat Growth Modifier: 100%
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: Sapling Growth Modifier: 100%
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: Pumpkin Growth Modifier: 100%
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: Mushroom Growth Modifier: 100%
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: Melon Growth Modifier: 100%
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: Cane Growth Modifier: 100%
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: Cactus Growth Modifier: 100%
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: Nerfing mobs spawned from spawners: false
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]:     Replace Blocks: [1, 5]
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]:     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]:     Engine Mode: 1
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: Anti X-Ray: true
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: Mob Spawn Range: 4
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: Zombie Aggressive Towards Villager: true
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: View Distance: 10
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: Arrow Despawn Rate: 1200
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: Experience Merge Radius: 3.0
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: Clear tick list: false
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: Chunks to Grow per Tick: 650
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: -------- World Settings For [pvp] --------
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: [Multiverse-Core] Loading World & Settings - 'pvp' - Env: NORMAL - Type: FLAT & seed: 9057399250643112553
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: [Multiverse-Core] Loading World & Settings - 'world_the_end' - Env: THE_END - Type: NORMAL & seed: 2234807715252386268
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: [Multiverse-Core] Loading World & Settings - 'world_nether' - Env: NETHER - Type: NORMAL & seed: 2234807715252386268
    22.05 14:44:04 [Server] INFO [14:44:04 INFO]: [Multiverse-Core] Loading World & Settings - 'world' - Env: NORMAL - Type: NORMAL & seed: 2234807715252386268
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: [AllPay] - Version 10.0 - hooked into Essentials Economy for Multiverse-Core v2.4-b527
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: [Multiverse-Core] - Version 2.4-b527 (API v14) Enabled - By Rigby, fernferret, lithium3141 and main--
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: [Multiverse-Core] Enabling Multiverse-Core v2.4-b527
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: ScheduledAnnouncer2 v2.8.5 - For version 1.7.9 is enabled!
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: [ScheduledAnnouncer2] Enabling ScheduledAnnouncer2 v2.8.5 - For version 1.7.9
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: [ClearLag] Checking for updates...
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: [ClearLag] Clearlag is now enabled!
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: [ClearLag] Modules have been loaded!
    22.05 14:44:03 [Server] INFO [14:44:03 WARN]: [ClearLag] mob-range requires you to use bukkit v1.7_r4 (1.7.10)
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: [ClearLag] Loading modules...
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: [ClearLag] Enabling ClearLag v2.7.7
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: [Lockette] Ready to protect your containers.
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: [Lockette] Using ops file for admin permissions.
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: [Lockette] Enabled link to plugin GroupManager for Groups, version 2.1.31 (Phoenix)
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: [Lockette] Loading strings file for English by Acru
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: [Lockette] Ignoring linked plugins: [mcMMO]
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: [Lockette] Custom lockable block list: [116, 84, 57, 145, 154]
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: [Lockette] Detected Bukkit version [v1_8_R2] ok.
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: [Lockette] Version 1.8.15 is being enabled!  Yay!  (Core version 1.3.5)
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: [Lockette] Enabling Lockette v1.8.15
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: [PunishmentPoints] Finished enabling!
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: [PunishmentPoints] Loaded data files!
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: [PunishmentPoints] All data files have already been generated! Loading...
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: [PunishmentPoints] Enabling PunishmentPoints v1.0
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: [MultiMOTD] Enabling MultiMOTD v1.2.2
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: [PlayerParticles] Enabling PlayerParticles v2.6
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: [Buycraft] Enabling Buycraft v6.7
    22.05 14:44:03 [Server] INFO **********************************************
    22.05 14:44:03 [Server] INFO ** Please see http://wiki.sk89q.com/wiki/WorldEdit/Bukkit_adapters
    22.05 14:44:03 [Server] INFO **
    22.05 14:44:03 [Server] INFO ** and biome-related functions.
    22.05 14:44:03 [Server] INFO ** will be blank, and so on. There will be no support for entity
    22.05 14:44:03 [Server] INFO ** When working with blocks or undoing, chests will be empty, signs
    22.05 14:44:03 [Server] INFO **
    22.05 14:44:03 [Server] INFO ** This WorldEdit version does not fully support your version of Bukkit.
    22.05 14:44:03 [Server] INFO **********************************************
    22.05 14:44:03 [Server] INFO [14:44:03 WARN]: [WorldEdit]
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: WEPIF: GroupManager detected! Using GroupManager for permissions.
    22.05 14:44:03 [Server] INFO [14:44:03 INFO]: [WorldEdit] Enabling WorldEdit v6.0;3342-78f975b9
    22.05 14:44:02 [Server] INFO [14:44:02 INFO]: [NoCheatPlus] Version 3.12.1-SNAPSHOT-sMD5NET-b815 is enabled.
    22.05 14:44:02 [Server] INFO [14:44:02 INFO]: [NoCheatPlus] Packet level access: ProtocolLib is not available.
    22.05 14:44:02 [Server] INFO [14:44:02 INFO]: [NoCheatPlus] Inventory checks: FastConsume is available, disabled InstantEat.
    22.05 14:44:02 [Server] INFO [14:44:02 INFO]: [NoCheatPlus] Added block-info for Minecraft 1.8 blocks.
    22.05 14:44:02 [Server] INFO [14:44:02 INFO]: [NoCheatPlus] Added block-info for Minecraft 1.7.2 blocks.
    22.05 14:44:02 [Server] INFO [14:44:02 INFO]: [NoCheatPlus] Added block-info for Minecraft 1.6.1 blocks.
    22.05 14:44:02 [Server] INFO [14:44:02 INFO]: [NoCheatPlus] Added block-info for Minecraft 1.5 blocks.
    22.05 14:44:02 [Server] INFO [14:44:02 INFO]: [NoCheatPlus] McAccess set to: 1.8.3 / Spigot-CB-DEV
    22.05 14:44:02 [Server] INFO [14:44:02 INFO]: [NoCheatPlus] Enabling NoCheatPlus v3.12.1-SNAPSHOT-sMD5NET-b815
    22.05 14:44:02 [Server] INFO [14:44:02 INFO]: GroupManager version 2.1.31 (Phoenix) is enabled!
    22.05 14:44:02 [Server] INFO [14:44:02 INFO]: GroupManager - INFO - Backups will be retained for 24 hours!
    22.05 14:44:02 [Server] INFO [14:44:02 INFO]: GroupManager - INFO - Scheduled Data Saving is set for every 10 minutes!
    22.05 14:44:02 [Server] INFO [14:44:02 INFO]: GroupManager - INFO - Superperms support enabled.
    22.05 14:44:02 [Server] INFO [14:44:02 INFO]: GroupManager - INFO - World Found: world
    22.05 14:44:02 [Server] INFO [14:44:02 INFO]: [GroupManager] Enabling GroupManager v2.1.31 (Phoenix)
    22.05 14:44:02 [Server] INFO [14:44:02 INFO]: Preparing start region for level 2 (Seed: 2234807715252386268)
    22.05 14:44:01 [Server] INFO [14:44:01 INFO]: Preparing start region for level 1 (Seed: 2234807715252386268)
    22.05 14:44:01 [Server] INFO [14:44:01 INFO]: Preparing spawn area: 51%
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Preparing start region for level 0 (Seed: 2234807715252386268)
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Item Merge Radius: 2.5
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Item Despawn Rate: 6000
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Max TNT Explosions: 100
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Max Entity Collisions: 8
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Sending up to 10 chunks per packet
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Structure Info Saving: true
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Random Lighting Updates: false
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Wheat Growth Modifier: 100%
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Sapling Growth Modifier: 100%
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Pumpkin Growth Modifier: 100%
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Mushroom Growth Modifier: 100%
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Melon Growth Modifier: 100%
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Cane Growth Modifier: 100%
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Cactus Growth Modifier: 100%
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Nerfing mobs spawned from spawners: false
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]:     Replace Blocks: [1, 5]
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]:     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]:     Engine Mode: 1
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Anti X-Ray: true
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Mob Spawn Range: 4
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Zombie Aggressive Towards Villager: true
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: View Distance: 10
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Arrow Despawn Rate: 1200
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Experience Merge Radius: 3.0
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Clear tick list: false
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Chunks to Grow per Tick: 650
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: -------- World Settings For [world_the_end] --------
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Item Merge Radius: 2.5
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Item Despawn Rate: 6000
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Max TNT Explosions: 100
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Max Entity Collisions: 8
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Sending up to 10 chunks per packet
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Structure Info Saving: true
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Random Lighting Updates: false
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Wheat Growth Modifier: 100%
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Sapling Growth Modifier: 100%
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Pumpkin Growth Modifier: 100%
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Mushroom Growth Modifier: 100%
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Melon Growth Modifier: 100%
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Cane Growth Modifier: 100%
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Cactus Growth Modifier: 100%
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Nerfing mobs spawned from spawners: false
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]:     Replace Blocks: [1, 5]
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]:     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]:     Engine Mode: 1
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Anti X-Ray: true
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Mob Spawn Range: 4
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Zombie Aggressive Towards Villager: true
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: View Distance: 10
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Arrow Despawn Rate: 1200
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Experience Merge Radius: 3.0
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Clear tick list: false
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Chunks to Grow per Tick: 650
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: -------- World Settings For [world_nether] --------
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Item Merge Radius: 2.5
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Item Despawn Rate: 6000
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Max TNT Explosions: 100
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Max Entity Collisions: 8
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Sending up to 10 chunks per packet
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Structure Info Saving: true
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Random Lighting Updates: false
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Wheat Growth Modifier: 100%
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Sapling Growth Modifier: 100%
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Pumpkin Growth Modifier: 100%
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Mushroom Growth Modifier: 100%
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Melon Growth Modifier: 100%
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Cane Growth Modifier: 100%
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Cactus Growth Modifier: 100%
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Nerfing mobs spawned from spawners: false
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]:     Replace Blocks: [1, 5]
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]:     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]:     Engine Mode: 1
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Anti X-Ray: true
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Mob Spawn Range: 4
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Zombie Aggressive Towards Villager: true
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: View Distance: 10
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Arrow Despawn Rate: 1200
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Experience Merge Radius: 3.0
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Clear tick list: false
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Chunks to Grow per Tick: 650
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: -------- World Settings For [world] --------
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: Preparing level "world"
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: **** Beginning UUID conversion, this may take A LONG time ****
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: [MipaYrarbil] Enabled MipaYrarbil API 1.0!
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: [MipaYrarbil] Enabling MipaYrarbil v1.2
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: [EssentialsChat] Loading EssentialsChat vTeamCity
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: [EssentialsSpawn] Loading EssentialsSpawn vTeamCity
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: [EssentialsProtect] Loading EssentialsProtect vTeamCity
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: [Essentials] Loading Essentials vTeamCity
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: [WorldGuard] Loading WorldGuard v6.0.0-SNAPSHOT.1592-
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: [Multiverse-Core] Loading Multiverse-Core v2.4-b527
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: [ScheduledAnnouncer2] Loading ScheduledAnnouncer2 v2.8.5 - For version 1.7.9
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: [ClearLag] Loading ClearLag v2.7.7
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: [Lockette] Loading Lockette v1.8.15
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: [PunishmentPoints] Loading PunishmentPoints v1.0
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: [MultiMOTD] Loading MultiMOTD v1.2.2
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: [PlayerParticles] Loading PlayerParticles v2.6
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: [Buycraft] Loading Buycraft v6.7
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: [WorldEdit] Loading WorldEdit v6.0;3342-78f975b9
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: [NoCheatPlus] Detected Minecraft version: 1.8.3
    22.05 14:44:00 [Server] INFO [14:44:00 INFO]: [NoCheatPlus] Logging system initialized.
    22.05 14:43:59 [Server] INFO [14:43:59 INFO]: [NoCheatPlus] onLoad: Early set up of static API, configuration, logging.
    22.05 14:43:59 [Server] INFO [14:43:59 INFO]: [NoCheatPlus] Loading NoCheatPlus v3.12.1-SNAPSHOT-sMD5NET-b815
    22.05 14:43:59 [Server] INFO [14:43:59 INFO]: [MipaYrarbil] Loading MipaYrarbil v1.2
    22.05 14:43:59 [Server] INFO [14:43:59 INFO]: [GroupManager] Loading GroupManager v2.1.31 (Phoenix)
    22.05 14:43:59 [Server] INFO [14:43:59 INFO]: Set PluginClassLoader as parallel capable
    22.05 14:43:59 [Server] INFO [14:43:59 INFO]: Using default channel type
    22.05 14:43:59 [Server] INFO [14:43:59 INFO]: Starting Minecraft server on 198.143.150.53:25565
    22.05 14:43:58 [Server] INFO [14:43:58 INFO]: Generating keypair
    22.05 14:43:58 [Server] INFO [14:43:58 INFO]: Debug logging is disabled
    22.05 14:43:58 [Server] INFO [14:43:58 INFO]: Server Ping Player Sample Count: 12
    22.05 14:43:58 [Server] INFO [14:43:58 INFO]: Using 4 threads for Netty based IO
    22.05 14:43:58 [Server] INFO [14:43:58 INFO]: This server is running CraftBukkit version git-Spigot-870264a-0a645a2 (MC: 1.8.3) (Implementing API version 1.8.3-R0.1-SNAPSHOT)
    22.05 14:43:58 [Server] INFO [14:43:58 INFO]: Default game type: SURVIVAL
    22.05 14:43:58 [Server] INFO [14:43:58 INFO]: Loading properties
    22.05 14:43:58 [Server] INFO [14:43:58 INFO]: Starting minecraft server version 1.8.3
    22.05 14:43:52 [Server] INFO Loading libraries, please wait...
    22.05 14:43:52 [Server] INFO Please see http://www.spigotmc.org/wiki/changing-permgen-size/ for more details and more in-depth instructions.
    22.05 14:43:52 [Server] INFO Warning, your max perm gen size is not set or less than 128mb. It is recommended you restart Java with the following argument: -XX:MaxPermSize=128M
    22.05 14:43:52 [Multicraft] Loaded config for "Default"
    22.05 14:43:51 [Multicraft] Starting server!
    22.05 14:43:51 [Multicraft] Loading server properties
    22.05 14:43:51 [Multicraft] Received start command
     
    Last edited: May 22, 2015
  11. Offline

    timtower Administrator Administrator Moderator

    Moved to Bukkit alternatives
     
  12. Offline

    meguy26

    @Blue222222
    1. Yes please, do try on a private server
    2. Yes, you could manually add the config, but if it is not generating it may not be able to read, although I would expect it to
    3. Java 8 is good, and I actually tested on spigot 1.8, so that is fine
    4. The full log you posted is upside down, I'm just curios as to why?
    5. Link to default config files, just extract them into the directory: https://www.dropbox.com/s/ftappajdl3bbah1/DefaultFiles.zip?dl=1
    6. I am going to post this thread in plugin development and try and get some help, honestly I have never directly worked with remote servers or hosting companies, so I am not exactly sure what could be the problem
     
  13. Offline

    Blue222222

    @meguy26
    I did a bit of looking around and found the issue. For some reason, the config files etc generated in the plugins folder and not in the PunishmentPoints folder.
    http://imgur.com/GfbygxC
    The files were all named PunishmentPoints/config etc.
    Also, my FTP client is refusing to give me access to these files, I'm not sure why.
     
  14. Offline

    Scorpionvssub

    cant you use filezilla or something to replace it by hand? might help
     
  15. Offline

    Blue222222

    @Scorpionvssub
    Unfortunately not. Due to the strange file name, filezilla keeps returning a no access error.
     
  16. Offline

    Scorpionvssub

    ahhh yea i never had that but okay sorry cant help then :p
     
  17. Offline

    meguy26

    @Blue222222
    I think I have an idea, what OS is the server running? Also, you should only need to open the .txt config file.
     
  18. Offline

    Blue222222

    @meguy26
    I have asked the hosts what OS the servers are hosted on, waiting for a reply.
    Also, when I try open the txt file, I get this error: http://imgur.com/2N2AOr3
     
  19. Offline

    meguy26

  20. Offline

    Blue222222

    @meguy26
    Files loading in the correct location, and are completely editable. Will notify you if I have any future issues.
    Thank you so much for making this plugin! :)
     
  21. Offline

    meguy26

    @Blue222222
    Your welcome! I'm gonna get it on bukkit dev now. :)
    I think at some point I will add commands to execute on decreasing points, but that could be covered by temp ban, so I'm not in a hurry. Do post any issues here!
     
Thread Status:
Not open for further replies.

Share This Page