[RPG/MECH] mcMMO v1.2.07 - RPG Addiction Redefined! Multi-Lingual! [1337][1549]

Discussion in 'Inactive/Unsupported Plugins' started by nossr50, Feb 5, 2011.

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

    nossr50

  2. Offline

    newyorkdaily

    Oh sorry is it really? Ill take it down then, i saw everyone saying it was build x.x.30

    There i took it down, sorry about that.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jul 18, 2016
  3. Offline

    RugRats

    Lol yea and I have no idea where people are getting that from(10.0.30) o.o
     
  4. Offline

    erdrickk

    Try Reading your bukkit logs when your server starts up

    2011-07-04 10:20:10 [INFO] [mcMMO] Permissions enabled.
    2011-07-04 10:20:10 [INFO] mcMMO version 1.0.30 is enabled!

    Its Magical !!! what a log can tell you! *Mystified!*
     
  5. Offline

    RugRats

    Lol smart A**? Mine says 10.0.29. I guess nossr50 updated and forgot to put up a changelog
     
  6. Offline

    Milchshakee

    But if i download it now i also get 10.0.29 .... Can somebody give me a 10.0.30 link ? :D
     
  7. Offline

    Ratchet

    if 30 has been removed then it was probably for a good reason
     
  8. Offline

    Milchshakee

    yes, because there are more bugs than in 1.0.25 :'(
    And i can't find any 1.0.25 download
     
  9. Offline

    Darcion

    maybe...

    i got a error on 1.0.30

    Code:
    2011-07-04 21:31:49 [SEVERE] Could not pass event ENTITY_DAMAGE to mcMMO
    java.lang.ClassCastException: org.bukkitcontrib.player.ContribCraftPlayer cannot be cast to org.bukkit.entity.Animals
        at com.gmail.nossr50.skills.Swords.applySerratedStrikes(Swords.java:141)
        at com.gmail.nossr50.Combat.combatChecks(Combat.java:105)
        at com.gmail.nossr50.mcEntityListener.onEntityDamage(mcEntityListener.java:140)
        at org.bukkit.plugin.java.JavaPluginLoader$55.execute(JavaPluginLoader.java:628)
        at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:58)
        at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:321)
        at net.minecraft.server.EntityHuman.d(EntityHuman.java:550)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:856)
        at net.minecraft.server.Packet7UseEntity.a(SourceFile:33)
        at net.minecraft.server.NetworkManager.b(NetworkManager.java:226)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:84)
        at net.minecraft.server.NetworkListenThread.a(SourceFile:105)
        at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:451)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:361)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
     
  10. Offline

    Milchshakee

    But i think why 1.0.30 was removed
    Code:
    java.lang.ClassCastException: org.bukkitcontrib.player.ContribCraftPlayer cannot be cast to org.bukkit.entity.Animals
    I think BukkitContrib was added to mcmmo.
     
  11. Offline

    dakzerox

    when i use mysql , i got a error

    Code:
    [SEVERE] Error occurred while enabling mcMMO v1.0.30 (Is it up to date?): URLDecoder: Incomplete trailing escape (%) pattern
    java.lang.IllegalArgumentException: URLDecoder: Incomplete trailing escape (%) pattern
            at java.net.URLDecoder.decode(URLDecoder.java:187)
            at com.mysql.jdbc.NonRegisteringDriver.parseURL(NonRegisteringDriver.java:633)
            at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:296)
            at java.sql.DriverManager.getConnection(DriverManager.java:620)
            at java.sql.DriverManager.getConnection(DriverManager.java:222)
            at com.gmail.nossr50.Database.<init>(Database.java:35)
            at com.gmail.nossr50.mcMMO.onEnable(mcMMO.java:89)
            at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:126)
            at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:857)
            at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:264)
            at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:151)
            at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:136)
            at net.minecraft.server.MinecraftServer.e(MinecraftServer.java:284)
            at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:271)
            at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:148)
            at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:335)
            at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    
     
  12. Offline

    Milchshakee

    Yes since 1.0.29 i have to use flatfile too :'(

    There are so many bugs in the latest versions .... please give a download link for 1.0.25

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jul 18, 2016
  13. Offline

    o0AzzA0o

    1.0.27 ----- is operating fine without issue for me on 953 also no performance issue with it
    1.0.25 ---- has power lvl bug dont use
    1.0.26 ---- has sword/excavation mixup in showing stats dont use
     
  14. I dared to fix the bug with the ClassCastException.
    Here's the updated file (mcMMO version 1.0.29).

    <Edit by Moderator: Redacted mediafire url>

    Changed code:
    In: Swords.java
    From
    Code:
    //Damage nearby LivingEntities
    if(derp instanceof LivingEntity && targets >= 1)
    {
        if(!pluginx.misc.bleedTracker.contains(derp))
            pluginx.misc.addToBleedQue((LivingEntity)derp);
        Animals target = (Animals)derp;
        target.damage(event.getDamage() / 4);
        targets--;
    }
    To
    Code:
    //Damage nearby LivingEntities
    if(derp instanceof LivingEntity && targets >= 1 && !(derp instanceof Player))
    {
        if(!pluginx.misc.bleedTracker.contains(derp))
            pluginx.misc.addToBleedQue((LivingEntity)derp);
        LivingEntity target = (LivingEntity) derp;
        target.damage(event.getDamage() / 4);
        targets--;
    }
     
    Last edited by a moderator: Dec 15, 2016
  15. Offline

    thedjshow

    I was updating the McMMO, first i delete the Mcmmo.jar and then i was backup all the files then i run it and all stats where gone, i tryed to backup the stats but they where all 0 again. can you help me with this? i mean i still have the old files. thanks.
     
  16. Offline

    Reade

    Hello, I appear to be having a slight problem with the excavation skill. Despite the fact that I have the various 'prizes' for excavating disabled, (Glowstone dust, cocoa beans, etc.) they are still dropping. It's extremely annoying, as this dropping of high tier items from low tier materials is not the kind of playstyle I want for my server. This is my current config file, which has all but apples, eggs, and bones dropping disabled, although I've so far had mushrooms and cocoa beans drop as well despite them being disabled, can anyone tell me what I am doing wrong, or if this is a common problem?

    Code:
    MySQL:
        Enabled: false
        Server:
            Address: localhost
            Port: 3306
        Database:
            Name: DataBaseName
            User:
                Name: UserName
                Password: UserPassword
            TablePrefix: mcmmo_
    General:
        Locale: en_us
        MOTD:
            Enabled: true
        MySpawn:
            Enabled: true
        HP_Regeneration:
            Enabled: true
    Items:
        Chimaera_Wing:
            Feather_Cost: 10
    XP:
        PVP:
            Rewards: true
        Gains:
            Multiplier:
                PVP: 1
                Global: 1
        Formula:
            Multiplier:
                Global: 1
                Taming: 2
                Mining: 2
                Repair: 2
                Woodcutting: 2
                Unarmed: 2
                Herbalism: 2
                Excavation: 2
                Swords: 2
                Archery: 2
                Axes: 2
                Sorcery: 2
                Acrobatics: 2
        Mining:
            Gold: 35
            Diamond: 75
            Iron: 25
            Redstone: 15
            Lapus: 40
            Obsidian: 15
            Netherrack: 3
            Glowstone: 3
            Coal: 10
            Stone: 3
        Herbalism:
            Sugar_Cane: 3
            Cactus: 3
            Pumpkin: 55
            Flowers: 10
            Wheat: 5
            Mushrooms: 15
        Woodcutting:
            Pine: 9
            Birch: 7
            Spruce: 8
        Excavation:
            Base: 4
            Mushroom: 0
            Sulphur: 0
            Slowsand: 0
            Glowstone: 0
            Music: 0
            Bones: 0
            Diamond: 0
            Apple: 0
            Eggs: 0
            Cake: 0
    Sorcery:
        Spells:
            Water:
                Thunder: 75
            Curative:
                Cure_Self:
                    Mana_Cost: 5
                Cure_Other:
                    Mana_Cost: 5
    Excavation:
        Drops:
            Cocoa_Beans: false
            Mushrooms: false
            Glowstone: false
            Eggs: true
            Apples: true
            Cake: false
            Music: false
            Diamond: false
            Slowsand: false
            Sulphur: false
            Netherrack: false
            Bones: true
    Commands:
        mctop:
            Name: mctop
            Enabled: true
        addxp:
            Name: addxp
            Enabled: true
        mcability:
            Name: mcability
            Enabled: true
        mcrefresh:
            Name: mcrefresh
            Enabled: true
        mcmmo:
            Name: mcmmo
            Enabled: true
        mcc:
            Name: mcc
            Enabled: true
        mcgod:
            Name: mcgod
            Enabled: true
        stats:
            Name: stats
            Enabled: true
        mmoedit:
            Name: mmoedit
            Enabled: true
        ptp:
            Name: ptp
            Enabled: true
        party:
            Name: party
            Enabled: true
        myspawn:
            Name: myspawn
            Enabled: true
        whois:
            Name: whois
            Enabled: true
        invite:
            Name: invite
            Enabled: true
        accept:
            Name: accept
            Enabled: true
        clearmyspawn:
            Name: clearmyspawn
            Enabled: true
    Abilities:
        Tools:
            Durability_Loss_Enabled: true
            Durability_Loss: 2
        Cooldowns:
            Green_Terra: 200
            Super_Breaker: 300
            Giga_Drill_Breaker: 300
            Tree_Feller: 240
            Berserk: 200
            Serrated_Strikes: 180
            Skull_Splitter: 200
    Skills:
        Repair:
            Anvil_Messages: true
            Gold:
                ID: 266
                Name: Gold Bars
            Stone:
                ID: 4
                Name: Cobblestone
            Wood:
                ID: 5
                Name: Wood Planks
            Diamond:
                ID: 264
                Name: Diamond Ore
                Level_Required: 50
            Iron:
                ID: 265
                Name: Iron Bars
        Herbalism:
            Green_Thumb:
                Cobble_To_Mossy: true
        Archery:
            Fire_Rate_Limiter: true
        Mining:
            Requires_Pickaxe: true
        Woodcutting:
            Requires_Axe: true
     
  17. Offline

    Ratchet

    thanks, I tried this but 3 minutes after restarting the server it froze with this error;

    Code:
    2011-07-04 17:39:19 [SEVERE] java.net.SocketException: Connection reset by peer: socket write error
    2011-07-04 17:39:19 [INFO] Read timed out
    2011-07-04 17:39:19 [SEVERE]     at java.net.SocketOutputStream.socketWrite0(Native Method)
    2011-07-04 17:39:19 [SEVERE]     at java.net.SocketOutputStream.socketWrite(Unknown Source)
    2011-07-04 17:39:19 [SEVERE]     at java.net.SocketOutputStream.write(Unknown Source)
    2011-07-04 17:39:19 [SEVERE]     at java.io.BufferedOutputStream.flushBuffer(Unknown Source)
    2011-07-04 17:39:19 [SEVERE]     at java.io.BufferedOutputStream.flush(Unknown Source)
    2011-07-04 17:39:19 [SEVERE]     at java.io.DataOutputStream.flush(Unknown Source)
    2011-07-04 17:39:19 [SEVERE]     at net.minecraft.server.NetworkWriterThread.run(SourceFile:116)
    2011-07-04 17:39:19 [SEVERE] java.net.SocketException: Connection reset by peer: socket write error
    2011-07-04 17:39:19 [SEVERE]     at java.net.SocketOutputStream.socketWrite0(Native Method)
    2011-07-04 17:39:19 [SEVERE]     at java.net.SocketOutputStream.socketWrite(Unknown Source)
    2011-07-04 17:39:19 [SEVERE]     at java.net.SocketOutputStream.write(Unknown Source)
    2011-07-04 17:39:19 [SEVERE]     at java.io.BufferedOutputStream.flushBuffer(Unknown Source)
    2011-07-04 17:39:19 [SEVERE]     at java.io.BufferedOutputStream.flush(Unknown Source)
    2011-07-04 17:39:19 [SEVERE]     at java.io.DataOutputStream.flush(Unknown Source)
    2011-07-04 17:39:19 [SEVERE]     at net.minecraft.server.NetworkWriterThread.run(SourceFile:116)
     
    Last edited by a moderator: Dec 15, 2016
  18. Offline

    mooman219

    You error has NOTHING to do with the plugin MCMMO

    So his fix worked prolly
     
  19. Offline

    Ratchet

    I know it has nothing to do with mcMMO in it, but it could still cause it could it not? it happened right after updating that and nothing else..
     
  20. Offline

    mooman219

    it honestly shouldn't you fix has nothing to do the network
     
  21. Offline

    KrazyBonez

    None of my mcmmo commands are working since the update. /mctop /stats /whois, none of them. Any ideas why?
     
  22. Offline

    nossr50

    Version 1.0.31
    • Fixed bug of trying to cast Animals to non-animals

    Version 1.0.30
    • Mobs that spawn from spawners no longer give XP (for reals this time)
     
  23. Offline

    Teldelariel

    so .31 has stopped the timeout error? its the only plugin I have that causes this, I run alot of plugins but I have eliminated every one of them except this one. ?
     
  24. Offline

    embty

    Nossr this is an urgent one: players reported that they are getting exp for 3 skills from mining or jumping or any other skill. Like if your mining u get exp for swords, mining and herbs.
     
  25. Offline

    ray0911

    Looks like the sword skill S strike hurts the player that uses it! Oh No.
    ALSO my server just crashed with a "read time out" as soon as I added this plugin back.
     
  26. Offline

    Magesblood

    If you run the latest version could you tell me if you are receiving any timeout errors?
     
  27. Offline

    Teldelariel

    I havent had anytime out errors so far and its been running with .31 for 2 hrs approx now
     
  28. Offline

    monir

    what is the best Multiplier settings if i want the players to reach 1000 in 6 months?
     
  29. Offline

    Teldelariel

    okay update, no timeout yet
    But serrated strike damages [player] instead of mob? can you check this out

    Cheers
    ~Tel~
     
  30. Offline

    Jobsti

    Hey nice plugin @nossr50

    Whats about new skills for: Killing Monsters and Killing Animals?
     
  31. Offline

    nossr50

    Whoops, I'll look into it.

    The combat skills are pretty much serving this purpose
     
Thread Status:
Not open for further replies.

Share This Page